chore: added translation for copy memo link (#942)

This commit is contained in:
Jasper Platenburg
2023-01-13 14:22:20 +01:00
committed by GitHub
parent 40d25f7dca
commit c167c21e4e

View File

@ -99,7 +99,7 @@ const ShareMemoDialog: React.FC<Props> = (props: Props) => {
const handleCopyLinkBtnClick = () => { const handleCopyLinkBtnClick = () => {
copy(`${window.location.origin}/m/${memo.id}`); copy(`${window.location.origin}/m/${memo.id}`);
toastHelper.success("Succeed to copy memo link to clipboard."); toastHelper.success(t("message.succeed-copy-link"));
}; };
const memoVisibilityOptionSelectorItems = VISIBILITY_SELECTOR_ITEMS.map((item) => { const memoVisibilityOptionSelectorItems = VISIBILITY_SELECTOR_ITEMS.map((item) => {