[konversation] /: Rename action name to make it consistent with other applications
Shubham Jangra
null at kde.org
Wed Sep 11 10:13:10 BST 2019
Git commit 695028fca5439d55b959573871549aa6680eb39c by Shubham Jangra.
Committed on 11/09/2019 at 09:13.
Pushed by shubham into branch 'master'.
Rename action name to make it consistent with other applications
Reviewers: hein!, ngraham
Reviewed By: ngraham
Subscribers: 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/695028fca5439d55b959573871549aa6680eb39c
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 679ddb1c..81ecd36e 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 35949837..c4148bf8 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -429,7 +429,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