allow translation, thanks to Tero
authorFelix Domke <tmbinc@elitedvb.net>
Mon, 20 Oct 2008 20:47:19 +0000 (20:47 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Mon, 20 Oct 2008 20:47:19 +0000 (20:47 +0000)
lib/python/Screens/PluginBrowser.py

index 6d0439edf54e1b052dcd42fb207104972e54c573..3ffdbaf951ed85e63af98f3ba0d6d95a049a729b 100644 (file)
@@ -114,9 +114,9 @@ class PluginDownloadBrowser(Screen):
                        self.updateList()
                else:
                        if self.type == self.DOWNLOAD:
                        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:
                        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:
 
        def runInstall(self, val):
                if val: