diff options
author | Sebastian Kügler <sebas@kde.org> | 2015-11-07 03:40:56 +0100 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-07 09:04:35 -0800 |
commit | a0a3bf88708d4ca2c2ac746c586d6e151d73f58a (patch) | |
tree | b26e4d518add496a5045709c7ee30c2a9e5fb261 | |
parent | ff82d1cc150fc6ac70886ab2225eef6beb51cc38 (diff) | |
download | subsurface-a0a3bf88708d4ca2c2ac746c586d6e151d73f58a.tar.gz |
Improve labels in login dialog
We want short labels here in order to allow more horizontal space to be
taken by the inputs.
Signed-off-by: Sebastian Kügler <sebas@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r-- | qt-mobile/qml/Preferences.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/qt-mobile/qml/Preferences.qml b/qt-mobile/qml/Preferences.qml index 8b3ae2bd3..b199be739 100644 --- a/qt-mobile/qml/Preferences.qml +++ b/qt-mobile/qml/Preferences.qml @@ -27,7 +27,7 @@ Item { } Label { - text: "Email Address" + text: "Email" Layout.alignment: Qt.AlignRight } @@ -63,7 +63,8 @@ Item { } Label { - text: "Save Password locally" + text: "Remember" + Layout.alignment: Qt.AlignRight } CheckBox { |