diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2008-10-20 20:47:19 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2008-10-20 20:47:19 +0000 |
| commit | a6a3416db4ca8c181b4bca341a61ee31ac348732 (patch) | |
| tree | 90c5c816cbab8c466bfee7d9c204c70d5409e3ef /lib/python | |
| parent | f9bf8b09b24775acbc7dc19394b33d259b94e33e (diff) | |
| download | enigma2-a6a3416db4ca8c181b4bca341a61ee31ac348732.tar.gz enigma2-a6a3416db4ca8c181b4bca341a61ee31ac348732.zip | |
allow translation, thanks to Tero
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/PluginBrowser.py | 4 |
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: |
