From 24ed69b2ec09b5d1cd82ab51231485f052841bd2 Mon Sep 17 00:00:00 2001 From: Eike Ziller Date: Thu, 19 Oct 2023 10:37:27 +0200 Subject: [PATCH] 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 --- src/plugins/languageclient/languageclientsettings.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/plugins/languageclient/languageclientsettings.cpp b/src/plugins/languageclient/languageclientsettings.cpp index 95d5b1a2e1b..7b6c4a41bfe 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);