summaryrefslogtreecommitdiffstats
path: root/accounts/gmail
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2017-07-25 18:28:12 +0200
committerMichael Bohlender <michael.bohlender@kdemail.net>2017-07-25 18:28:12 +0200
commit1fe17bf7a3930f93c2e96b273dbb2a75320e25c3 (patch)
tree494df5576ee1954e0f57e69795d92bb1d2bd76fa /accounts/gmail
parent2950cfc956f5e64faee6e1db827f9946f720fc79 (diff)
downloadkube-1fe17bf7a3930f93c2e96b273dbb2a75320e25c3.tar.gz
kube-1fe17bf7a3930f93c2e96b273dbb2a75320e25c3.zip
make placeholdertexts translatable
Diffstat (limited to 'accounts/gmail')
-rw-r--r--accounts/gmail/package/contents/ui/GmailSettings.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/accounts/gmail/package/contents/ui/GmailSettings.qml b/accounts/gmail/package/contents/ui/GmailSettings.qml
index b0eb1415..40a6e1e7 100644
--- a/accounts/gmail/package/contents/ui/GmailSettings.qml
+++ b/accounts/gmail/package/contents/ui/GmailSettings.qml
@@ -78,7 +78,7 @@ Item {
78 } 78 }
79 Kube.TextField { 79 Kube.TextField {
80 Layout.fillWidth: true 80 Layout.fillWidth: true
81 placeholderText: "E.g. \"Work\", \"Home\" that will be displayed in Kube as name" 81 placeholderText: qsTr("E.g. \"Work\", \"Home\" that will be displayed in Kube as name")
82 text: gmailSettings.accountName 82 text: gmailSettings.accountName
83 onTextChanged: { 83 onTextChanged: {
84 gmailSettings.accountName = text 84 gmailSettings.accountName = text
@@ -91,7 +91,7 @@ Item {
91 } 91 }
92 Kube.TextField { 92 Kube.TextField {
93 Layout.fillWidth: true 93 Layout.fillWidth: true
94 placeholderText: "Your name" 94 placeholderText: qsTr("Your name")
95 text: gmailSettings.userName 95 text: gmailSettings.userName
96 onTextChanged: { 96 onTextChanged: {
97 gmailSettings.userName = text 97 gmailSettings.userName = text
@@ -109,7 +109,7 @@ Item {
109 onTextChanged: { 109 onTextChanged: {
110 gmailSettings.emailAddress = text 110 gmailSettings.emailAddress = text
111 } 111 }
112 placeholderText: "Your email address" 112 placeholderText: qsTr("Your email address")
113 } 113 }
114 114
115 Kube.Label { 115 Kube.Label {
@@ -123,7 +123,7 @@ Item {
123 id: pwField 123 id: pwField
124 Layout.fillWidth: true 124 Layout.fillWidth: true
125 125
126 placeholderText: "Password of your email account" 126 placeholderText: qsTr("Password of your email account")
127 text: gmailSettings.imapPassword 127 text: gmailSettings.imapPassword
128 onTextChanged: { 128 onTextChanged: {
129 gmailSettings.imapPassword = text 129 gmailSettings.imapPassword = text