diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-19 11:14:14 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-19 11:14:14 +0200 |
commit | 86d61d38091e71200e35b84c4eb7c6f8781c75db (patch) | |
tree | 995694d997b4abe5b43d5d4d5f9df9963d510e0f /framework/qml/FocusComposer.qml | |
parent | 234dada3a01c178fc9b1fa1641acbddd38644477 (diff) | |
download | kube-86d61d38091e71200e35b84c4eb7c6f8781c75db.tar.gz kube-86d61d38091e71200e35b84c4eb7c6f8781c75db.zip |
make it translateable
Diffstat (limited to 'framework/qml/FocusComposer.qml')
-rw-r--r-- | framework/qml/FocusComposer.qml | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/framework/qml/FocusComposer.qml b/framework/qml/FocusComposer.qml index d586e5b0..d328b1dd 100644 --- a/framework/qml/FocusComposer.qml +++ b/framework/qml/FocusComposer.qml | |||
@@ -70,7 +70,7 @@ Item { | |||
70 | 70 | ||
71 | Kube.Label { | 71 | Kube.Label { |
72 | Layout.alignment: Qt.AlignVCenter | Qt.AlignRight | 72 | Layout.alignment: Qt.AlignVCenter | Qt.AlignRight |
73 | text: "To" | 73 | text: text: qsTr("To") |
74 | } | 74 | } |
75 | 75 | ||
76 | AutocompleteLineEdit { | 76 | AutocompleteLineEdit { |
@@ -92,7 +92,7 @@ Item { | |||
92 | 92 | ||
93 | Kube.Label { | 93 | Kube.Label { |
94 | Layout.alignment: Qt.AlignVCenter | Qt.AlignRight | 94 | Layout.alignment: Qt.AlignVCenter | Qt.AlignRight |
95 | text: "Cc" | 95 | text: qsTr("Cc") |
96 | visible: cc.visible | 96 | visible: cc.visible |
97 | } | 97 | } |
98 | 98 | ||
@@ -117,7 +117,7 @@ Item { | |||
117 | 117 | ||
118 | Kube.Label { | 118 | Kube.Label { |
119 | Layout.alignment: Qt.AlignVCenter | Qt.AlignRight | 119 | Layout.alignment: Qt.AlignVCenter | Qt.AlignRight |
120 | text: "Bcc" | 120 | text: qsTr("Bcc") |
121 | visible: bcc.visible | 121 | visible: bcc.visible |
122 | } | 122 | } |
123 | 123 | ||
@@ -141,7 +141,7 @@ Item { | |||
141 | } | 141 | } |
142 | 142 | ||
143 | Kube.Label { | 143 | Kube.Label { |
144 | text: "From" | 144 | text: qsTr("From") |
145 | } | 145 | } |
146 | 146 | ||
147 | RowLayout { | 147 | RowLayout { |
@@ -161,7 +161,7 @@ Item { | |||
161 | Kube.Button { | 161 | Kube.Button { |
162 | id: ccButton | 162 | id: ccButton |
163 | 163 | ||
164 | text: "Cc" | 164 | text: qsTr("Cc") |
165 | onClicked: { | 165 | onClicked: { |
166 | cc.visible = true | 166 | cc.visible = true |
167 | ccButton.visible = false | 167 | ccButton.visible = false |
@@ -171,7 +171,7 @@ Item { | |||
171 | Kube.Button { | 171 | Kube.Button { |
172 | id: bccButton | 172 | id: bccButton |
173 | 173 | ||
174 | text: "Bcc" | 174 | text: qsTr("Bcc") |
175 | 175 | ||
176 | onClicked: { | 176 | onClicked: { |
177 | bcc.visible = true | 177 | bcc.visible = true |
@@ -214,7 +214,7 @@ Item { | |||
214 | width: parent.width | 214 | width: parent.width |
215 | 215 | ||
216 | Kube.Button { | 216 | Kube.Button { |
217 | text: "Discard" | 217 | text: qsTr("Discard") |
218 | 218 | ||
219 | onClicked: { | 219 | onClicked: { |
220 | root.done() | 220 | root.done() |
@@ -229,7 +229,7 @@ Item { | |||
229 | Kube.Button { | 229 | Kube.Button { |
230 | id: saveDraftButton | 230 | id: saveDraftButton |
231 | 231 | ||
232 | text: "Save as Draft" | 232 | text: qsTr("Save as Draft") |
233 | //TODO enabled: saveAsDraftAction.enabled | 233 | //TODO enabled: saveAsDraftAction.enabled |
234 | onClicked: { | 234 | onClicked: { |
235 | saveAsDraftAction.execute() | 235 | saveAsDraftAction.execute() |
@@ -239,7 +239,7 @@ Item { | |||
239 | Kube.PositiveButton { | 239 | Kube.PositiveButton { |
240 | width: saveDraftButton.width | 240 | width: saveDraftButton.width |
241 | 241 | ||
242 | text: "Send" | 242 | text: qsTr("Send") |
243 | enabled: sendAction.enabled | 243 | enabled: sendAction.enabled |
244 | onClicked: { | 244 | onClicked: { |
245 | sendAction.execute() | 245 | sendAction.execute() |