From 1fe17bf7a3930f93c2e96b273dbb2a75320e25c3 Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Tue, 25 Jul 2017 18:28:12 +0200 Subject: make placeholdertexts translatable --- accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'accounts/kolabnow/package') 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 { } Kube.TextField { Layout.fillWidth: true - placeholderText: "E.g. \"Work\", \"Home\" that will be displayed in Kube as name" + placeholderText: qsTr("E.g. \"Work\", \"Home\" that will be displayed in Kube as name") text: kolabnowSettings.accountName onTextChanged: { kolabnowSettings.accountName = text @@ -75,7 +75,7 @@ Item { } Kube.TextField { Layout.fillWidth: true - placeholderText: "Your name" + placeholderText: qsTr("Your name") text: kolabnowSettings.userName onTextChanged: { kolabnowSettings.userName = text @@ -93,7 +93,7 @@ Item { onTextChanged: { kolabnowSettings.emailAddress = text } - placeholderText: "Your email address" + placeholderText: qsTr("Your email address") } Kube.Label { @@ -107,7 +107,7 @@ Item { id: pwField Layout.fillWidth: true - placeholderText: "Password of your email account" + placeholderText: qsTr("Password of your email account") text: kolabnowSettings.imapPassword onTextChanged: { kolabnowSettings.imapPassword = text -- cgit v1.2.3