Welcome to mirror list, hosted at ThFree Co, Russian Federation.

languages.hpp « tts « sound - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8f809fea30d7c039ae54c1fcb5cba6c302aacc7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#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<pair<string, string>, 28> const kLanguageList =
{{
  {"en", "English"},
  {"ru", "Русский"},
  {"es", "Español"},
  {"de", "Deutsch"},
  {"fr", "Français"},
  {"zh-Hant", "中文繁體"},
  {"zh-Hans", "中文简体"},
  {"pt", "Português"},
  {"th", "ภาษาไทย"},
  {"tr", "Türkçe"},
  {"ar", "العربية"},
  {"cs", "Čeština"},
  {"da", "Dansk"},
  {"el", "Ελληνικά"},
  {"fi", "Suomi"},
  {"hi", "हिंदी"},
  {"hr", "Hrvatski"},
  {"hu", "Magyar"},
  {"id", "Indonesia"},
  {"it", "Italiano"},
  {"ja", "日本語"},
  {"ko", "한국어"},
  {"nl", "Nederlands"},
  {"pl", "Polski"},
  {"ro", "Română"},
  {"sk", "Slovenčina"},
  {"sv", "Svenska"},
  {"sw", "Kiswahili"}
}};
}  // namespace sound
}  // namespace turns
}  // namespace routing