diff options
| author | Andreas Oberritter <obi@opendreambox.org> | 2011-04-12 14:48:47 +0200 |
|---|---|---|
| committer | Andreas Oberritter <obi@opendreambox.org> | 2011-04-12 14:48:47 +0200 |
| commit | acd40cc383d3a485dbb1b1d9369dc4de93b949aa (patch) | |
| tree | d9b567166ef34a783e91536abfc030cfc13f1091 | |
| parent | 348cf0e4d7fa1e615635984c9325fc0e8fa4e72b (diff) | |
| download | enigma2-acd40cc383d3a485dbb1b1d9369dc4de93b949aa.tar.gz enigma2-acd40cc383d3a485dbb1b1d9369dc4de93b949aa.zip | |
BackupRestore.py: Fix untranslatable string (Patch by Benny De Tandt)
| -rwxr-xr-x | lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py | 2 |
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): |
