ref: change to ENG

This commit is contained in:
semenov
2025-01-22 10:32:05 +03:00
parent baf5f535f9
commit 22b2fbddc3
5 changed files with 27 additions and 27 deletions

View File

@@ -11,6 +11,6 @@ void NotifyController::showWarning(QString text)
warning.setText(text);
warning.setIcon(QMessageBox::Warning);
warning.setWindowTitle(tr("Ошибка"));
warning.setWindowTitle(tr("Error"));
warning.exec();
}

View File

@@ -364,17 +364,17 @@ void RecognizeSystem::xmlParser(QByteArray array)
if (value == "BASEDELETETRY")
{
emit sigNotify(tr("Нельзя удалять базовую версию"));
emit sigNotify(tr("You cannot delete the basic version!"));
}
if (value == "TRYACTIVEDELETE")
{
emit sigNotify(tr("Нельзя удалять активную версию"));
emit sigNotify(tr("You cannot delete the active version"));
}
if (value == "DUPLICATEVERNAME")
{
emit sigNotify(tr("Такое имя уже существет"));
emit sigNotify(tr("This name already exists"));
}
}
}

View File

@@ -67,7 +67,7 @@
</sizepolicy>
</property>
<property name="text">
<string>Базовая версия:</string>
<string>Basic version:</string>
</property>
</widget>
</item>
@@ -118,7 +118,7 @@
</size>
</property>
<property name="text">
<string>Новое название:</string>
<string>New name version:</string>
</property>
</widget>
</item>
@@ -189,7 +189,7 @@
</sizepolicy>
</property>
<property name="text">
<string>Создать</string>
<string>Create</string>
</property>
</widget>
</item>
@@ -218,7 +218,7 @@
</sizepolicy>
</property>
<property name="text">
<string>Отмена</string>
<string>Cancel</string>
</property>
</widget>
</item>

View File

@@ -22,7 +22,7 @@ void VersionSelectWidget::initialize(SendSystem *sendSystem,VersionContainer *ve
connect(this,&VersionSelectWidget::sigSendNotify,notifyController,&NotifyController::showWarning,Qt::AutoConnection);
this->versionContainer = versionContainer;
hide();
setWindowTitle(tr("Управление версиями"));
setWindowTitle(tr("Version control"));
}
void VersionSelectWidget::fillView(QList<StreamingVersionData *> *serverData)
@@ -44,10 +44,10 @@ void VersionSelectWidget::on_verListView_itemDoubleClicked(QListWidgetItem *item
{
if(data->getViewName() == item->text())
{
QString info = "Имя версии: " + data->getViewName() + "\n";
info.append("Создан: " + data->getCreateData().toString() + "\n");
info.append("Изменяемый: " + changableText(data->getIsChangeable()) + "\n");
info.append("Автор: " + data->getAuthor());
QString info = tr("Version name: ") + data->getViewName() + "\n";
info.append(tr("Created: ") + data->getCreateData().toString() + "\n");
info.append(tr("Changeable: ") + changableText(data->getIsChangeable()) + "\n");
info.append(tr("Author: ") + data->getAuthor());
ui->infoValue->setText(info);
selectedVersion = data;
}
@@ -56,8 +56,8 @@ void VersionSelectWidget::on_verListView_itemDoubleClicked(QListWidgetItem *item
QString VersionSelectWidget::changableText(bool flag)
{
if(flag) return tr("Да");
else return tr("Нет");
if(flag) return tr("Yes");
else return tr("No");
}
@@ -74,7 +74,7 @@ void VersionSelectWidget::sendCopyEmit(QString newName)
if (selectedVersion == nullptr)
{
sigSendNotify(tr("Версия не выбрана"));
sigSendNotify(tr("Version not selected"));
return;
}
@@ -86,7 +86,7 @@ void VersionSelectWidget::on_DeleteVersionButton_clicked()
{
if (selectedVersion == nullptr)
{
sigSendNotify(tr("Версия не выбрана"));
sigSendNotify(tr("Version not selected"));
return;
}
@@ -97,7 +97,7 @@ void VersionSelectWidget::on_switchServerVersionButton_clicked()
{
if (selectedVersion == nullptr)
{
sigSendNotify(tr("Версия не выбрана"));
sigSendNotify(tr("Version not selected"));
return;
}

View File

@@ -48,15 +48,15 @@
<widget class="QLabel" name="verListTitle">
<property name="font">
<font>
<family>Calibri</family>
<pointsize>12</pointsize>
<family>MS Shell Dlg 2</family>
<pointsize>8</pointsize>
</font>
</property>
<property name="contextMenuPolicy">
<enum>Qt::PreventContextMenu</enum>
</property>
<property name="text">
<string>Доступные версии на сервере</string>
<string>Available versions on the server:</string>
</property>
</widget>
</item>
@@ -103,7 +103,7 @@
</font>
</property>
<property name="text">
<string>Создать копию</string>
<string>Create copy</string>
</property>
</widget>
</item>
@@ -127,7 +127,7 @@
</font>
</property>
<property name="text">
<string>Удалить</string>
<string>Delete</string>
</property>
</widget>
</item>
@@ -147,7 +147,7 @@
</font>
</property>
<property name="text">
<string>Переключить версию сервера</string>
<string>Change server version</string>
</property>
</widget>
</item>
@@ -175,7 +175,7 @@
</sizepolicy>
</property>
<property name="text">
<string>Информация:</string>
<string>Info:</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
@@ -185,7 +185,7 @@
<item>
<widget class="QLabel" name="infoValue">
<property name="text">
<string>Тут будет информация о версии...</string>
<string>Double click on the version to see information...</string>
</property>
<property name="alignment">
<set>Qt::AlignLeading|Qt::AlignLeft|Qt::AlignTop</set>
@@ -220,7 +220,7 @@
<item>
<widget class="QLabel" name="verTitle">
<property name="text">
<string>Текущая версия сервера:</string>
<string>Current server version:</string>
</property>
</widget>
</item>