aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2008-10-20 20:47:19 +0000
committerFelix Domke <tmbinc@elitedvb.net>2008-10-20 20:47:19 +0000
commita6a3416db4ca8c181b4bca341a61ee31ac348732 (patch)
tree90c5c816cbab8c466bfee7d9c204c70d5409e3ef /lib/python
parentf9bf8b09b24775acbc7dc19394b33d259b94e33e (diff)
downloadenigma2-a6a3416db4ca8c181b4bca341a61ee31ac348732.tar.gz
enigma2-a6a3416db4ca8c181b4bca341a61ee31ac348732.zip
allow translation, thanks to Tero
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/PluginBrowser.py4
1 files changed, 2 insertions, 2 deletions
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: