Add config opts for email language

This commit is contained in:
Tusooa Zhu 2022-03-26 12:39:26 -04:00
parent a5e861cd01
commit d39de30221
No known key found for this signature in database
GPG key ID: 7B467EDE43A08224
5 changed files with 46 additions and 17 deletions

View file

@ -1,7 +1,7 @@
<template>
<div>
<label for="interface-language-switcher">
{{ $t('settings.interfaceLanguage') }}
{{ promptText }}
</label>
{{ ' ' }}
<Select
@ -28,8 +28,18 @@ export default {
Select
},
props: {
language: String,
setLanguage: Function
promptText: {
type: String,
required: true
},
language: {
type: String,
required: true
},
setLanguage: {
type: String,
required: true
}
},
computed: {
languages () {