aboutsummaryrefslogtreecommitdiff
path: root/src/components/registration
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/registration')
-rw-r--r--src/components/registration/registration.js14
-rw-r--r--src/components/registration/registration.vue12
2 files changed, 2 insertions, 24 deletions
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
@@ -163,18 +163,6 @@
</div>
<div
- class="form-group"
- :class="{ 'form-group--error': $v.user.language.$error }"
- >
- <interface-language-switcher
- for="email-language"
- :prompt-text="$t('registration.email_language')"
- :language="$v.user.language.$model"
- :set-language="val => $v.user.language.$model = val"
- />
- </div>
-
- <div
v-if="accountApprovalRequired"
class="form-group"
>