diff options
Diffstat (limited to 'accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml')
-rw-r--r-- | accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml | 8 |
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 |