Переводы

This commit is contained in:
2025-07-03 12:35:50 +03:00
parent 2d523ef431
commit 91046ea00e
15 changed files with 209 additions and 1451 deletions

View File

@@ -67,11 +67,11 @@ void MainWindow::errorCheck()
{
QMessageBox msgBox;
msgBox.setWindowTitle("Ошибка");
msgBox.setWindowTitle("Ошибка!");
msgBox.setIcon(QMessageBox::Critical);
msgBox.setText(tr("Не найдены файлы клиента"));
msgBox.setInformativeText(tr("* проверьте Application на наличие папки с билдом \n"
"* проверьте SharedData на наличие папки с базовой версией и именем base"));
msgBox.setText(tr("No Client files found!"));
msgBox.setInformativeText(tr("* check Application for the presence of a folder with a build \n"
"* check SharedData for a folder with the base version and the name base"));
msgBox.setStandardButtons(QMessageBox::Close);
msgBox.show();
int ret = msgBox.exec();