forked from qt-creator/qt-creator
Fix lupdate issues
Change-Id: I7256c8aff5eb77b264b76ba24e79c26ab2924e84 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu> Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
@@ -105,7 +105,7 @@ void PySideBuildStep::doRun()
|
||||
PySideBuildConfiguration::PySideBuildConfiguration(Target *target, Id id)
|
||||
: BuildConfiguration(target, id)
|
||||
{
|
||||
setConfigWidgetDisplayName(tr("General"));
|
||||
setConfigWidgetDisplayName(PySideBuildConfigurationFactory::tr("General"));
|
||||
|
||||
setInitializer([this](const BuildInfo &) {
|
||||
buildSteps()->appendStep(pySideBuildStep);
|
||||
|
||||
@@ -400,8 +400,8 @@ public:
|
||||
PyLSConfigureWidget()
|
||||
: m_editor(LanguageClient::jsonEditor())
|
||||
, m_advancedLabel(new QLabel)
|
||||
, m_pluginsGroup(new QGroupBox(tr("Plugins:")))
|
||||
, m_mainGroup(new QGroupBox(tr("Use Python Language Server")))
|
||||
, m_pluginsGroup(new QGroupBox(PythonSettings::tr("Plugins:")))
|
||||
, m_mainGroup(new QGroupBox(PythonSettings::tr("Use Python Language Server")))
|
||||
|
||||
{
|
||||
m_mainGroup->setCheckable(true);
|
||||
@@ -422,7 +422,7 @@ public:
|
||||
|
||||
mainGroupLayout->addWidget(m_pluginsGroup);
|
||||
|
||||
const QString labelText = tr(
|
||||
const QString labelText = PythonSettings::tr(
|
||||
"For a complete list of avilable options, consult the <a "
|
||||
"href=\"https://github.com/python-lsp/python-lsp-server/blob/develop/"
|
||||
"CONFIGURATION.md\">Python LSP Server configuration documentation</a>.");
|
||||
@@ -436,7 +436,7 @@ public:
|
||||
|
||||
mainGroupLayout->addStretch();
|
||||
|
||||
auto advanced = new QCheckBox(tr("Advanced"));
|
||||
auto advanced = new QCheckBox(PythonSettings::tr("Advanced"));
|
||||
advanced->setChecked(false);
|
||||
|
||||
connect(advanced,
|
||||
|
||||
Reference in New Issue
Block a user