From 426660025402e47e8de89b6e741fd372cbcac8fb Mon Sep 17 00:00:00 2001 From: Dirk Hohndel Date: Fri, 4 Dec 2015 19:23:10 -0800 Subject: 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 --- qt-mobile/qml/main.qml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'qt-mobile') 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) } -- cgit v1.2.3-70-g09d2