1
0
Fork 0
forked from len0rd/rockbox

rbutil: Make strings translatable

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@25409 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Tomer Shalev 2010-03-31 20:11:12 +00:00
parent cff07c304d
commit f598a7baef
2 changed files with 2 additions and 2 deletions

View file

@ -222,7 +222,7 @@ void BootloaderInstallHex::installStage2(void)
bool BootloaderInstallHex::uninstall(void) bool BootloaderInstallHex::uninstall(void)
{ {
emit logItem("Uninstallation not possible, only installation info removed", LOGINFO); emit logItem(tr("Uninstallation not possible, only installation info removed"), LOGINFO);
logInstall(LogRemove); logInstall(LogRemove);
return false; return false;
} }

View file

@ -149,7 +149,7 @@ exit:
bool BootloaderInstallTcc::uninstall(void) bool BootloaderInstallTcc::uninstall(void)
{ {
emit logItem("To uninstall, perform a normal upgrade with an unmodified original firmware", LOGINFO); emit logItem(tr("To uninstall, perform a normal upgrade with an unmodified original firmware"), LOGINFO);
logInstall(LogRemove); logInstall(LogRemove);
return false; return false;
} }