diff --git a/webapp/locales/de.json b/webapp/locales/de.json index b7965062b..cb1b60db1 100644 --- a/webapp/locales/de.json +++ b/webapp/locales/de.json @@ -226,6 +226,19 @@ "success": "Konto erfolgreich gelöscht!", "pleaseConfirm": "Zerstörerische Aktion! Gib {confirm} ein, um zu bestätigen." }, + "embeds": { + "name": "Drittanbieter", + "info-description": "Wenn du zustimmst werden in den Beiträgen aus der folgenden Liste an Providern Fremdcode von anderen Anbietern (Drittanbietern) in Form von eingebundenen Videos, Bilder oder Text automatisch eingebunden werden.", + "description": "Du hast zugestimmt das in den Beiträgen aus der folgenden Liste an Providern Fremdcode von anderen Anbietern (Drittanbietern) in Form von eingebundenen Videos, Bilder oder Text automatisch eingebunden werden.", + "statustext": "Momentan ist das automatische einbinden:", + "statuschange": "Einstellung ändern", + "false": "Abgestellt", + "true": "Zugelassen", + "button-tofalse": "Abstellen", + "button-totrue": "dauerhaft zulassen", + "third-party-false": "Es wird kein Service von Drittanbietern automatisch eingebunden.", + "third-party-true": "Das einbinden der Services von Drittanbietern ist dauerhaft zugelassen und gespeichert für komende Sitzungen." + }, "organizations": { "name": "Meine Organisationen" }, @@ -343,19 +356,6 @@ "submitted": "Kommentar Gesendet", "updated": "Änderungen gespeichert" }, - "allowEmbeds": { - "name": "Drittanbieter", - "info-description": "Wenn du zustimmst werden in den Beiträgen aus der folgenden Liste an Providern Fremdcode von anderen Anbietern (Drittanbietern) in Form von eingebundenen Videos, Bilder oder Text automatisch eingebunden werden.", - "description": "Du hast zugestimmt das in den Beiträgen aus der folgenden Liste an Providern Fremdcode von anderen Anbietern (Drittanbietern) in Form von eingebundenen Videos, Bilder oder Text automatisch eingebunden werden.", - "statustext": "Momentan ist das automatische einbinden:", - "statuschange": "Einstellung ändern", - "false": "Abgestellt", - "true": "Zugelassen", - "button-tofalse": "Abstellen", - "button-totrue": "dauerhaft zulassen", - "third-party-false": "Es wird kein Service von Drittanbietern automatisch eingebunden.", - "third-party-true": "Das einbinden der Services von Drittanbietern ist dauerhaft zugelassen und gespeichert für komende Sitzungen." - }, "edited": "bearbeitet" }, "comment": { diff --git a/webapp/locales/en.json b/webapp/locales/en.json index 162f1a0f0..af416c2c9 100644 --- a/webapp/locales/en.json +++ b/webapp/locales/en.json @@ -227,6 +227,19 @@ "success": "Account successfully deleted!", "pleaseConfirm": "Destructive action! Type {confirm} to confirm" }, + "embeds": { + "name": "Third party providers", + "info-description": "If you agree, the posts from the following list of providers will automatically include third-party code from other providers (third parties) in the form of embedded videos, images, or text.", + "description": "You have agreed that in the contributions from the following list of providers, foreign code from other providers (third parties) in the form of embedded videos, images or text automatically are embedded.", + "statustext": "At the moment this is automatic embedding:", + "statuschange": "Change setting", + "false": "Turned off", + "true": "Admitted", + "button-tofalse": "turn-off", + "button-totrue": "allow permanently", + "third-party-false": "It automatically integrates no third-party providers' service.", + "third-party-true": "The inclusion of third-party services is permanently allowed and stored for future sessions." + }, "organizations": { "name": "My Organizations" }, @@ -344,19 +357,6 @@ "submitted": "Comment Submitted", "updated": "Changes Saved" }, - "allowEmbeds": { - "name": "Third party providers", - "info-description": "If you agree, the posts from the following list of providers will automatically include third-party code from other providers (third parties) in the form of embedded videos, images, or text.", - "description": "You have agreed that in the contributions from the following list of providers, foreign code from other providers (third parties) in the form of embedded videos, images or text automatically are embedded.", - "statustext": "At the moment this is automatic embedding:", - "statuschange": "Change setting", - "false": "Turned off", - "true": "Admitted", - "button-tofalse": "turn-off", - "button-totrue": "allow permanently", - "third-party-false": "It automatically integrates no third-party providers' service.", - "third-party-true": "The inclusion of third-party services is permanently allowed and stored for future sessions." - }, "edited": "edited" }, "comment": { diff --git a/webapp/pages/settings.vue b/webapp/pages/settings.vue index a7604ea5f..2d8ba7237 100644 --- a/webapp/pages/settings.vue +++ b/webapp/pages/settings.vue @@ -40,8 +40,8 @@ export default { path: `/settings/blocked-users`, }, { - name: this.$t('post.allowEmbeds.name'), - path: `/settings/allow-embeds`, + name: this.$t('settings.embeds.name'), + path: `/settings/embeds`, }, { name: this.$t('settings.deleteUserAccount.name'), diff --git a/webapp/pages/settings/allow-embeds.vue b/webapp/pages/settings/embeds.vue similarity index 74% rename from webapp/pages/settings/allow-embeds.vue rename to webapp/pages/settings/embeds.vue index c76a50422..f9e1abfdb 100644 --- a/webapp/pages/settings/allow-embeds.vue +++ b/webapp/pages/settings/embeds.vue @@ -1,6 +1,6 @@