diff options
Diffstat (limited to 'accounts/imap/package/contents')
-rw-r--r-- | accounts/imap/package/contents/ui/ImapAccountSettings.qml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/accounts/imap/package/contents/ui/ImapAccountSettings.qml b/accounts/imap/package/contents/ui/ImapAccountSettings.qml index 170c3e0e..332b2bbe 100644 --- a/accounts/imap/package/contents/ui/ImapAccountSettings.qml +++ b/accounts/imap/package/contents/ui/ImapAccountSettings.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: imapSettings.accountName | 66 | text: imapSettings.accountName |
67 | onTextChanged: { | 67 | onTextChanged: { |
68 | imapSettings.accountName = text | 68 | imapSettings.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: imapSettings.userName | 79 | text: imapSettings.userName |
80 | onTextChanged: { | 80 | onTextChanged: { |
81 | imapSettings.userName = text | 81 | imapSettings.userName = text |
@@ -95,7 +95,7 @@ Item { | |||
95 | imapSettings.imapUsername = text | 95 | imapSettings.imapUsername = text |
96 | imapSettings.smtpUsername = text | 96 | imapSettings.smtpUsername = text |
97 | } | 97 | } |
98 | placeholderText: "Your email address" | 98 | placeholderText: qsTr("Your email address") |
99 | } | 99 | } |
100 | 100 | ||
101 | Kube.Label { | 101 | Kube.Label { |
@@ -109,7 +109,7 @@ Item { | |||
109 | id: pwField | 109 | id: pwField |
110 | Layout.fillWidth: true | 110 | Layout.fillWidth: true |
111 | 111 | ||
112 | placeholderText: "Password of your email account" | 112 | placeholderText: qsTr("Password of your email account") |
113 | text: imapSettings.imapPassword | 113 | text: imapSettings.imapPassword |
114 | onTextChanged: { | 114 | onTextChanged: { |
115 | imapSettings.imapPassword = text | 115 | imapSettings.imapPassword = text |