summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean-Michel Trivi <jmtrivi@google.com>2009-06-19 16:55:44 -0700
committerJean-Michel Trivi <jmtrivi@google.com>2009-06-19 16:55:44 -0700
commitf605ee98e5e03144c25a92af7e5d2a3ec33d375f (patch)
tree95cc9ada4e78b519e4a44b45060e1aac1a258f4a
parent54823983fdcb4ee88d9a6c4e680ff2064dd95929 (diff)
downloadexternal_svox-f605ee98e5e03144c25a92af7e5d2a3ec33d375f.zip
external_svox-f605ee98e5e03144c25a92af7e5d2a3ec33d375f.tar.gz
external_svox-f605ee98e5e03144c25a92af7e5d2a3ec33d375f.tar.bz2
Fix country code for Great-Britain in TTS pico lib.
-rw-r--r--tts/com_svox_picottsengine.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tts/com_svox_picottsengine.cpp b/tts/com_svox_picottsengine.cpp
index 2fec253..3e29695 100644
--- a/tts/com_svox_picottsengine.cpp
+++ b/tts/com_svox_picottsengine.cpp
@@ -60,7 +60,7 @@ const char* PICO_PHONEME_OPEN_TAG = "<phoneme ph=\"%s\">";
/* supported voices */
const char* picoSupportedLangIso3[] = { "eng", "eng", "deu", "spa", "fra", "ita" };
-const char* picoSupportedCountryIso3[] = { "USA", "GB", "DEU", "ESP", "FRA", "ITA" };
+const char* picoSupportedCountryIso3[] = { "USA", "GBR", "DEU", "ESP", "FRA", "ITA" };
const char* picoSupportedLang[] = { "en-rUS", "en-rGB", "de-rDE", "es-rES", "fr-rFR", "it-rIT" };
const char* picoInternalLang[] = { "en-US", "en-GB", "de-DE", "es-ES", "fr-FR", "it-IT" };
const char* picoInternalTaLingware[] = { "en-US_ta.bin", "en-GB_ta.bin", "de-DE_ta.bin", "es-ES_ta.bin", "fr-FR_ta.bin", "it-IT_ta.bin" };