Utils: Tr::tr

Change-Id: Ic03e20993f05fb5b49a12c891d86afb2c8e18e08
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
Reviewed-by: hjk <hjk@qt.io>
This commit is contained in:
Alessandro Portale
2023-01-24 16:49:41 +01:00
parent 17b28909a9
commit 4d6827dde9
65 changed files with 486 additions and 1964 deletions

View File

@@ -3,6 +3,8 @@
#include "settingsselector.h"
#include "utilstr.h"
#include <QComboBox>
#include <QHBoxLayout>
#include <QInputDialog>
@@ -27,9 +29,9 @@ SettingsSelector::SettingsSelector(QWidget *parent) :
m_configurationCombo->setSizeAdjustPolicy(QComboBox::AdjustToContents);
m_configurationCombo->setMinimumContentsLength(80);
m_addButton = new QPushButton(tr("Add"), this);
m_removeButton = new QPushButton(tr("Remove"), this);
m_renameButton = new QPushButton(tr("Rename"), this);
m_addButton = new QPushButton(Tr::tr("Add"), this);
m_removeButton = new QPushButton(Tr::tr("Remove"), this);
m_renameButton = new QPushButton(Tr::tr("Rename"), this);
m_label = new QLabel(this);
m_label->setMinimumWidth(200);
@@ -111,8 +113,8 @@ void SettingsSelector::removeButtonClicked()
int pos = currentIndex();
if (pos < 0)
return;
const QString title = tr("Remove");
const QString message = tr("Do you really want to delete the configuration <b>%1</b>?")
const QString title = Tr::tr("Remove");
const QString message = Tr::tr("Do you really want to delete the configuration <b>%1</b>?")
.arg(m_configurationCombo->currentText());
QMessageBox msgBox(QMessageBox::Question, title, message, QMessageBox::Yes|QMessageBox::No, this);
msgBox.setDefaultButton(QMessageBox::No);
@@ -135,9 +137,9 @@ void SettingsSelector::renameButtonClicked()
QString baseName = model->data(idx, Qt::EditRole).toString();
bool ok;
const QString message = tr("New name for configuration <b>%1</b>:").arg(baseName);
const QString message = Tr::tr("New name for configuration <b>%1</b>:").arg(baseName);
QString name = QInputDialog::getText(this, tr("Rename..."), message,
QString name = QInputDialog::getText(this, Tr::tr("Rename..."), message,
QLineEdit::Normal, baseName, &ok);
if (!ok)
return;