From 0bc548a43a660f1f0fd34846d85ce22cb6c61704 Mon Sep 17 00:00:00 2001 From: Michael Bohlender Date: Mon, 31 Oct 2016 16:34:27 +0100 Subject: Imap Settings UI: more placeholder text, fix typo + don't show the password --- accounts/imap/package/contents/ui/ImapAccountSettings.qml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) (limited to 'accounts/imap/package/contents/ui/ImapAccountSettings.qml') diff --git a/accounts/imap/package/contents/ui/ImapAccountSettings.qml b/accounts/imap/package/contents/ui/ImapAccountSettings.qml index 01fbb46d..80540912 100644 --- a/accounts/imap/package/contents/ui/ImapAccountSettings.qml +++ b/accounts/imap/package/contents/ui/ImapAccountSettings.qml @@ -60,7 +60,7 @@ Item { width: parent.width - text: "To let Kube access your account, fill in email address, username, password and give the account a title that will be displayed inside Kube. For information about which SMTP, IMAP server, which authentification and port to be used, please contact your email provider" + text: "To let Kube access your account, fill in email address, username, password and give the account a title that will be displayed inside Kube. For information about which SMTP, IMAP address, which authentification and port to be used, please contact your email provider" color: Kirigami.Theme.disabledTextColor @@ -89,6 +89,8 @@ Item { TextField { Layout.fillWidth: true + placeholderText: "E.g. \"Work\", \"Home\" that will be displayed in Kube as name" + text: imapSettings.accountName onTextChanged: { imapSettings.accountName = text @@ -102,6 +104,8 @@ Item { TextField { Layout.fillWidth: true + placeholderText: "Your email address" + text: imapSettings.emailAddress onTextChanged: { imapSettings.emailAddress = text @@ -115,6 +119,8 @@ Item { TextField { Layout.fillWidth: true + placeholderText: "The name used to log into your email account" + text: imapSettings.imapUsername onTextChanged: { imapSettings.imapUsername = text @@ -130,6 +136,8 @@ Item { Layout.fillWidth: true text: imapSettings.imapPassword + placeholderText: "Password of your email account" + echoMode: TextInput.Password onTextChanged: { imapSettings.imapPassword = text imapSettings.smtpPassword = text -- cgit v1.2.3