Improve language in error message windows

This commit is contained in:
Guy Scharf 2020-06-03 10:02:20 -07:00
parent db952c9738
commit 5c88770bfe
2 changed files with 3 additions and 3 deletions

View File

@ -108,7 +108,7 @@ void init()
// Note: Old channel names stored in channels.xml are not translatable.. they need to be moved to be defined AFTER here instead // Note: Old channel names stored in channels.xml are not translatable.. they need to be moved to be defined AFTER here instead
if (!schema::channel.Load(":/docs/channels.xml")) { if (!schema::channel.Load(":/docs/channels.xml")) {
QMessageBox::critical(0, STR_MessageBox_Error, QMessageBox::critical(0, STR_MessageBox_Error,
QObject::tr("Couldn't parse Channels.xml, this build is seriously borked, no choice but to abort!!"), QObject::tr("Couldn't parse Channels.xml, OSCAR cannot continue and is termating."),
QMessageBox::Ok); QMessageBox::Ok);
QApplication::exit(-1); QApplication::exit(-1);
} }

View File

@ -1827,7 +1827,7 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline)
if (QProcess::startDetached("/usr/bin/open", args)) { if (QProcess::startDetached("/usr/bin/open", args)) {
QApplication::instance()->exit(); QApplication::instance()->exit();
} else { } else {
QMessageBox::warning(nullptr, tr("Gah!"), QMessageBox::warning(nullptr, STR_MessageBox_Error,
tr("If you can read this, the restart command didn't work. You will have to do it yourself manually."), QMessageBox::Ok); tr("If you can read this, the restart command didn't work. You will have to do it yourself manually."), QMessageBox::Ok);
} }
@ -1854,7 +1854,7 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline)
// ::exit(0); // ::exit(0);
} else { } else {
QMessageBox::warning(nullptr, tr("Gah!"), QMessageBox::warning(nullptr, STR_MessageBox_Error,
tr("If you can read this, the restart command didn't work. You will have to do it yourself manually."), QMessageBox::Ok); tr("If you can read this, the restart command didn't work. You will have to do it yourself manually."), QMessageBox::Ok);
} }