From: Stefan Pluecken Date: Thu, 28 Jan 2010 23:49:43 +0000 (+0100) Subject: don't use string concatenation within translation brackets X-Git-Tag: 3.0.0~28^2~66^2~79 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/1ff71d24c512a57686d8cdbef41bc0112ca9be72?ds=sidebyside don't use string concatenation within translation brackets --- diff --git a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py index d9ccab57..dcff3ca2 100755 --- a/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py +++ b/lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py @@ -252,7 +252,7 @@ class RestoreMenu(Screen): if (self.exe == False) and (self.entry == True): self.sel = self["filelist"].getCurrent() self.val = self.path + "/" + self.sel - self.session.openWithCallback(self.startRestore, MessageBox, _("Are you sure you want to restore\nfollowing backup:\n" + self.sel + "\nSystem will restart after the restore!")) + self.session.openWithCallback(self.startRestore, MessageBox, _("Are you sure you want to restore\nfollowing backup:\n") + self.sel + _("\nSystem will restart after the restore!")) def keyCancel(self): self.close()