From 069cf3fa87c0d29803275fe66864d5e439cad309 Mon Sep 17 00:00:00 2001 From: HJ <30-hj@users.noreply.git.pleroma.social> Date: Sun, 22 May 2022 16:38:09 +0000 Subject: Revert "Merge branch 'from/develop/tusooa/lang-opts' into 'develop'" This reverts merge request !1494 --- src/components/registration/registration.js | 14 ++------------ src/components/registration/registration.vue | 12 ------------ 2 files changed, 2 insertions(+), 24 deletions(-) (limited to 'src/components/registration') diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js index 6eb316d0..a3ef0f04 100644 --- a/src/components/registration/registration.js +++ b/src/components/registration/registration.js @@ -1,8 +1,6 @@ import useVuelidate from '@vuelidate/core' import { required, requiredIf, sameAs } from '@vuelidate/validators' import { mapActions, mapState } from 'vuex' -import InterfaceLanguageSwitcher from '../interface_language_switcher/interface_language_switcher.vue' -import localeService from '../../services/locale/locale.service.js' const registration = { setup () { return { v$: useVuelidate() } }, @@ -13,14 +11,10 @@ const registration = { username: '', password: '', confirm: '', - reason: '', - language: '' + reason: '' }, captcha: {} }), - components: { - InterfaceLanguageSwitcher - }, validations () { return { user: { @@ -32,8 +26,7 @@ const registration = { required, sameAs: sameAs(this.user.password) }, - reason: { required: requiredIf(() => this.accountApprovalRequired) }, - language: {} + reason: { required: requiredIf(() => this.accountApprovalRequired) } } } }, @@ -71,9 +64,6 @@ const registration = { this.user.captcha_solution = this.captcha.solution this.user.captcha_token = this.captcha.token this.user.captcha_answer_data = this.captcha.answer_data - if (this.user.language) { - this.user.language = localeService.internalToBackendLocale(this.user.language) - } this.v$.$touch() diff --git a/src/components/registration/registration.vue b/src/components/registration/registration.vue index 6fa70a09..3d409109 100644 --- a/src/components/registration/registration.vue +++ b/src/components/registration/registration.vue @@ -162,18 +162,6 @@ -