From a6a3416db4ca8c181b4bca341a61ee31ac348732 Mon Sep 17 00:00:00 2001 From: Felix Domke Date: Mon, 20 Oct 2008 20:47:19 +0000 Subject: allow translation, thanks to Tero --- lib/python/Screens/PluginBrowser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/python') 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: -- cgit v1.2.3