diff --git a/locales/de.yml b/locales/de.yml index 4c6bd84e3..3d996bbbd 100644 --- a/locales/de.yml +++ b/locales/de.yml @@ -48,6 +48,8 @@ de: comment_post_notif_premod: 'Vielen Dank für Ihren Kommentar. Unsere Moderatoren werden ihn in Kürze bearbeiten.' comment_singular: Kommentar common: + copied: 'Kopiert' + notsupported: 'Nicht unterstützt' copy: Kopieren error: 'Ein Problem ist aufgetreten.' reaction: 'Reaktion' diff --git a/locales/en.yml b/locales/en.yml index 980521679..85c413a6f 100644 --- a/locales/en.yml +++ b/locales/en.yml @@ -49,6 +49,8 @@ en: comment_singular: Comment common: copy: Copy + copied: 'Copied' + notsupported: 'Not supported' error: 'An error has occurred.' reaction: reaction reactions: reactions diff --git a/plugins/talk-plugin-permalink/client/components/PermalinkButton.js b/plugins/talk-plugin-permalink/client/components/PermalinkButton.js index 415f4e346..cbc285f59 100644 --- a/plugins/talk-plugin-permalink/client/components/PermalinkButton.js +++ b/plugins/talk-plugin-permalink/client/components/PermalinkButton.js @@ -106,8 +106,8 @@ export default class PermalinkButton extends React.Component { ])} > {!copyFailure && !copySuccessful && t('common.copy')} - {copySuccessful && t('embedlink.copied')} - {copyFailure && 'Not supported'} + {copySuccessful && t('common.copied')} + {copyFailure && t('common.notsupported')} diff --git a/plugins/talk-plugin-sort-most-upvoted/client/translations.yml b/plugins/talk-plugin-sort-most-upvoted/client/translations.yml index 6a673a767..95f7d3689 100644 --- a/plugins/talk-plugin-sort-most-upvoted/client/translations.yml +++ b/plugins/talk-plugin-sort-most-upvoted/client/translations.yml @@ -1,6 +1,9 @@ en: talk-plugin-sort-most-upvoted: label: Most upvoted first +de: + talk-plugin-sort-most-upvoted: + label: Am besten bewertet es: talk-plugin-sort-oldest: label: Más votadas primero