diff options
author | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-19 11:33:31 +0200 |
---|---|---|
committer | Michael Bohlender <michael.bohlender@kdemail.net> | 2017-07-19 11:33:31 +0200 |
commit | ae084506b673d4264f5da65e369922bfd29fe50a (patch) | |
tree | ff42f8dc6fadb7a60f518ac8457a651cdf4ffb22 /accounts/imap/package/contents/ui/ImapAccountSettings.qml | |
parent | 86d61d38091e71200e35b84c4eb7c6f8781c75db (diff) | |
download | kube-ae084506b673d4264f5da65e369922bfd29fe50a.tar.gz kube-ae084506b673d4264f5da65e369922bfd29fe50a.zip |
make more translatable
Diffstat (limited to 'accounts/imap/package/contents/ui/ImapAccountSettings.qml')
-rw-r--r-- | accounts/imap/package/contents/ui/ImapAccountSettings.qml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/accounts/imap/package/contents/ui/ImapAccountSettings.qml b/accounts/imap/package/contents/ui/ImapAccountSettings.qml index 529024b2..170c3e0e 100644 --- a/accounts/imap/package/contents/ui/ImapAccountSettings.qml +++ b/accounts/imap/package/contents/ui/ImapAccountSettings.qml | |||
@@ -57,7 +57,7 @@ Item { | |||
57 | rowSpacing: Kube.Units.largeSpacing | 57 | rowSpacing: Kube.Units.largeSpacing |
58 | 58 | ||
59 | Kube.Label { | 59 | Kube.Label { |
60 | text: "Title of Account" | 60 | text: qsTr("Title of Account") |
61 | Layout.alignment: Qt.AlignRight | 61 | Layout.alignment: Qt.AlignRight |
62 | } | 62 | } |
63 | Kube.TextField { | 63 | Kube.TextField { |
@@ -70,7 +70,7 @@ Item { | |||
70 | } | 70 | } |
71 | 71 | ||
72 | Kube.Label { | 72 | Kube.Label { |
73 | text: "Name" | 73 | text: qsTr("Name") |
74 | Layout.alignment: Qt.AlignRight | 74 | Layout.alignment: Qt.AlignRight |
75 | } | 75 | } |
76 | Kube.TextField { | 76 | Kube.TextField { |
@@ -83,7 +83,7 @@ Item { | |||
83 | } | 83 | } |
84 | 84 | ||
85 | Kube.Label { | 85 | Kube.Label { |
86 | text: "Email address" | 86 | text: qsTr("Email address") |
87 | Layout.alignment: Qt.AlignRight | 87 | Layout.alignment: Qt.AlignRight |
88 | } | 88 | } |
89 | Kube.TextField { | 89 | Kube.TextField { |
@@ -99,7 +99,7 @@ Item { | |||
99 | } | 99 | } |
100 | 100 | ||
101 | Kube.Label { | 101 | Kube.Label { |
102 | text: "Password" | 102 | text: qsTr("Password") |
103 | Layout.alignment: Qt.AlignRight | 103 | Layout.alignment: Qt.AlignRight |
104 | } | 104 | } |
105 | RowLayout { | 105 | RowLayout { |
@@ -120,7 +120,7 @@ Item { | |||
120 | } | 120 | } |
121 | 121 | ||
122 | Controls.CheckBox { | 122 | Controls.CheckBox { |
123 | text: "Show Password" | 123 | text: qsTr("Show Password") |
124 | onClicked: { | 124 | onClicked: { |
125 | if(pwField.echoMode == TextInput.Password) { | 125 | if(pwField.echoMode == TextInput.Password) { |
126 | pwField.echoMode = TextInput.Normal; | 126 | pwField.echoMode = TextInput.Normal; |
@@ -132,7 +132,7 @@ Item { | |||
132 | } | 132 | } |
133 | 133 | ||
134 | Kube.Label { | 134 | Kube.Label { |
135 | text: "IMAP server address" | 135 | text: qsTr("IMAP server address") |
136 | Layout.alignment: Qt.AlignRight | 136 | Layout.alignment: Qt.AlignRight |
137 | } | 137 | } |
138 | Kube.TextField { | 138 | Kube.TextField { |
@@ -156,7 +156,7 @@ Item { | |||
156 | } | 156 | } |
157 | 157 | ||
158 | Kube.Label { | 158 | Kube.Label { |
159 | text: "Smtp address" | 159 | text: qsTr("Smtp address") |
160 | Layout.alignment: Qt.AlignRight | 160 | Layout.alignment: Qt.AlignRight |
161 | } | 161 | } |
162 | Kube.TextField { | 162 | Kube.TextField { |