From d487218a8254a5868fe991ec9f82d4301f20e681 Mon Sep 17 00:00:00 2001 From: Roman Moravcik Date: Thu, 27 May 2010 16:08:01 +0200 Subject: [PATCH] Fixed translation of language selector. --- src/tts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tts.cpp b/src/tts.cpp index 62c2840..f557119 100644 --- a/src/tts.cpp +++ b/src/tts.cpp @@ -202,7 +202,7 @@ Tts::GetVoicesList() for (int j = 0; voices[j].name != NULL; j++) { if (!strcmp(espeak_voices[i]->name, voices[j].name)) { - disp_name = g_strdup(voices[j].disp_name); + disp_name = g_strdup(_(voices[j].disp_name)); break; } } -- 1.7.9.5