[konversation] /: Rename action name to make it consistent with other applications

Shubham Jangra null at kde.org
Thu Dec 12 13:17:21 GMT 2019


Git commit c95244d25fe22e0fab9beb6e82a0e030f276bd80 by Shubham Jangra.
Committed on 12/12/2019 at 13:17.
Pushed by shubham into branch 'master'.

Rename action name to make it consistent with other applications

Reviewers: hein, ngraham

Reviewed By: hein, ngraham

Subscribers: ltoscano, kde-doc-english

Tags: #documentation

Differential Revision: https://phabricator.kde.org/D23837

M  +1    -1    ChangeLog
M  +1    -1    doc/index.docbook
M  +1    -1    src/mainwindow.cpp

https://commits.kde.org/konversation/c95244d25fe22e0fab9beb6e82a0e030f276bd80

diff --git a/ChangeLog b/ChangeLog
index 5e5c799a..5d3e5a3c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,7 +10,7 @@ regression that crept into v1.7.3.
 
 * Fixed a bug causing the size of a custom chat text view font set via
   the configuration dialog to be ignored. A font size modification done
-  via the Enlarge/Decrease Font Size actions is now applied on top of
+  via the Enlarge/Shrink Font Size actions is now applied on top of
   the configured size (or the system default font size, respectively).
 
 Changes from Konversation 1.7.2 to 1.7.3:
diff --git a/doc/index.docbook b/doc/index.docbook
index 98af3508..c4e1c612 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -2885,7 +2885,7 @@ or menu bars. -->
 Find Previous Shift F3
 Clear Marker Lines Ctrl Shift R
 Enlarge Font Size Ctrl++
-Decrease Font Size Ctrl+-
+Shrink Font Size Ctrl+-
 Reset Font Size Ctrl+O
 -->
 	<varlistentry>
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index a703e35d..0708ae01 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -424,7 +424,7 @@ MainWindow::MainWindow() : KXmlGuiWindow(nullptr)
     actionCollection()->addAction(QStringLiteral("reset_font"), action);
 
     action=new QAction(this);
-    action->setText(i18n("Decrease Font Size"));
+    action->setText(i18n("Shrink Font Size"));
     actionCollection()->setDefaultShortcuts(action, KStandardShortcut::zoomOut());
     action->setEnabled(false);
     action->setIcon(QIcon::fromTheme(QStringLiteral("zoom-out")));


More information about the kde-doc-english mailing list