From 7d91b00072430f5a8dfea3ae06684f49586648bf Mon Sep 17 00:00:00 2001 From: dgw Date: Sun, 21 Oct 2018 03:22:21 -0500 Subject: [PATCH] Make tools' (English) tooltip phrasing consistent (#375) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Some tooltips were written as imperatives ("Set foo to bar"), others were written as simple present ("Performs foo action"). All should now be consistently written in imperative form (unless I missed any…). --- src/tools/arrow/arrowtool.cpp | 2 +- src/tools/blur/blurtool.cpp | 2 +- src/tools/circle/circletool.cpp | 2 +- src/tools/copy/copytool.cpp | 2 +- src/tools/imgur/imguruploadertool.cpp | 2 +- src/tools/line/linetool.cpp | 2 +- src/tools/marker/markertool.cpp | 2 +- src/tools/pencil/penciltool.cpp | 2 +- src/tools/rectangle/rectangletool.cpp | 2 +- src/tools/selection/selectiontool.cpp | 2 +- src/tools/sizeindicator/sizeindicatortool.cpp | 2 +- 11 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/tools/arrow/arrowtool.cpp b/src/tools/arrow/arrowtool.cpp index 5cc26f6a..cdec49d6 100644 --- a/src/tools/arrow/arrowtool.cpp +++ b/src/tools/arrow/arrowtool.cpp @@ -85,7 +85,7 @@ QString ArrowTool::nameID() { } QString ArrowTool::description() const { - return tr("Sets the Arrow as the paint tool"); + return tr("Set the Arrow as the paint tool"); } CaptureTool* ArrowTool::copy(QObject *parent) { diff --git a/src/tools/blur/blurtool.cpp b/src/tools/blur/blurtool.cpp index e845d471..0ea63f55 100644 --- a/src/tools/blur/blurtool.cpp +++ b/src/tools/blur/blurtool.cpp @@ -39,7 +39,7 @@ QString BlurTool::nameID() { } QString BlurTool::description() const { - return tr("Sets the Blur as the paint tool"); + return tr("Set Blur as the paint tool"); } CaptureTool* BlurTool::copy(QObject *parent) { diff --git a/src/tools/circle/circletool.cpp b/src/tools/circle/circletool.cpp index 4ce2f5d8..387c6efb 100644 --- a/src/tools/circle/circletool.cpp +++ b/src/tools/circle/circletool.cpp @@ -39,7 +39,7 @@ QString CircleTool::nameID() { } QString CircleTool::description() const { - return tr("Sets the Circle as the paint tool"); + return tr("Set the Circle as the paint tool"); } CaptureTool* CircleTool::copy(QObject *parent) { diff --git a/src/tools/copy/copytool.cpp b/src/tools/copy/copytool.cpp index 3914dd19..268d0b72 100644 --- a/src/tools/copy/copytool.cpp +++ b/src/tools/copy/copytool.cpp @@ -40,7 +40,7 @@ QString CopyTool::nameID() { } QString CopyTool::description() const { - return tr("Copies the selection into the clipboard"); + return tr("Copy the selection into the clipboard"); } CaptureTool* CopyTool::copy(QObject *parent) { diff --git a/src/tools/imgur/imguruploadertool.cpp b/src/tools/imgur/imguruploadertool.cpp index 92d4e868..428e3db6 100644 --- a/src/tools/imgur/imguruploadertool.cpp +++ b/src/tools/imgur/imguruploadertool.cpp @@ -40,7 +40,7 @@ QString ImgurUploaderTool::nameID() { } QString ImgurUploaderTool::description() const { - return tr("Uploads the selection to Imgur"); + return tr("Upload the selection to Imgur"); } QWidget* ImgurUploaderTool::widget() { diff --git a/src/tools/line/linetool.cpp b/src/tools/line/linetool.cpp index c6daeb8b..e1a1755e 100644 --- a/src/tools/line/linetool.cpp +++ b/src/tools/line/linetool.cpp @@ -47,7 +47,7 @@ QString LineTool::nameID() { } QString LineTool::description() const { - return tr("Sets the Line as the paint tool"); + return tr("Set the Line as the paint tool"); } CaptureTool* LineTool::copy(QObject *parent) { diff --git a/src/tools/marker/markertool.cpp b/src/tools/marker/markertool.cpp index 85a11dde..42800b02 100644 --- a/src/tools/marker/markertool.cpp +++ b/src/tools/marker/markertool.cpp @@ -47,7 +47,7 @@ QString MarkerTool::nameID() { } QString MarkerTool::description() const { - return tr("Sets the Marker as the paint tool"); + return tr("Set the Marker as the paint tool"); } CaptureTool* MarkerTool::copy(QObject *parent) { diff --git a/src/tools/pencil/penciltool.cpp b/src/tools/pencil/penciltool.cpp index 509c825b..7b01c5b2 100644 --- a/src/tools/pencil/penciltool.cpp +++ b/src/tools/pencil/penciltool.cpp @@ -35,7 +35,7 @@ QString PencilTool::nameID() { } QString PencilTool::description() const { - return tr("Sets the Pencil as the paint tool"); + return tr("Set the Pencil as the paint tool"); } CaptureTool* PencilTool::copy(QObject *parent) { diff --git a/src/tools/rectangle/rectangletool.cpp b/src/tools/rectangle/rectangletool.cpp index 368199c1..fa9c483b 100644 --- a/src/tools/rectangle/rectangletool.cpp +++ b/src/tools/rectangle/rectangletool.cpp @@ -39,7 +39,7 @@ QString RectangleTool::nameID() { } QString RectangleTool::description() const { - return tr("Sets the Rectangle as the paint tool"); + return tr("Set the Rectangle as the paint tool"); } CaptureTool* RectangleTool::copy(QObject *parent) { diff --git a/src/tools/selection/selectiontool.cpp b/src/tools/selection/selectiontool.cpp index fb3b3125..c1c4222a 100644 --- a/src/tools/selection/selectiontool.cpp +++ b/src/tools/selection/selectiontool.cpp @@ -43,7 +43,7 @@ QString SelectionTool::nameID() { } QString SelectionTool::description() const { - return tr("Sets the Selection as the paint tool"); + return tr("Set Selection as the paint tool"); } CaptureTool* SelectionTool::copy(QObject *parent) { diff --git a/src/tools/sizeindicator/sizeindicatortool.cpp b/src/tools/sizeindicator/sizeindicatortool.cpp index 1e883048..047f7551 100644 --- a/src/tools/sizeindicator/sizeindicatortool.cpp +++ b/src/tools/sizeindicator/sizeindicatortool.cpp @@ -39,7 +39,7 @@ QString SizeIndicatorTool::nameID() { } QString SizeIndicatorTool::description() const { - return tr("Shows the dimensions of the selection (X Y)"); + return tr("Show the dimensions of the selection (X Y)"); } CaptureTool* SizeIndicatorTool::copy(QObject *parent) {