From a8656759bb6990af3f66dee868fac0ddec5dfa78 Mon Sep 17 00:00:00 2001 From: willem ferguson Date: Sat, 25 Apr 2015 13:08:16 +0200 Subject: [PATCH] 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 Signed-off-by: Dirk Hohndel --- qt-ui/divelistview.cpp | 4 ++-- 1 file 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())); }