aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndreas Oberritter <obi@opendreambox.org>2011-04-12 14:48:47 +0200
committerAndreas Oberritter <obi@opendreambox.org>2011-04-12 14:48:47 +0200
commitacd40cc383d3a485dbb1b1d9369dc4de93b949aa (patch)
treed9b567166ef34a783e91536abfc030cfc13f1091 /lib
parent348cf0e4d7fa1e615635984c9325fc0e8fa4e72b (diff)
downloadenigma2-acd40cc383d3a485dbb1b1d9369dc4de93b949aa.tar.gz
enigma2-acd40cc383d3a485dbb1b1d9369dc4de93b949aa.zip
BackupRestore.py: Fix untranslatable string (Patch by Benny De Tandt)
Diffstat (limited to 'lib')
-rwxr-xr-xlib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py
index 01649bb3..3db6e82d 100755
--- a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py
+++ b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py
@@ -268,7 +268,7 @@ class RestoreMenu(Screen):
self.sel = self["filelist"].getCurrent()
if self.sel:
self.val = self.path + "/" + self.sel
- self.session.openWithCallback(self.startDelete, MessageBox, _("Are you sure you want to delete\nfollowing backup:\n" + self.sel ))
+ self.session.openWithCallback(self.startDelete, MessageBox, _("Are you sure you want to delete\nfollowing backup:\n") + self.sel)
def startDelete(self, ret = False):
if (ret == True):