forked from qt-creator/qt-creator
CppFileSettingsWidget: Add missing Tr::tr()
Change-Id: I1feea8db0597d48f7fb966c786103393d0d91487 Reviewed-by: Eike Ziller <eike.ziller@qt.io>
This commit is contained in:
@@ -294,7 +294,7 @@ ClangdSettingsWidget::ClangdSettingsWidget(const ClangdSettings::Data &settingsD
|
||||
d->autoIncludeHeadersCheckBox.setChecked(settings.autoIncludeHeaders());
|
||||
d->autoIncludeHeadersCheckBox.setToolTip(autoIncludeToolTip);
|
||||
d->threadLimitSpinBox.setValue(settings.workerThreadLimit());
|
||||
d->threadLimitSpinBox.setSpecialValueText("Automatic");
|
||||
d->threadLimitSpinBox.setSpecialValueText(Tr::tr("Automatic"));
|
||||
d->threadLimitSpinBox.setToolTip(workerThreadsToolTip);
|
||||
d->documentUpdateThreshold.setMinimum(50);
|
||||
d->documentUpdateThreshold.setMaximum(10000);
|
||||
|
@@ -300,7 +300,7 @@ CppFileSettingsWidget::CppFileSettingsWidget(CppFileSettings *settings)
|
||||
|
||||
Column {
|
||||
Group {
|
||||
title("Headers"),
|
||||
title(Tr::tr("Headers")),
|
||||
Form {
|
||||
Tr::tr("&Suffix:"), m_headerSuffixComboBox, st, br,
|
||||
Tr::tr("S&earch paths:"), m_headerSearchPathsEdit, br,
|
||||
@@ -309,7 +309,7 @@ CppFileSettingsWidget::CppFileSettingsWidget(CppFileSettings *settings)
|
||||
}
|
||||
},
|
||||
Group {
|
||||
title("Sources"),
|
||||
title(Tr::tr("Sources")),
|
||||
Form {
|
||||
Tr::tr("S&uffix:"), m_sourceSuffixComboBox, st, br,
|
||||
Tr::tr("Se&arch paths:"), m_sourceSearchPathsEdit, br,
|
||||
|
Reference in New Issue
Block a user