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

languages.hpp « platform - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 510f94d2e57e90dab948a5a338930ddc6aa71975 (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
51
52
#pragma once

#include <array>
#include <string>
#include <utility>

// The list of languages which can be used by TTS.
// It shall be included in Android (jni) and iOS parts to get the languages list.

namespace routing
{
namespace turns
{
namespace sound
{
std::array<std::pair<std::string, std::string>, 31> const kLanguageList =
{{
  {"en", "English"},
  {"ru", "Русский"},
  {"cs", "Čeština"},
  {"da", "Dansk"},
  {"de", "Deutsch"},
  {"es", "Español"},
  {"fr", "Français"},
  {"hr", "Hrvatski"},
  {"id", "Indonesia"},
  {"it", "Italiano"},
  {"sw", "Kiswahili"},
  {"hu", "Magyar"},
  {"nl", "Nederlands"},
  {"pl", "Polski"},
  {"pt", "Português"},
  {"ro", "Română"},
  {"sk", "Slovenčina"},
  {"fi", "Suomi"},
  {"sv", "Svenska"},
  {"vi", "Tiếng Việt"},
  {"tr", "Türkçe"},
  {"el", "Ελληνικά"},
  {"uk", "Українська"},
  {"ar", "العربية"},
  {"fa", "فارسی"},
  {"hi", "हिंदी"},
  {"ja", "日本語"},
  {"ko", "한국어"},
  {"th", "ภาษาไทย"},
  {"zh-Hant", "中文繁體"},
  {"zh-Hans", "中文简体"},
}};
}  // namespace sound
}  // namespace turns
}  // namespace routing