mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-11 22:22:33 -05:00
Fix typo.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14925 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f9664e7e87
commit
00db400819
1 changed files with 3 additions and 3 deletions
|
|
@ -557,20 +557,20 @@ void RbUtilQt::installBootloader()
|
||||||
if(blinstaller->uptodate())
|
if(blinstaller->uptodate())
|
||||||
{
|
{
|
||||||
int ret = QMessageBox::question(this, tr("Bootloader Installation"),
|
int ret = QMessageBox::question(this, tr("Bootloader Installation"),
|
||||||
tr("It seem your Bootloader is already uptodate.\n"
|
tr("It seem your Bootloader is already up to date.\n"
|
||||||
"Do really want to install it?"),
|
"Do really want to install it?"),
|
||||||
QMessageBox::Ok | QMessageBox::Ignore |QMessageBox::Cancel,
|
QMessageBox::Ok | QMessageBox::Ignore |QMessageBox::Cancel,
|
||||||
QMessageBox::Cancel);
|
QMessageBox::Cancel);
|
||||||
if(ret == QMessageBox::Cancel)
|
if(ret == QMessageBox::Cancel)
|
||||||
{
|
{
|
||||||
logger->addItem(tr("Bootloader installation Canceled!"),LOGERROR);
|
logger->addItem(tr("Bootloader installation canceled!"),LOGERROR);
|
||||||
logger->abort();
|
logger->abort();
|
||||||
m_error = true;
|
m_error = true;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
else if(ret == QMessageBox::Ignore)
|
else if(ret == QMessageBox::Ignore)
|
||||||
{
|
{
|
||||||
logger->addItem(tr("Bootloader installation Skipped!"),LOGERROR);
|
logger->addItem(tr("Bootloader installation skipped!"),LOGERROR);
|
||||||
logger->abort();
|
logger->abort();
|
||||||
m_installed = true;
|
m_installed = true;
|
||||||
return;
|
return;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue