From: Felix Domke Date: Mon, 20 Oct 2008 20:47:19 +0000 (+0000) Subject: allow translation, thanks to Tero X-Git-Tag: 2.6.0~735 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/a6a3416db4ca8c181b4bca341a61ee31ac348732 allow translation, thanks to Tero --- diff --git a/lib/python/Screens/PluginBrowser.py b/lib/python/Screens/PluginBrowser.py index 6d0439ed..3ffdbaf9 100644 --- a/lib/python/Screens/PluginBrowser.py +++ b/lib/python/Screens/PluginBrowser.py @@ -114,9 +114,9 @@ class PluginDownloadBrowser(Screen): self.updateList() else: if self.type == self.DOWNLOAD: - self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to download\nthe plugin \"" + sel[0].name + "\"?")) + self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to download\nthe plugin \"%s\"?") % sel[0].name) elif self.type == self.REMOVE: - self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to REMOVE\nthe plugin \"" + sel[0].name + "\"?")) + self.session.openWithCallback(self.runInstall, MessageBox, _("Do you really want to REMOVE\nthe plugin \"%s\"?") % sel[0].name) def runInstall(self, val): if val: