[spectacle] /: Use title case for the clipboard button

Nathaniel Graham null at kde.org
Sat Aug 25 18:41:51 BST 2018


Git commit 3d30e3d03ae0fa616c18eff76632b9a1284a9f89 by Nathaniel Graham.
Committed on 25/08/2018 at 17:22.
Pushed by ngraham into branch 'master'.

Use title case for the clipboard button

Summary: Use Title Case for the {nav Copy to Clipboard} button. In this case, it means making the word "to" lowercase.

Test Plan: Compile, deploy, open Spectacle, look at button title and docbook

Reviewers: #spectacle, #kde_applications, broulik, cfeck, #localization, lueck

Subscribers: pino, yurchor, kde-doc-english

Tags: #documentation

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

M  +1    -1    doc/index.docbook
M  +1    -1    src/Gui/KSMainWindow.cpp

https://commits.kde.org/spectacle/3d30e3d03ae0fa616c18eff76632b9a1284a9f89

diff --git a/doc/index.docbook b/doc/index.docbook
index 0598ef5..22a0172 100644
--- a/doc/index.docbook
+++ b/doc/index.docbook
@@ -231,7 +231,7 @@
                     </listitem>
                 </varlistentry>
                 <varlistentry>
-                    <term><guibutton>Copy To Clipboard</guibutton></term>
+                    <term><guibutton>Copy to Clipboard</guibutton></term>
                     <listitem>
                         <para>Copies the current screenshot to the clipboard. You can also use the <keycombo action="simul">&Ctrl;<keycap>C</keycap></keycombo> keyboard shortcut for this.</para>
                     </listitem>
diff --git a/src/Gui/KSMainWindow.cpp b/src/Gui/KSMainWindow.cpp
index a8dcecd..7d64caa 100644
--- a/src/Gui/KSMainWindow.cpp
+++ b/src/Gui/KSMainWindow.cpp
@@ -150,7 +150,7 @@ void KSMainWindow::init()
     mDialogButtonBox->addButton(mSendToButton, QDialogButtonBox::ActionRole);
 
     mClipboardButton->setDefaultAction(KStandardAction::copy(this, SLOT(sendToClipboard()), this));
-    mClipboardButton->setText(i18n("Copy To Clipboard"));
+    mClipboardButton->setText(i18n("Copy to Clipboard"));
     mClipboardButton->setToolTip(i18n("Copy the current screenshot image to the clipboard."));
     mClipboardButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
     mDialogButtonBox->addButton(mClipboardButton, QDialogButtonBox::ActionRole);


More information about the kde-doc-english mailing list