diff --git a/gui/griffon-app/i18n/messages.properties b/gui/griffon-app/i18n/messages.properties index 13fe103e..3ea8d731 100644 --- a/gui/griffon-app/i18n/messages.properties +++ b/gui/griffon-app/i18n/messages.properties @@ -808,6 +808,7 @@ TOOLTIP_COLLECTIONS_DELETE=Delete the selected collection TOOLTIP_COLLECTIONS_VIEW_COMMENT_COLLECTION=View the description of the selected collection TOOLTIP_COLLECTIONS_SHOW_HITS=Show search hits of the selected collection TOOLTIP_COLLECTIONS_COPY_HASH=Copy the hash of the selected collection to clipboard +TOOLTIP_COLLECTIONS_COPY_LINK=Copy link to the selected collection to clipboard TOOLTIP_COLLECTIONS_VIEW_COMMENT_FILE=View the comment about the selected file ### Tooltips for the Feeds tab diff --git a/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy b/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy index b520eb34..89760423 100644 --- a/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy +++ b/gui/griffon-app/views/com/muwire/gui/MainFrameView.groovy @@ -514,8 +514,8 @@ class MainFrameView { enabled : bind {model.viewCollectionCommentButtonEnabled}, viewCollectionCommentAction) button(text : trans("COLLECTION_SHOW_HITS"), toolTipText: trans("TOOLTIP_COLLECTIONS_SHOW_HITS"), enabled : bind {model.deleteCollectionButtonEnabled}, showCollectionToolAction) - button(text : trans("COPY_HASH_TO_CLIPBOARD"), toolTipText: trans("TOOLTIP_COLLECTIONS_COPY_HASH"), - enabled : bind {model.deleteCollectionButtonEnabled}, copyCollectionHashAction) + button(text : trans("COPY_LINK_TO_CLIPBOARD"), toolTipText: trans("TOOLTIP_COLLECTIONS_COPY_LINK"), + enabled : bind {model.deleteCollectionButtonEnabled}, copyCollectionLinkAction) } } }