From: Felix Domke Date: Sun, 14 Jun 2009 22:51:49 +0000 (+0200) Subject: make msg translatable X-Git-Tag: 2.6.0~245 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/8b78162072c8c0af8da6fc53af8f4ebe65c410fd?hp=fac0559ae32f4acaa6e02f4d05e44979715b4903 make msg translatable --- diff --git a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py index 6b6d5045..7a2127ac 100644 --- a/lib/python/Plugins/SystemPlugins/Videomode/plugin.py +++ b/lib/python/Plugins/SystemPlugins/Videomode/plugin.py @@ -139,7 +139,7 @@ class VideoSetup(Screen, ConfigListScreen): if (port, mode, rate) != self.last_good: self.hw.setMode(port, mode, rate) from Screens.MessageBox import MessageBox - self.session.openWithCallback(self.confirm, MessageBox, "Is this videomode ok?", MessageBox.TYPE_YESNO, timeout = 20, default = False) + self.session.openWithCallback(self.confirm, MessageBox, _("Is this videomode ok?"), MessageBox.TYPE_YESNO, timeout = 20, default = False) else: self.keySave()