- {{ $t('post.allowEmbeds.description') }}
+ {{ $t('settings.embeds.description') }}
-
{{ $t('post.allowEmbeds.info-description') }}
+
{{ $t('settings.embeds.info-description') }}
@@ -54,7 +54,7 @@ import { allowEmbedIframesMutation } from '~/graphql/User.js'
export default {
head() {
return {
- title: this.$t('post.allowEmbeds.name'),
+ title: this.$t('settings.embeds.name'),
}
},
computed: {
@@ -64,8 +64,8 @@ export default {
},
data() {
return {
- allowEmbeds_h3: this.$t('post.allowEmbeds.false'),
- allowEmbeds_desc: this.$t('post.allowEmbeds.third-party-false'),
+ allowEmbeds_h3: this.$t('settings.embeds.false'),
+ allowEmbeds_desc: this.$t('settings.embeds.third-party-false'),
disabled: null,
providers: [],
}
@@ -81,13 +81,13 @@ export default {
setCurrentUser: 'auth/SET_USER',
}),
toFalse() {
- this.allowEmbeds_h3 = this.$t('post.allowEmbeds.false')
- this.allowEmbeds_desc = this.$t('post.allowEmbeds.third-party-false')
+ this.allowEmbeds_h3 = this.$t('settings.embeds.false')
+ this.allowEmbeds_desc = this.$t('settings.embeds.third-party-false')
this.submit()
},
toTrue() {
- this.allowEmbeds_h3 = this.$t('post.allowEmbeds.true')
- this.allowEmbeds_desc = this.$t('post.allowEmbeds.third-party-true')
+ this.allowEmbeds_h3 = this.$t('settings.embeds.true')
+ this.allowEmbeds_desc = this.$t('settings.embeds.third-party-true')
this.submit()
},
async submit() {