mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Improve language in error message windows
This commit is contained in:
parent
db952c9738
commit
5c88770bfe
@ -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
|
||||
if (!schema::channel.Load(":/docs/channels.xml")) {
|
||||
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);
|
||||
QApplication::exit(-1);
|
||||
}
|
||||
|
@ -1827,7 +1827,7 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline)
|
||||
if (QProcess::startDetached("/usr/bin/open", args)) {
|
||||
QApplication::instance()->exit();
|
||||
} 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);
|
||||
}
|
||||
|
||||
@ -1854,7 +1854,7 @@ void MainWindow::RestartApplication(bool force_login, QString cmdline)
|
||||
|
||||
// ::exit(0);
|
||||
} 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);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user