diff --git a/app/locales/de/messages.po b/app/locales/de/messages.po index 7b78c8747..bfbe9866d 100644 --- a/app/locales/de/messages.po +++ b/app/locales/de/messages.po @@ -1368,10 +1368,6 @@ msgstr "Filter anzeigen" msgid "login.chart.actions.unpublish" msgstr "Veröffentlichung aufheben" -#: app/login/components/profile-tables.tsx -msgid "login.chart.copy" -msgstr "Kopieren" - #: app/login/components/profile-tables.tsx msgid "login.chart.delete" msgstr "Löschen" @@ -1384,6 +1380,10 @@ msgstr "Möchten Sie diesen Entwurf wirklich löschen?" msgid "login.chart.delete.confirmation" msgstr "Sind Sie sicher, dass Sie diese Grafik löschen wollen?" +#: app/login/components/profile-tables.tsx +msgid "login.chart.duplicate" +msgstr "Duplizieren" + #: app/login/components/profile-tables.tsx #: app/pages/v/[chartId].tsx msgid "login.chart.edit" diff --git a/app/locales/en/messages.po b/app/locales/en/messages.po index f7b363bdd..c7a773c3e 100644 --- a/app/locales/en/messages.po +++ b/app/locales/en/messages.po @@ -1368,10 +1368,6 @@ msgstr "Show Filters" msgid "login.chart.actions.unpublish" msgstr "Unpublish" -#: app/login/components/profile-tables.tsx -msgid "login.chart.copy" -msgstr "Copy" - #: app/login/components/profile-tables.tsx msgid "login.chart.delete" msgstr "Delete" @@ -1384,6 +1380,10 @@ msgstr "Are you sure you want to delete this draft?" msgid "login.chart.delete.confirmation" msgstr "Are you sure you want to delete this chart?" +#: app/login/components/profile-tables.tsx +msgid "login.chart.duplicate" +msgstr "Duplicate" + #: app/login/components/profile-tables.tsx #: app/pages/v/[chartId].tsx msgid "login.chart.edit" diff --git a/app/locales/fr/messages.po b/app/locales/fr/messages.po index 344f620f1..1d8c8609b 100644 --- a/app/locales/fr/messages.po +++ b/app/locales/fr/messages.po @@ -1368,10 +1368,6 @@ msgstr "Afficher les filtres" msgid "login.chart.actions.unpublish" msgstr "Dépublier" -#: app/login/components/profile-tables.tsx -msgid "login.chart.copy" -msgstr "Copie" - #: app/login/components/profile-tables.tsx msgid "login.chart.delete" msgstr "Supprimer" @@ -1384,6 +1380,10 @@ msgstr "" msgid "login.chart.delete.confirmation" msgstr "Êtes-vous sûr de vouloir supprimer cette carte ?" +#: app/login/components/profile-tables.tsx +msgid "login.chart.duplicate" +msgstr "Dupliquer" + #: app/login/components/profile-tables.tsx #: app/pages/v/[chartId].tsx msgid "login.chart.edit" diff --git a/app/locales/it/messages.po b/app/locales/it/messages.po index 5cc8aa41a..aba34c41b 100644 --- a/app/locales/it/messages.po +++ b/app/locales/it/messages.po @@ -1368,10 +1368,6 @@ msgstr "Mostra i filtri" msgid "login.chart.actions.unpublish" msgstr "Annullare la pubblicazione" -#: app/login/components/profile-tables.tsx -msgid "login.chart.copy" -msgstr "Copia" - #: app/login/components/profile-tables.tsx msgid "login.chart.delete" msgstr "Cancellare" @@ -1384,6 +1380,10 @@ msgstr "" msgid "login.chart.delete.confirmation" msgstr "Sei sicuro di voler cancellare questo grafico?" +#: app/login/components/profile-tables.tsx +msgid "login.chart.duplicate" +msgstr "Duplicare" + #: app/login/components/profile-tables.tsx #: app/pages/v/[chartId].tsx msgid "login.chart.edit" diff --git a/app/login/components/profile-tables.tsx b/app/login/components/profile-tables.tsx index ca88c57d9..c2605f11c 100644 --- a/app/login/components/profile-tables.tsx +++ b/app/login/components/profile-tables.tsx @@ -214,7 +214,7 @@ const ProfileVisualizationsRow = (props: { { type: "link", href: `/${locale}/create/new?copy=${config.key}`, - label: t({ id: "login.chart.copy", message: "Copy" }), + label: t({ id: "login.chart.duplicate", message: "Duplicate" }), iconName: "copy", }, { @@ -224,12 +224,6 @@ const ProfileVisualizationsRow = (props: { iconName: "edit", priority: !isPublished ? 0 : undefined, }, - { - type: "link", - href: publishLink, - label: t({ id: "login.chart.share", message: "Share" }), - iconName: "linkExternal", - }, isPublished ? { type: "button",