aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@qt.io>2023-10-19 10:37:27 +0200
committerEike Ziller <eike.ziller@qt.io>2023-10-19 13:00:23 +0000
commit24ed69b2ec09b5d1cd82ab51231485f052841bd2 (patch)
tree1e47442e849581f25230442afa9b8880aad09176
parent6ae4d71a1b1e4095d7736cb3186609a16868b883 (diff)
LanguageClient: Simplify group box title and fix "JSON"
It already under a title "Language Server", no need to repeat Change-Id: Ib0da722dfdaede194e48fa5f0ff3948ec0f16842 Reviewed-by: Leena Miettinen <riitta-leena.miettinen@qt.io>
-rw-r--r--src/plugins/languageclient/languageclientsettings.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plugins/languageclient/languageclientsettings.cpp b/src/plugins/languageclient/languageclientsettings.cpp
index 95d5b1a2e1..7b6c4a41bf 100644
--- a/src/plugins/languageclient/languageclientsettings.cpp
+++ b/src/plugins/languageclient/languageclientsettings.cpp
@@ -1117,10 +1117,10 @@ ProjectSettingsWidget::ProjectSettingsWidget(ProjectExplorer::Project *project)
auto layout = new QVBoxLayout;
setLayout(layout);
- auto group = new QGroupBox(Tr::tr("Language Server Workspace Configuration"));
+ auto group = new QGroupBox(Tr::tr("Workspace Configuration"));
group->setLayout(new QVBoxLayout);
group->layout()->addWidget(new QLabel(Tr::tr(
- "Additional json configuration sent to all running language servers for this project.\n"
+ "Additional JSON configuration sent to all running language servers for this project.\n"
"See the documentation of the specific language server for valid settings.")));
group->layout()->addWidget(editor->widget());
layout->addWidget(group);