summaryrefslogtreecommitdiffstats
path: root/accounts/kolabnow
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/kolabnow
parent2950cfc956f5e64faee6e1db827f9946f720fc79 (diff)
downloadkube-1fe17bf7a3930f93c2e96b273dbb2a75320e25c3.tar.gz
kube-1fe17bf7a3930f93c2e96b273dbb2a75320e25c3.zip
make placeholdertexts translatable
Diffstat (limited to 'accounts/kolabnow')
-rw-r--r--accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml b/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml
index bd006c4c..4dcc23ee 100644
--- a/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml
+++ b/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml
@@ -62,7 +62,7 @@ Item {
62 } 62 }
63 Kube.TextField { 63 Kube.TextField {
64 Layout.fillWidth: true 64 Layout.fillWidth: true
65 placeholderText: "E.g. \"Work\", \"Home\" that will be displayed in Kube as name" 65 placeholderText: qsTr("E.g. \"Work\", \"Home\" that will be displayed in Kube as name")
66 text: kolabnowSettings.accountName 66 text: kolabnowSettings.accountName
67 onTextChanged: { 67 onTextChanged: {
68 kolabnowSettings.accountName = text 68 kolabnowSettings.accountName = text
@@ -75,7 +75,7 @@ Item {
75 } 75 }
76 Kube.TextField { 76 Kube.TextField {
77 Layout.fillWidth: true 77 Layout.fillWidth: true
78 placeholderText: "Your name" 78 placeholderText: qsTr("Your name")
79 text: kolabnowSettings.userName 79 text: kolabnowSettings.userName
80 onTextChanged: { 80 onTextChanged: {
81 kolabnowSettings.userName = text 81 kolabnowSettings.userName = text
@@ -93,7 +93,7 @@ Item {
93 onTextChanged: { 93 onTextChanged: {
94 kolabnowSettings.emailAddress = text 94 kolabnowSettings.emailAddress = text
95 } 95 }
96 placeholderText: "Your email address" 96 placeholderText: qsTr("Your email address")
97 } 97 }
98 98
99 Kube.Label { 99 Kube.Label {
@@ -107,7 +107,7 @@ Item {
107 id: pwField 107 id: pwField
108 Layout.fillWidth: true 108 Layout.fillWidth: true
109 109
110 placeholderText: "Password of your email account" 110 placeholderText: qsTr("Password of your email account")
111 text: kolabnowSettings.imapPassword 111 text: kolabnowSettings.imapPassword
112 onTextChanged: { 112 onTextChanged: {
113 kolabnowSettings.imapPassword = text 113 kolabnowSettings.imapPassword = text