summaryrefslogtreecommitdiffstats
path: root/accounts/kolabnow
diff options
context:
space:
mode:
Diffstat (limited to 'accounts/kolabnow')
-rw-r--r--accounts/kolabnow/package/contents/ui/KolabnowAccountSettings.qml10
1 files changed, 5 insertions, 5 deletions
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;