change button to copy link

dbus-notify
Zlatin Balevsky 2022-08-04 17:54:51 +01:00
parent 31f615e615
commit 002709457b
No known key found for this signature in database
GPG Key ID: A72832072D525E41
2 changed files with 3 additions and 2 deletions

View File

@ -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

View File

@ -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)
}
}
}