mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Mark strings in qml files for translation
I did this semi-automatically: I used the script from the previous patch and then did some manual corrections. This marks only title: and text: tags, there might be others Signed-off-by: Robert C. Helling <helling@atdotde.de> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
70e3ec9e90
commit
502be2a0f1
13 changed files with 118 additions and 118 deletions
|
|
@ -30,7 +30,7 @@ Kirigami.Page {
|
|||
property alias gpsCheckbox: detailsEdit.gpsCheckbox
|
||||
property int updateCurrentIdx: manager.updateSelectedDive
|
||||
|
||||
title: diveDetailsListView.currentItem ? diveDetailsListView.currentItem.modelData.dive.location : "Dive details"
|
||||
title: diveDetailsListView.currentItem ? diveDetailsListView.currentItem.modelData.dive.location : qsTr("Dive details")
|
||||
state: "view"
|
||||
leftPadding: 0
|
||||
topPadding: 0
|
||||
|
|
@ -64,7 +64,7 @@ Kirigami.Page {
|
|||
]
|
||||
|
||||
property QtObject deleteAction: Action {
|
||||
text: "Delete dive"
|
||||
text: qsTr("Delete dive")
|
||||
iconName: "trash-empty"
|
||||
onTriggered: {
|
||||
contextDrawer.close()
|
||||
|
|
@ -81,7 +81,7 @@ Kirigami.Page {
|
|||
}
|
||||
|
||||
property QtObject mapAction: Action {
|
||||
text: "Show on map"
|
||||
text: qsTr("Show on map")
|
||||
iconName: "gps"
|
||||
onTriggered: {
|
||||
showMap(diveDetailsListView.currentItem.modelData.dive.gps)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue