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>
This commit is contained in:
Dirk Hohndel 2015-12-04 19:23:10 -08:00
parent a600253e62
commit 4266600254

View file

@ -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)
}