diff options
author | Lubomir I. Ivanov <neolit123@gmail.com> | 2018-03-14 19:02:36 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2018-03-15 23:27:18 +0200 |
commit | e1c81560b9a6c1208ba60621340ab02f0c3cc690 (patch) | |
tree | aa48996665d8649a0455266080dfc5ba67b91135 /map-widget/qml | |
parent | 64e2247aa719da2096ada77984f15a242171a089 (diff) | |
download | subsurface-e1c81560b9a6c1208ba60621340ab02f0c3cc690.tar.gz |
MapWidgetContextMenu.qml: improve the action text
The first 3 actions in the map widget context menu
are about the current map widget center and not about the
selected dive site / marker.
Avoid using the word "location" for these, use "coordinates"
for the second and third entry.
Suggested-by: Willem Ferguson <willemferguson@zoology.up.ac.za>
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'map-widget/qml')
-rw-r--r-- | map-widget/qml/MapWidgetContextMenu.qml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/map-widget/qml/MapWidgetContextMenu.qml b/map-widget/qml/MapWidgetContextMenu.qml index 44a8453b4..852eddd73 100644 --- a/map-widget/qml/MapWidgetContextMenu.qml +++ b/map-widget/qml/MapWidgetContextMenu.qml @@ -12,9 +12,9 @@ Item { "SELECT_VISIBLE_LOCATIONS": 3 } readonly property var menuItemData: [ - { idx: actions.OPEN_LOCATION_IN_GOOGLE_MAPS, itemText: qsTr("Open location in Google Maps") }, - { idx: actions.COPY_LOCATION_DECIMAL, itemText: qsTr("Copy location to clipboard (decimal)") }, - { idx: actions.COPY_LOCATION_SEXAGESIMAL, itemText: qsTr("Copy location to clipboard (sexagesimal)") }, + { idx: actions.OPEN_LOCATION_IN_GOOGLE_MAPS, itemText: qsTr("Open in Google Maps") }, + { idx: actions.COPY_LOCATION_DECIMAL, itemText: qsTr("Copy coordinates to clipboard (decimal)") }, + { idx: actions.COPY_LOCATION_SEXAGESIMAL, itemText: qsTr("Copy coordinates to clipboard (sexagesimal)") }, { idx: actions.SELECT_VISIBLE_LOCATIONS, itemText: qsTr("Select visible dive locations") } ] readonly property real itemTextPadding: 10.0 |