summaryrefslogtreecommitdiffstats
path: root/accounts/gmail/package/contents/ui/GmailSettings.qml
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-07-19 11:33:31 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-07-19 11:33:31 +0200
commitae084506b673d4264f5da65e369922bfd29fe50a (patch)
treeff42f8dc6fadb7a60f518ac8457a651cdf4ffb22 /accounts/gmail/package/contents/ui/GmailSettings.qml
parent86d61d38091e71200e35b84c4eb7c6f8781c75db (diff)
downloadkube-ae084506b673d4264f5da65e369922bfd29fe50a.tar.gz
kube-ae084506b673d4264f5da65e369922bfd29fe50a.zip
make more translatable
Diffstat (limited to 'accounts/gmail/package/contents/ui/GmailSettings.qml')
-rw-r--r--accounts/gmail/package/contents/ui/GmailSettings.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/accounts/gmail/package/contents/ui/GmailSettings.qml b/accounts/gmail/package/contents/ui/GmailSettings.qml
index 86ea966a..b0eb1415 100644
--- a/accounts/gmail/package/contents/ui/GmailSettings.qml
+++ b/accounts/gmail/package/contents/ui/GmailSettings.qml
@@ -73,7 +73,7 @@ Item {
73 } 73 }
74 74
75 Kube.Label { 75 Kube.Label {
76 text: "Title of Account" 76 text: qsTr("Title of Account")
77 Layout.alignment: Qt.AlignRight 77 Layout.alignment: Qt.AlignRight
78 } 78 }
79 Kube.TextField { 79 Kube.TextField {
@@ -86,7 +86,7 @@ Item {
86 } 86 }
87 87
88 Kube.Label { 88 Kube.Label {
89 text: "Name" 89 text: qsTr("Name")
90 Layout.alignment: Qt.AlignRight 90 Layout.alignment: Qt.AlignRight
91 } 91 }
92 Kube.TextField { 92 Kube.TextField {
@@ -99,7 +99,7 @@ Item {
99 } 99 }
100 100
101 Kube.Label { 101 Kube.Label {
102 text: "Email address" 102 text: qsTr("Email address")
103 Layout.alignment: Qt.AlignRight 103 Layout.alignment: Qt.AlignRight
104 } 104 }
105 Kube.TextField { 105 Kube.TextField {
@@ -113,7 +113,7 @@ Item {
113 } 113 }
114 114
115 Kube.Label { 115 Kube.Label {
116 text: "Password" 116 text: qsTr("Password")
117 Layout.alignment: Qt.AlignRight 117 Layout.alignment: Qt.AlignRight
118 } 118 }
119 RowLayout { 119 RowLayout {
@@ -134,7 +134,7 @@ Item {
134 } 134 }
135 135
136 Controls.CheckBox { 136 Controls.CheckBox {
137 text: "Show Password" 137 text: qsTr("Show Password")
138 onClicked: { 138 onClicked: {
139 if(pwField.echoMode == TextInput.Password) { 139 if(pwField.echoMode == TextInput.Password) {
140 pwField.echoMode = TextInput.Normal; 140 pwField.echoMode = TextInput.Normal;