forked from organicmaps/organicmaps
Adding autogenereated languages.hpp for TTS supported languages.
This commit is contained in:
parent
704dcd0c9d
commit
d320676ef8
1 changed files with 49 additions and 0 deletions
49
sound/tts/languages.hpp
Normal file
49
sound/tts/languages.hpp
Normal file
|
@ -0,0 +1,49 @@
|
|||
#pragma once
|
||||
|
||||
#include "std/array.hpp"
|
||||
#include "std/string.hpp"
|
||||
|
||||
// This file is autogenerated while exporting sounds.csv from the google table.
|
||||
// It contains the list of languages which can be used by TTS.
|
||||
// It shall be included to Android(jni) and iOS part to get the languages list.
|
||||
|
||||
namespace routing
|
||||
{
|
||||
namespace turns
|
||||
{
|
||||
namespace sound
|
||||
{
|
||||
array<string, 28> const kLanguageList =
|
||||
{{
|
||||
"en",
|
||||
"ru",
|
||||
"pl",
|
||||
"sv",
|
||||
"tr",
|
||||
"fr",
|
||||
"nl",
|
||||
"de",
|
||||
"ar",
|
||||
"el",
|
||||
"it",
|
||||
"cs",
|
||||
"hu",
|
||||
"ro",
|
||||
"ja",
|
||||
"da",
|
||||
"es",
|
||||
"fi",
|
||||
"hi",
|
||||
"hr",
|
||||
"in",
|
||||
"ko",
|
||||
"pt",
|
||||
"sk",
|
||||
"sw",
|
||||
"th",
|
||||
"zh-Hant",
|
||||
"zh-Hans"
|
||||
}};
|
||||
} // namespace sound
|
||||
} // namespace turns
|
||||
} // namespace routing
|
Loading…
Add table
Reference in a new issue