diff options
author | Henrik Brautaset Aronsen <subsurface@henrik.synth.no> | 2013-05-24 09:28:47 +0200 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2013-05-24 06:15:28 -0700 |
commit | 6fa670e612a31f698f56d1bbb98959342894a188 (patch) | |
tree | 60bef291e20eed7b57239da9c90a42181f49ea61 /qt-ui | |
parent | 46171036f12e36488da1db39b2b534f8d33a721f (diff) | |
download | subsurface-6fa670e612a31f698f56d1bbb98959342894a188.tar.gz |
Improve wording on buttons when editing a dive
Use the more familiar Save/Undo instead of OK/reset
Signed-off-by: Henrik Brautaset Aronsen <subsurface@henrik.synth.no>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui')
-rw-r--r-- | qt-ui/maintab.cpp | 2 | ||||
-rw-r--r-- | qt-ui/maintab.ui | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/qt-ui/maintab.cpp b/qt-ui/maintab.cpp index 65b636961..4710c048a 100644 --- a/qt-ui/maintab.cpp +++ b/qt-ui/maintab.cpp @@ -315,7 +315,7 @@ void MainTab::on_editAccept_clicked(bool edit) mainWindow()->dive_list()->setEnabled(!edit); if (edit) { - ui->diveNotesMessage->setText(tr("This dive is being edited. click on finish / reset when ready.")); + ui->diveNotesMessage->setText(tr("This dive is being edited. Select Save or Undo when ready.")); ui->diveNotesMessage->animatedShow(); notesBackup.buddy = ui->buddy->text(); notesBackup.suit = ui->suit->text(); diff --git a/qt-ui/maintab.ui b/qt-ui/maintab.ui index 0784980eb..24ca69946 100644 --- a/qt-ui/maintab.ui +++ b/qt-ui/maintab.ui @@ -122,14 +122,14 @@ <item row="10" column="1"> <widget class="QPushButton" name="editReset"> <property name="text"> - <string>reset</string> + <string>Undo</string> </property> </widget> </item> <item row="10" column="0"> <widget class="QPushButton" name="editAccept"> <property name="text"> - <string>OK</string> + <string>Save</string> </property> <property name="checkable"> <bool>true</bool> |