summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--framework/qml/EditAccount.qml2
-rw-r--r--framework/qml/FocusComposer.qml18
-rw-r--r--framework/qml/MailListView.qml2
3 files changed, 11 insertions, 11 deletions
diff --git a/framework/qml/EditAccount.qml b/framework/qml/EditAccount.qml
index 290cd5dc..69c0ff11 100644
--- a/framework/qml/EditAccount.qml
+++ b/framework/qml/EditAccount.qml
@@ -112,7 +112,7 @@ Item {
112 Layout.fillWidth: true 112 Layout.fillWidth: true
113 113
114 Kube.Button { 114 Kube.Button {
115 text: "Remove Account" 115 text: qsTr("Remove Account")
116 116
117 onClicked: { 117 onClicked: {
118 loader.item.remove() 118 loader.item.remove()
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()
diff --git a/framework/qml/MailListView.qml b/framework/qml/MailListView.qml
index a6db1aba..20012576 100644
--- a/framework/qml/MailListView.qml
+++ b/framework/qml/MailListView.qml
@@ -60,7 +60,7 @@ FocusScope {
60 anchors.centerIn: parent 60 anchors.centerIn: parent
61 visible: listView.count === 0 61 visible: listView.count === 0
62 //TODO depending on whether we synchronized already or not the label should change. 62 //TODO depending on whether we synchronized already or not the label should change.
63 text: "Nothing here..." 63 text: qsTr("Nothing here...")
64 } 64 }
65 65
66 Kube.ListView { 66 Kube.ListView {