summaryrefslogtreecommitdiffstats
path: root/qt-ui/divelistview.cpp
diff options
context:
space:
mode:
authorGravatar willem ferguson <willemferguson@zoology.up.ac.za>2015-04-25 13:08:16 +0200
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-04-26 10:31:52 -0700
commita8656759bb6990af3f66dee868fac0ddec5dfa78 (patch)
tree25746ed0413368a0519aaee507d1e3460bedf9db /qt-ui/divelistview.cpp
parentac34413a35a15eec744de1e5970e07555b66a410 (diff)
downloadsubsurface-a8656759bb6990af3f66dee868fac0ddec5dfa78.tar.gz
Modify wording of dive list context menu
Dive context menu: After the addition of the item "Add image(s) from web" the item immediately above is "Add images". It is proper to specify now: "Add image(s) from file(s)" to make the distinction clear. I also change "Shift times" to "Shift dive times". Signed-off-by: willem ferguson <willemferguson@zoology.up.ac.za> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'qt-ui/divelistview.cpp')
-rw-r--r--qt-ui/divelistview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qt-ui/divelistview.cpp b/qt-ui/divelistview.cpp
index fda170c56..93454dda0 100644
--- a/qt-ui/divelistview.cpp
+++ b/qt-ui/divelistview.cpp
@@ -836,8 +836,8 @@ void DiveListView::contextMenuEvent(QContextMenuEvent *event)
popup.addAction(tr("Merge selected dives"), this, SLOT(mergeDives()));
if (amount_selected >= 1) {
popup.addAction(tr("Renumber dive(s)"), this, SLOT(renumberDives()));
- popup.addAction(tr("Shift times"), this, SLOT(shiftTimes()));
- popup.addAction(tr("Load images"), this, SLOT(loadImages()));
+ popup.addAction(tr("Shift dive times"), this, SLOT(shiftTimes()));
+ popup.addAction(tr("Load image(s) from file(s)"), this, SLOT(loadImages()));
popup.addAction(tr("Load image(s) from web"), this, SLOT(loadWebImages()));
}