diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2010-01-29 00:49:43 +0100 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2010-01-29 00:52:53 +0100 |
| commit | 2f402fe5d00f8894e69033e1f6015a4483bb9de6 (patch) | |
| tree | 92dd2ffbedecf18470a8db2f6e4f98d411d5b245 /lib/python/Plugins | |
| parent | 5e24af16847c51868366b1ffc427ef3d480ed479 (diff) | |
| download | enigma2-2f402fe5d00f8894e69033e1f6015a4483bb9de6.tar.gz enigma2-2f402fe5d00f8894e69033e1f6015a4483bb9de6.zip | |
don't use string concatenation within translation brackets
Diffstat (limited to 'lib/python/Plugins')
| -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 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() |
