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 | |
parent | 86d61d38091e71200e35b84c4eb7c6f8781c75db (diff) | |
download | kube-ae084506b673d4264f5da65e369922bfd29fe50a.tar.gz kube-ae084506b673d4264f5da65e369922bfd29fe50a.zip |
make more translatable
Diffstat (limited to 'accounts')
4 files changed, 19 insertions, 19 deletions
diff --git a/accounts/gmail/package/contents/ui/GmailSettings.qml b/accounts/gmail/package/contents/ui/GmailSettings.qml index 86ea966a..b0eb1415 100644 --- a/accounts/gmail/package/contents/ui/GmailSettings.qml +++ b/accounts/gmail/package/contents/ui/GmailSettings.qml | |||
@@ -73,7 +73,7 @@ Item { | |||
73 | } | 73 | } |
74 | 74 | ||
75 | Kube.Label { | 75 | Kube.Label { |
76 | text: "Title of Account" | 76 | text: qsTr("Title of Account") |
77 | Layout.alignment: Qt.AlignRight | 77 | Layout.alignment: Qt.AlignRight |
78 | } | 78 | } |
79 | Kube.TextField { | 79 | Kube.TextField { |
@@ -86,7 +86,7 @@ Item { | |||
86 | } | 86 | } |
87 | 87 | ||
88 | Kube.Label { | 88 | Kube.Label { |
89 | text: "Name" | 89 | text: qsTr("Name") |
90 | Layout.alignment: Qt.AlignRight | 90 | Layout.alignment: Qt.AlignRight |
91 | } | 91 | } |
92 | Kube.TextField { | 92 | Kube.TextField { |
@@ -99,7 +99,7 @@ Item { | |||
99 | } | 99 | } |
100 | 100 | ||
101 | Kube.Label { | 101 | Kube.Label { |
102 | text: "Email address" | 102 | text: qsTr("Email address") |
103 | Layout.alignment: Qt.AlignRight | 103 | Layout.alignment: Qt.AlignRight |
104 | } | 104 | } |
105 | Kube.TextField { | 105 | Kube.TextField { |
@@ -113,7 +113,7 @@ Item { | |||
113 | } | 113 | } |
114 | 114 | ||
115 | Kube.Label { | 115 | Kube.Label { |
116 | text: "Password" | 116 | text: qsTr("Password") |
117 | Layout.alignment: Qt.AlignRight | 117 | Layout.alignment: Qt.AlignRight |
118 | } | 118 | } |
119 | RowLayout { | 119 | RowLayout { |
@@ -134,7 +134,7 @@ Item { | |||
134 | } | 134 | } |
135 | 135 | ||
136 | Controls.CheckBox { | 136 | Controls.CheckBox { |
137 | text: "Show Password" | 137 | text: qsTr("Show Password") |
138 | onClicked: { | 138 | onClicked: { |
139 | if(pwField.echoMode == TextInput.Password) { | 139 | if(pwField.echoMode == TextInput.Password) { |
140 | pwField.echoMode = TextInput.Normal; | 140 | pwField.echoMode = TextInput.Normal; |
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 { |
diff --git a/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml b/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml index f07fdb31..bd006c4c 100644 --- a/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml +++ b/accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.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 { |
@@ -97,7 +97,7 @@ Item { | |||
97 | } | 97 | } |
98 | 98 | ||
99 | Kube.Label { | 99 | Kube.Label { |
100 | text: "Password" | 100 | text: qsTr("Password") |
101 | Layout.alignment: Qt.AlignRight | 101 | Layout.alignment: Qt.AlignRight |
102 | } | 102 | } |
103 | RowLayout { | 103 | RowLayout { |
@@ -118,7 +118,7 @@ Item { | |||
118 | } | 118 | } |
119 | 119 | ||
120 | Controls.CheckBox { | 120 | Controls.CheckBox { |
121 | text: "Show Password" | 121 | text: qsTr("Show Password") |
122 | onClicked: { | 122 | onClicked: { |
123 | if(pwField.echoMode == TextInput.Password) { | 123 | if(pwField.echoMode == TextInput.Password) { |
124 | pwField.echoMode = TextInput.Normal; | 124 | pwField.echoMode = TextInput.Normal; |
diff --git a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml b/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml index 78244b41..925bddb4 100644 --- a/accounts/maildir/package/contents/ui/MaildirAccountSettings.qml +++ b/accounts/maildir/package/contents/ui/MaildirAccountSettings.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: "Path" | 73 | text: qsTr("Path") |
74 | Layout.alignment: Qt.AlignRight | 74 | Layout.alignment: Qt.AlignRight |
75 | } | 75 | } |
76 | RowLayout { | 76 | RowLayout { |