mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
core: replace dive master by dive guide
In general, replace "dive master" by "dive guide". However, do not change written dive logs for now. On reading, accept both versions. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
parent
889827aadb
commit
9e0712d5dc
38 changed files with 141 additions and 133 deletions
|
|
@ -20,8 +20,8 @@ Item {
|
|||
property alias suitText: suitBox.editText
|
||||
property alias buddyIndex: buddyBox.currentIndex
|
||||
property alias buddyText: buddyBox.editText
|
||||
property alias divemasterIndex: divemasterBox.currentIndex
|
||||
property alias divemasterText: divemasterBox.editText
|
||||
property alias diveguideIndex: diveguideBox.currentIndex
|
||||
property alias diveguideText: diveguideBox.editText
|
||||
property alias tagText: txtTag.text
|
||||
property alias cylinderIndex0: cylinderBox0.currentIndex
|
||||
property alias cylinderIndex1: cylinderBox1.currentIndex
|
||||
|
|
@ -36,7 +36,7 @@ Item {
|
|||
property var endpressure: []
|
||||
property var startpressure: []
|
||||
property alias suitModel: suitBox.model
|
||||
property alias divemasterModel: divemasterBox.model
|
||||
property alias diveguideModel: diveguideBox.model
|
||||
property alias buddyModel: buddyBox.model
|
||||
property alias cylinderModel0: cylinderBox0.model
|
||||
property alias cylinderModel1: cylinderBox1.model
|
||||
|
|
@ -64,11 +64,11 @@ Item {
|
|||
detailsEdit.depthText = ""
|
||||
detailsEdit.airtempText = ""
|
||||
detailsEdit.watertempText = ""
|
||||
detailsEdit.divemasterText = ""
|
||||
detailsEdit.diveguideText = ""
|
||||
detailsEdit.buddyText = ""
|
||||
suitBox.currentIndex = -1
|
||||
buddyBox.currentIndex = -1
|
||||
divemasterBox.currentIndex = -1
|
||||
diveguideBox.currentIndex = -1
|
||||
cylinderBox0.currentIndex = -1
|
||||
cylinderBox1.currentIndex = -1
|
||||
cylinderBox2.currentIndex = -1
|
||||
|
|
@ -118,7 +118,7 @@ Item {
|
|||
// apply the changes to the dive_table
|
||||
manager.commitChanges(dive_id, detailsEdit.number, detailsEdit.dateText, locationBox.editText, detailsEdit.gpsText, detailsEdit.durationText,
|
||||
detailsEdit.depthText, detailsEdit.airtempText, detailsEdit.watertempText,
|
||||
suitBox.editText, buddyBox.editText, divemasterBox.editText, detailsEdit.tagText,
|
||||
suitBox.editText, buddyBox.editText, diveguideBox.editText, detailsEdit.tagText,
|
||||
detailsEdit.weightText, detailsEdit.notesText, startpressure,
|
||||
endpressure, usedGas, usedCyl,
|
||||
detailsEdit.rating,
|
||||
|
|
@ -296,13 +296,13 @@ Item {
|
|||
TemplateLabelSmall {
|
||||
Layout.preferredWidth: Kirigami.Units.gridUnit * 4
|
||||
horizontalAlignment: Text.AlignRight
|
||||
text: qsTr("Divemaster:")
|
||||
text: qsTr("Dive guide:")
|
||||
}
|
||||
TemplateEditComboBox {
|
||||
id: divemasterBox
|
||||
id: diveguideBox
|
||||
flickable: detailsEditFlickable
|
||||
model: diveDetailsListView.currentItem && diveDetailsListView.currentItem.modelData !== null ?
|
||||
manager.divemasterList : null
|
||||
manager.diveguideList : null
|
||||
}
|
||||
}
|
||||
RowLayout {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue