Package: flameshot / 0.6.0-11

0016-Make-tools-English-tooltip-phrasing-consistent-375.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
From: dgw <dgw@technobabbl.es>
Date: Sun, 21 Oct 2018 03:22:21 -0500
Subject: Make tools' (English) tooltip phrasing consistent (#375)

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 5cc26f6..cdec49d 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 e845d47..0ea63f5 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 4ce2f5d..387c6ef 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 3914dd1..268d0b7 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 92d4e86..428e3db 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 c6daeb8..e1a1755 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 85a11dd..42800b0 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 509c825..7b01c5b 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 368199c..fa9c483 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 fb3b312..c1c4222 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 1e88304..047f755 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) {