mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
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:
parent
a600253e62
commit
4266600254
1 changed files with 6 additions and 6 deletions
|
@ -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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue