From 7d5ee1a87f90133bab35f08e8f6b15c89c2e1c07 Mon Sep 17 00:00:00 2001
From: Greemty <52284320+Greemty@users.noreply.github.com>
Date: Wed, 5 Jul 2023 18:41:41 +0200
Subject: [PATCH] =?UTF-8?q?=F0=9F=8C=90=20replace=20"public=20link"=20by?=
=?UTF-8?q?=20"link"=20(#129)=20(#133)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
* 🌐 replace "public link" by "link"
---
tdrive/frontend/public/locales/en.json | 4 ++--
tdrive/frontend/public/locales/fr.json | 4 ++--
tdrive/frontend/public/locales/ru.json | 2 +-
.../app/views/client/body/drive/components/public-icon.tsx | 4 ++--
4 files changed, 7 insertions(+), 7 deletions(-)
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 ;
};