diff --git a/CHANGELOG.md b/CHANGELOG.md index 799322571..9157bd1cc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Publish Page improvements to prevent accidental overwrites of existing claims _community pr!_ ([#4416](https://github.com/lbryio/lbry-desktop/pull/4416)) - Option to remove abandoned claims from Blocked Channels page _community pr!_ ([#4433](https://github.com/lbryio/lbry-desktop/pull/4433)) - New channel create/edit page ([#4445](https://github.com/lbryio/lbry-desktop/pull/4445)) +- Add dialog to copy various types of links for a claim _community pr!_ ([#4474](https://github.com/lbryio/lbry-desktop/pull/4474)) ### Changed diff --git a/static/app-strings.json b/static/app-strings.json index 66a367130..0e9be7b46 100644 --- a/static/app-strings.json +++ b/static/app-strings.json @@ -1291,5 +1291,12 @@ "Awesome! You just followed your first first channel.": "Awesome! You just followed your first first channel.", "After submitting, it will take a few minutes for your changes to be live for everyone.": "After submitting, it will take a few minutes for your changes to be live for everyone.", "Anything": "Anything", - "Paid": "Paid" + "Paid": "Paid", + "Start at": "Start at", + "Download Link": "Download Link", + "Links": "Links", + "LBRY URL": "LBRY URL", + "LBRY link copied": "LBRY link copied", + "LBRY URL copied": "LBRY URL copied", + "Download link copied": "Download link copied" } diff --git a/ui/component/fileActions/view.jsx b/ui/component/fileActions/view.jsx index e9577b341..887aad0e6 100644 --- a/ui/component/fileActions/view.jsx +++ b/ui/component/fileActions/view.jsx @@ -108,6 +108,12 @@ function FileActions(props: Props) { onClick={() => openModal(MODALS.CONFIRM_FILE_REMOVE, { uri })} /> )} +