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: 44e89acbb0dc582b900c23ea6fe771027026766f (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
#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",
  "id",
  "ko",
  "pt",
  "sk",
  "sw",
  "th",
  "zh-Hant",
  "zh-Hans"
}};
}  // namespace sound
}  // namespace turns
}  // namespace routing