Fix string for translation.

master3.3
Mike Hiretsky 14 years ago
parent 9ba6187dd3
commit cfcc06865d

Binary file not shown.

@ -1157,7 +1157,7 @@ class ScratchDistributive(Distributive):
path.exists(path.join(directory,"delta")) and \
path.exists(path.join(directory,"calculate"))):
raise DistributiveError(
"Wrong scratch distributive in '%s'"%directory)
_("Wrong scratch distributive in '%s'")%directory)
def _mountLayers(self,source,target):
"""Mount squashfs to directory"""

@ -854,12 +854,12 @@ class cl_install(color_print, SignalInterrupt):
subname = (" %s"%subname) if subname else ""
if self.clVars.Get('cl_image'):
self.printSUCCESS("Found update: %s%s %s\n"%
self.printSUCCESS(_("Found update")+": %s%s %s\n"%
(self.clVars.Get('os_install_linux_name'),
subname,
self.clVars.Get('os_install_linux_ver')))
else:
self.printWARNING("No update available.")
self.printWARNING(_("No update available."))
def wait(self,sec=10):
self.printSUCCESS(_("Press %s to cancel")%"Ctrl+C"+"... %d"%sec, printBR=False)
@ -1693,7 +1693,7 @@ class cl_install(color_print, SignalInterrupt):
if self.startMessage:
self.printByResult(False)
self.defaultPrint("\n")
self.printWARNING("Interrupting the configuration")
self.printWARNING(_("Interrupting the configuration"))
error = _("Configuration manually interrupt")
if self.startMessage:
self.printByResult(False)
@ -1862,7 +1862,7 @@ the system") + " (yes/no)"
except KeyboardInterrupt,e:
self.setSignalInterrupt()
self.printByResult(False)
self.printWARNING("Interrupting the installation")
self.printWARNING(_("Interrupting the installation"))
error = _("Installation manually interrupt")
if error:
self.printByResult(False)

Loading…
Cancel
Save