diff options
Diffstat (limited to 'qt-mobile/qml/main.qml')
-rw-r--r-- | qt-mobile/qml/main.qml | 12 |
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) } |