summaryrefslogtreecommitdiffstats
path: root/accounts
diff options
context:
space:
mode:
authorMichael Bohlender <michael.bohlender@kdemail.net>2016-10-31 16:34:27 +0100
committerMichael Bohlender <michael.bohlender@kdemail.net>2016-10-31 16:34:27 +0100
commit0bc548a43a660f1f0fd34846d85ce22cb6c61704 (patch)
tree45ad547cb2330ad6bb7485307f72458c179355d5 /accounts
parent56474436cc8cc803f40e2aee9e81593edfe32658 (diff)
downloadkube-0bc548a43a660f1f0fd34846d85ce22cb6c61704.tar.gz
kube-0bc548a43a660f1f0fd34846d85ce22cb6c61704.zip
Imap Settings UI: more placeholder text, fix typo + don't show the password
Diffstat (limited to 'accounts')
-rw-r--r--accounts/imap/package/contents/ui/ImapAccountSettings.qml10
1 files changed, 9 insertions, 1 deletions
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 {
60 60
61 width: parent.width 61 width: parent.width
62 62
63 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" 63 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"
64 64
65 color: Kirigami.Theme.disabledTextColor 65 color: Kirigami.Theme.disabledTextColor
66 66
@@ -89,6 +89,8 @@ Item {
89 TextField { 89 TextField {
90 Layout.fillWidth: true 90 Layout.fillWidth: true
91 91
92 placeholderText: "E.g. \"Work\", \"Home\" that will be displayed in Kube as name"
93
92 text: imapSettings.accountName 94 text: imapSettings.accountName
93 onTextChanged: { 95 onTextChanged: {
94 imapSettings.accountName = text 96 imapSettings.accountName = text
@@ -102,6 +104,8 @@ Item {
102 TextField { 104 TextField {
103 Layout.fillWidth: true 105 Layout.fillWidth: true
104 106
107 placeholderText: "Your email address"
108
105 text: imapSettings.emailAddress 109 text: imapSettings.emailAddress
106 onTextChanged: { 110 onTextChanged: {
107 imapSettings.emailAddress = text 111 imapSettings.emailAddress = text
@@ -115,6 +119,8 @@ Item {
115 TextField { 119 TextField {
116 Layout.fillWidth: true 120 Layout.fillWidth: true
117 121
122 placeholderText: "The name used to log into your email account"
123
118 text: imapSettings.imapUsername 124 text: imapSettings.imapUsername
119 onTextChanged: { 125 onTextChanged: {
120 imapSettings.imapUsername = text 126 imapSettings.imapUsername = text
@@ -130,6 +136,8 @@ Item {
130 Layout.fillWidth: true 136 Layout.fillWidth: true
131 137
132 text: imapSettings.imapPassword 138 text: imapSettings.imapPassword
139 placeholderText: "Password of your email account"
140 echoMode: TextInput.Password
133 onTextChanged: { 141 onTextChanged: {
134 imapSettings.imapPassword = text 142 imapSettings.imapPassword = text
135 imapSettings.smtpPassword = text 143 imapSettings.smtpPassword = text