summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.c10
-rw-r--r--i18n.c60
-rw-r--r--setup_menu.c12
-rw-r--r--xineliboutput.c6
4 files changed, 53 insertions, 35 deletions
diff --git a/config.c b/config.c
index 05dfe114..1182a8cd 100644
--- a/config.c
+++ b/config.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: config.c,v 1.45 2007-09-12 13:49:38 phintuka Exp $
+ * $Id: config.c,v 1.46 2007-09-17 17:56:26 phelin Exp $
*
*/
@@ -178,10 +178,10 @@ const char *config_t::s_audioVisualizationNames[ AUDIO_VIS_count+1 ] = {
/* xine, audio_alsa_out.c */
const char *config_t::s_speakerArrangements[ SPEAKERS_count+1 ] = {
- "Mono 1.0", "Stereo 2.0", "Headphones 2.0", "Stereo 2.1",
- "Surround 3.0", "Surround 4.0", "Surround 4.1",
- "Surround 5.0", "Surround 5.1", "Surround 6.0",
- "Surround 6.1", "Surround 7.1", "Pass Through",
+ trNOOP("Mono 1.0"), trNOOP("Stereo 2.0"), trNOOP("Headphones 2.0"), trNOOP("Stereo 2.1"),
+ trNOOP("Surround 3.0"), trNOOP("Surround 4.0"), trNOOP("Surround 4.1"),
+ trNOOP("Surround 5.0"), trNOOP("Surround 5.1"), trNOOP("Surround 6.0"),
+ trNOOP("Surround 6.1"), trNOOP("Surround 7.1"), trNOOP("Pass Through"),
NULL
};
diff --git a/i18n.c b/i18n.c
index 88de980a..280e0f96 100644
--- a/i18n.c
+++ b/i18n.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: i18n.c,v 1.25 2007-09-01 12:38:14 phintuka Exp $
+ * $Id: i18n.c,v 1.26 2007-09-17 17:56:26 phelin Exp $
*
* Translations provided by:
*
@@ -2573,25 +2573,6 @@ const tI18nPhrase Phrases[] = {
"", // Russian
"", // Croatian
},
- { "Now playing", // English
- "Zurzeit wiedergegeben", // Deutsch
- "", // Slovenski
- "", // Italiano
- "", // Nederlands
- "", // Portugu<EA>s
- "", // Fran<E7>ais
- "", // Norsk
- "Nyt toistetaan", // Suomi
- "", // Polski
- "", // Espa<F1>ol
- "", // Ellinika
- "", // Svenska
- "", // Romaneste
- "", // Magyar
- "", // Catala
- "", // Russian
- "", // Croatian
- },
{ "Random play", // English
"Zufallswiedergabe", // Deutsch
"", // Slovenski
@@ -3355,7 +3336,44 @@ const tI18nPhrase Phrases[] = {
"", // Russian
"", // Croatian
},
-
+ { "Headphones 2.0", // English
+ "", // Deutsch
+ "", // Slovenski
+ "", // Italiano
+ "", // Nederlands
+ "", // Portugu<EA>s
+ "", // Fran<E7>ais
+ "", // Norsk
+ "Kuulokkeet 2.0", // Suomi
+ "", // Polski
+ "", // Espa<F1>ol
+ "", // Ellinika
+ "", // Svenska
+ "", // Romaneste
+ "", // Magyar
+ "", // Catala
+ "", // Russian
+ "", // Croatian
+ },
+ { "Pass Through", // English
+ "", // Deutsch
+ "", // Slovenski
+ "", // Italiano
+ "", // Nederlands
+ "", // Portugu<EA>s
+ "", // Fran<E7>ais
+ "", // Norsk
+ "Läpivienti", // Suomi
+ "", // Polski
+ "", // Espa<F1>ol
+ "", // Ellinika
+ "", // Svenska
+ "", // Romaneste
+ "", // Magyar
+ "", // Catala
+ "", // Russian
+ "", // Croatian
+ },
{ NULL }
};
diff --git a/setup_menu.c b/setup_menu.c
index 7f77046a..a92e0a63 100644
--- a/setup_menu.c
+++ b/setup_menu.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: setup_menu.c,v 1.35 2007-09-01 08:47:04 phintuka Exp $
+ * $Id: setup_menu.c,v 1.36 2007-09-17 17:56:26 phelin Exp $
*
*/
@@ -865,17 +865,17 @@ void cMenuSetupOSD::Set(void)
tr("Off")));
Add(NewTitle(tr("Subtitles")));
- Add(new cMenuEditBoolItem(tr("Setup.EPG$Preferred languages"),
+ Add(new cMenuEditBoolItem(trVDR("Setup.EPG$Preferred languages"),
&newconfig.spu_autoshow));
if(newconfig.spu_autoshow) {
Add(ctrl_spulang0 =
- new cMenuEditStrItem(tr("Setup.EPG$Preferred language"),
+ new cMenuEditStrItem(trVDR("Setup.EPG$Preferred language"),
newconfig.spu_lang[0], 4, LangNameChars));
- Add(new cMenuEditStrItem(tr("Setup.EPG$Preferred language"),
+ Add(new cMenuEditStrItem(trVDR("Setup.EPG$Preferred language"),
newconfig.spu_lang[1], 4, LangNameChars));
- Add(new cMenuEditStrItem(tr("Setup.EPG$Preferred language"),
+ Add(new cMenuEditStrItem(trVDR("Setup.EPG$Preferred language"),
newconfig.spu_lang[2], 4, LangNameChars));
- Add(new cMenuEditStrItem(tr("Setup.EPG$Preferred language"),
+ Add(new cMenuEditStrItem(trVDR("Setup.EPG$Preferred language"),
newconfig.spu_lang[3], 4, LangNameChars));
}
diff --git a/xineliboutput.c b/xineliboutput.c
index ec9641ae..4f09f3ee 100644
--- a/xineliboutput.c
+++ b/xineliboutput.c
@@ -21,7 +21,7 @@
*
* xineliboutput.c: VDR Plugin interface
*
- * $Id: xineliboutput.c,v 1.22 2007-09-12 13:49:38 phintuka Exp $
+ * $Id: xineliboutput.c,v 1.23 2007-09-17 17:56:26 phelin Exp $
*
*/
@@ -44,8 +44,8 @@
//---------------------------------plugin-------------------------------------
static const char *VERSION = "1.0.0rc2";
-static const char *DESCRIPTION = "X11/xine-lib output plugin";
-static const char *MAINMENUENTRY = "Media Player";
+static const char *DESCRIPTION = trNOOP("X11/xine-lib output plugin");
+static const char *MAINMENUENTRY = trNOOP("Media Player");
cOsdObject *g_PendingMenuAction = NULL;