aboutsummaryrefslogtreecommitdiff
path: root/src/gui/kstandardshortcut.cpp
diff options
context:
space:
mode:
authorNate Graham <nate@kde.org>2022-05-27 06:25:17 -0600
committerNate Graham <nate@kde.org>2022-05-30 13:41:15 +0000
commit4785f8adf536907d59d91a94491e5d4381421cd2 (patch)
treebffecdf16d9016362b500e11a3c87cfb64893fb3 /src/gui/kstandardshortcut.cpp
parent5a01d0c0c14b66db121c8eeb2332f352b843f8da (diff)
downloadkconfig-4785f8adf536907d59d91a94491e5d4381421cd2.tar.gz
kconfig-4785f8adf536907d59d91a94491e5d4381421cd2.tar.bz2
Change "Actual Size" shortcut's text to "Zoom to Actual Size"
In general actions need to start with verbs so that the user knows what will happen. Changing "Actual Size" to "Zoom to Actual Size" makes the action compliant with this rule, and also makes it clear that this is a zoom action, so anywhere the user searches for the word "zoom", they will find it.
Diffstat (limited to 'src/gui/kstandardshortcut.cpp')
-rw-r--r--src/gui/kstandardshortcut.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/kstandardshortcut.cpp b/src/gui/kstandardshortcut.cpp
index e7639219..6b3002d5 100644
--- a/src/gui/kstandardshortcut.cpp
+++ b/src/gui/kstandardshortcut.cpp
@@ -294,7 +294,7 @@ static KStandardShortcutInfo g_infoStandardShortcut[] = {
{PrintPreview, "PrintPreview", QT_TRANSLATE_NOOP3("KStandardShortcut", "Print Preview", "@action"), 0, 0, QList<QKeySequence>(), false, Category::File},
{Mail, "Mail", QT_TRANSLATE_NOOP3("KStandardShortcut", "Mail", "@action"), 0, 0, QList<QKeySequence>(), false, Category::Help},
{Clear, "Clear", QT_TRANSLATE_NOOP3("KStandardShortcut", "Clear", "@action"), 0, 0, QList<QKeySequence>(), false, Category::Edit},
- {ActualSize, "ActualSize", QT_TRANSLATE_NOOP3("KStandardShortcut", "Actual Size", "@action"), CTRL(0), 0, QList<QKeySequence>(), false, Category::View},
+ {ActualSize, "ActualSize", QT_TRANSLATE_NOOP3("KStandardShortcut", "Zoom to Actual Size", "@action"), CTRL(0), 0, QList<QKeySequence>(), false, Category::View},
{FitToPage, "FitToPage", QT_TRANSLATE_NOOP3("KStandardShortcut", "Fit To Page", "@action"), 0, 0, QList<QKeySequence>(), false, Category::View},
{FitToWidth, "FitToWidth", QT_TRANSLATE_NOOP3("KStandardShortcut", "Fit To Width", "@action"), 0, 0, QList<QKeySequence>(), false, Category::View},
{FitToHeight, "FitToHeight", QT_TRANSLATE_NOOP3("KStandardShortcut", "Fit To Height", "@action"), 0, 0, QList<QKeySequence>(), false, Category::View},