1
0
Fork 0
forked from len0rd/rockbox

Fix source string spelling.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26925 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2010-06-18 14:59:23 +00:00
parent 7e99ef8027
commit 6e5330f663

View file

@ -67,7 +67,8 @@ void BootloaderInstallMpio::installStage2(void)
QString bootfile = m_tempfile.fileName();
m_tempfile.close();
int ret = mkmpioboot(m_offile.toLocal8Bit().data(), bootfile.toLocal8Bit().data(), m_blfile.toLocal8Bit().data(), origin);
int ret = mkmpioboot(m_offile.toLocal8Bit().data(),
bootfile.toLocal8Bit().data(), m_blfile.toLocal8Bit().data(), origin);
if(ret != 0)
{
@ -81,7 +82,7 @@ void BootloaderInstallMpio::installStage2(void)
error = tr("Could not read the original firmware.");
break;
case -3:
error = tr("Loaded firmware file does not look like MPIO OF file.");
error = tr("Loaded firmware file does not look like MPIO original firmware file.");
break;
case -4:
error = tr("Could not open downloaded bootloader.");
@ -113,7 +114,7 @@ void BootloaderInstallMpio::installStage2(void)
}
//end of install
qDebug() << "[BootloaderInstallMpio] install successfull";
qDebug() << "[BootloaderInstallMpio] install successful";
emit logItem(tr("Success: modified firmware file created"), LOGINFO);
logInstall(LogAdd);
emit done(false);