From: Andreas Oberritter Date: Tue, 12 Apr 2011 12:48:47 +0000 (+0200) Subject: BackupRestore.py: Fix untranslatable string (Patch by Benny De Tandt) X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=commitdiff_plain;h=acd40cc383d3a485dbb1b1d9369dc4de93b949aa;hp=-c BackupRestore.py: Fix untranslatable string (Patch by Benny De Tandt) --- acd40cc383d3a485dbb1b1d9369dc4de93b949aa diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py index 01649bb..3db6e82 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):