aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-04 19:23:10 -0800
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-12-04 19:51:20 -0800
commit426660025402e47e8de89b6e741fd372cbcac8fb (patch)
tree23a9a287aa72a18b4c12066f58a5ac4defd5cfe1
parenta600253e628108950166cb85762eb9f75f2313c6 (diff)
downloadsubsurface-426660025402e47e8de89b6e741fd372cbcac8fb.tar.gz
QML-UI: use consistent capitalization
Throughout Subsurface we try to only capitalize the first word of every menu or window text (unless there are other reasons to capitalize the word, of course). Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-mobile/qml/main.qml12
1 files changed, 6 insertions, 6 deletions
diff --git a/qt-mobile/qml/main.qml b/qt-mobile/qml/main.qml
index fc237c877..c9c2e487e 100644
--- a/qt-mobile/qml/main.qml
+++ b/qt-mobile/qml/main.qml
@@ -39,21 +39,21 @@ MobileComponents.ApplicationWindow {
},
Action {
- text: "Load Dives"
+ text: "Load dives from cloud"
onTriggered: {
manager.loadDives();
}
},
Action {
- text: "Download Dives"
+ text: "Download dives from dive computer"
onTriggered: {
stackView.push(downloadDivesWindow)
}
},
Action {
- text: "Add Dive"
+ text: "Add dive"
onTriggered: {
manager.addDive();
stackView.push(detailsWindow)
@@ -61,7 +61,7 @@ MobileComponents.ApplicationWindow {
},
Action {
- text: "Save Changes"
+ text: "Save changes"
onTriggered: {
manager.saveChanges();
}
@@ -100,14 +100,14 @@ MobileComponents.ApplicationWindow {
},
Action {
- text: "View Log"
+ text: "View log"
onTriggered: {
stackView.push(logWindow)
}
},
Action {
- text: "Theme Information"
+ text: "Theme information"
onTriggered: {
stackView.push(themetest)
}