[libraries/ktextaddons] textautogeneratetext: Fix text and tool plugin labels
Laurent Montel <[email protected]>
| Newsgroups | gmane.comp.kde.cvs |
|---|---|
| Message-ID | <[email protected]> |
Git commit a82f33ef92fb044ecf65f8aa55b0671e2abf9102 by Laurent Montel, on behalf of Iñigo Salvador Azurmendi.
Committed on 06/08/2026 at 17:39.
Pushed by mlaurent into branch 'master'.
Fix text and tool plugin labels
M +1 -1 textautogeneratetext/core/tools/textautogeneratetexttoolpluginmanager.cpp
M +1 -1 textautogeneratetext/widgets/configure/textautogeneratetextconfigurepluginswidget.cpp
M +1 -1 textautogeneratetext/widgets/plugintext/textautogenerateplugintextmanager.cpp
https://invent.kde.org/libraries/ktextaddons/-/commit/a82f33ef92fb044ecf65f8aa55b0671e2abf9102
diff --git a/textautogeneratetext/core/tools/textautogeneratetexttoolpluginmanager.cpp b/textautogeneratetext/core/tools/textautogeneratetexttoolpluginmanager.cpp
index cd42486ac..01bf1f04f 100644
--- a/textautogeneratetext/core/tools/textautogeneratetexttoolpluginmanager.cpp
+++ b/textautogeneratetext/core/tools/textautogeneratetexttoolpluginmanager.cpp
@@ -223,7 +223,7 @@ QString TextAutoGenerateTextToolPluginManager::convertIdentifierToDisplay(const
QString TextAutoGenerateTextToolPluginManager::generatePluginsInformation() const
{
- QString result = i18n("Plugins Text:");
+ QString result = i18n("Tool Plugins:");
const QString tab = u" "_s;
for (const auto &p : mPluginDataList) {
result += u'\n';
diff --git a/textautogeneratetext/widgets/configure/textautogeneratetextconfigurepluginswidget.cpp b/textautogeneratetext/widgets/configure/textautogeneratetextconfigurepluginswidget.cpp
index 4dd3c6230..93a3fec52 100644
--- a/textautogeneratetext/widgets/configure/textautogeneratetextconfigurepluginswidget.cpp
+++ b/textautogeneratetext/widgets/configure/textautogeneratetextconfigurepluginswidget.cpp
@@ -61,7 +61,7 @@ void TextAutoGenerateTextConfigurePluginsWidget::initialize()
textPluginGroupName());
fillTopItems(TextAutoGenerateTextToolPluginManager::self()->pluginDataList(),
- i18n("Tools Plugins"),
+ i18n("Tool Plugins"),
TextAutoGenerateTextToolPluginManager::self()->configGroupName(),
TextAutoGenerateTextToolPluginManager::self()->configPrefixSettingKey(),
mPluginToolsItems,
diff --git a/textautogeneratetext/widgets/plugintext/textautogenerateplugintextmanager.cpp b/textautogeneratetext/widgets/plugintext/textautogenerateplugintextmanager.cpp
index e9e05ef6b..2dd6fec7f 100644
--- a/textautogeneratetext/widgets/plugintext/textautogenerateplugintextmanager.cpp
+++ b/textautogeneratetext/widgets/plugintext/textautogenerateplugintextmanager.cpp
@@ -118,7 +118,7 @@ QList<TextAutoGeneratePluginText *> TextAutoGeneratePluginTextManager::pluginsLi
QString TextAutoGeneratePluginTextManager::generatePluginsInformation() const
{
- QString result = i18n("Plugins Tool:");
+ QString result = i18n("Text Plugins:");
const QString tab = u" "_s;
for (const auto &p : mPluginDataList) {
result += u'\n';