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>
This commit is contained in:
Eike Ziller
2023-10-19 10:37:27 +02:00
parent 6ae4d71a1b
commit 24ed69b2ec

View File

@@ -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);