diff --git a/tdrive/frontend/public/locales/en.json b/tdrive/frontend/public/locales/en.json index acd07711..d687175b 100644 --- a/tdrive/frontend/public/locales/en.json +++ b/tdrive/frontend/public/locales/en.json @@ -288,8 +288,8 @@ "components.item_context_menu.manage_access": "Manage access", "components.item_context_menu.manage_access_to": "Manage access to", "components.item_context_menu.share": "Share", - "components.item_context_menu.copy_link": "Copy public link", - "components.item_context_menu.copy_link.success": "Public link copied to clipboard", + "components.item_context_menu.copy_link": "Copy link", + "components.item_context_menu.copy_link.success": "Link copied to clipboard", "components.item_context_menu.versions": "Versions", "components.item_context_menu.move": "Move", "components.item_context_menu.move.modal_header": "Move", diff --git a/tdrive/frontend/public/locales/fr.json b/tdrive/frontend/public/locales/fr.json index 02c3c9f8..d11f96b7 100644 --- a/tdrive/frontend/public/locales/fr.json +++ b/tdrive/frontend/public/locales/fr.json @@ -288,8 +288,8 @@ "components.item_context_menu.manage_access": "Gérer l'accès", "components.item_context_menu.manage_access_to": "Gérer l'accès à", "components.item_context_menu.share": "Partager", - "components.item_context_menu.copy_link": "Copier le lien public", - "components.item_context_menu.copy_link.success": "Lien public copié dans le presse-papiers", + "components.item_context_menu.copy_link": "Copier le lien", + "components.item_context_menu.copy_link.success": "Lien copié dans le presse-papiers", "components.item_context_menu.versions": "Versions", "components.item_context_menu.move": "Déplacer", "components.item_context_menu.move.modal_header": "Déplacer", diff --git a/tdrive/frontend/public/locales/ru.json b/tdrive/frontend/public/locales/ru.json index 007b3ffc..1f538de1 100644 --- a/tdrive/frontend/public/locales/ru.json +++ b/tdrive/frontend/public/locales/ru.json @@ -288,7 +288,7 @@ "components.item_context_menu.manage_access": "Управлять доступом", "components.item_context_menu.manage_access_to": "Управлять доступом", "components.item_context_menu.share": "Поделиться", - "components.item_context_menu.copy_link": "Скопировать публичную ссылку", + "components.item_context_menu.copy_link": "Скопировать ссылку", "components.item_context_menu.copy_link.success": "Ссылка скопирована в буфер обмена", "components.item_context_menu.versions": "История изменений", "components.item_context_menu.move": "Переместить", diff --git a/tdrive/frontend/src/app/views/client/body/drive/components/public-icon.tsx b/tdrive/frontend/src/app/views/client/body/drive/components/public-icon.tsx index 96a53722..9b49e95d 100644 --- a/tdrive/frontend/src/app/views/client/body/drive/components/public-icon.tsx +++ b/tdrive/frontend/src/app/views/client/body/drive/components/public-icon.tsx @@ -1,5 +1,5 @@ -import { CloudIcon } from '@heroicons/react/solid'; +import { LinkIcon } from '@heroicons/react/solid'; export const PublicIcon = ({ className }: { className?: string }) => { - return ; + return ; };