diff options
author | Robert C. Helling <helling@atdotde.de> | 2017-01-11 10:29:59 +0100 |
---|---|---|
committer | Subsurface <dirk@subsurface-divelog.org> | 2017-01-12 14:06:54 -0800 |
commit | f3cf9525de6a6e969c8a0baf5364c3be345a5e8e (patch) | |
tree | 583d8281945df757db334f5f2ab78a820f14360a /desktop-widgets | |
parent | db17adfb286efbe7caa284a091947e91b80bfcb1 (diff) | |
download | subsurface-f3cf9525de6a6e969c8a0baf5364c3be345a5e8e.tar.gz |
Images from web currently only works for single pictures
so we should not suggest otherwise by plural form.
Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'desktop-widgets')
-rw-r--r-- | desktop-widgets/divelistview.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop-widgets/divelistview.cpp b/desktop-widgets/divelistview.cpp index 34c021679..b6dfe1315 100644 --- a/desktop-widgets/divelistview.cpp +++ b/desktop-widgets/divelistview.cpp @@ -894,7 +894,7 @@ void DiveListView::contextMenuEvent(QContextMenuEvent *event) popup.addAction(tr("Shift dive times"), this, SLOT(shiftTimes())); popup.addAction(tr("Split selected dives"), this, SLOT(splitDives())); popup.addAction(tr("Load image(s) from file(s)"), this, SLOT(loadImages())); - popup.addAction(tr("Load image(s) from web"), this, SLOT(loadWebImages())); + popup.addAction(tr("Load image from web"), this, SLOT(loadWebImages())); } // "collapse all" really closes all trips, |