admin locales for UserSearch.vue

This commit is contained in:
ogerly 2021-12-28 12:56:44 +01:00
parent cb041b2816
commit ef2345e825
3 changed files with 30 additions and 12 deletions

View File

@ -1,4 +1,13 @@
{
"not_open_creations": "keine offene Schöpfungen",
"open_creations": "offene Schöpfungen"
"open_creations": "offene Schöpfungen",
"unregistered_emails":"Unregistrierte E-Mails",
"user_search":"User suche",
"e_mail":"E-Mail",
"firstname":"Vorname",
"lastname":"Nachname",
"open_creation":"offene Schöpfungen",
"details":"Details",
"mail":"Mail",
"transaction":"Transaktion"
}

View File

@ -1,4 +1,13 @@
{
"not_open_creations": "No open creations",
"open_creations": "Open creations"
"open_creations": "Open creations",
"unregistered_emails":"Unregistered e-mails",
"user_search":"User search",
"e_mail":"E-Mail",
"firstname":"Firstname",
"lastname":"Lastname",
"open_creation":"Open creations",
"details":"Details",
"mail":"Mail",
"transaction":"Transaction"
}

View File

@ -3,15 +3,15 @@
<div style="text-align: right">
<b-button block variant="danger" @click="unconfirmedRegisterMails">
<b-icon icon="envelope" variant="light"></b-icon>
Anzeigen aller nicht registrierten E-Mails.
{{ $t('unregistered_emails') }}
</b-button>
</div>
<label>Usersuche</label>
<label>{{ $t('user_search') }}</label>
<b-input
type="text"
v-model="criteria"
class="shadow p-3 mb-3 bg-white rounded"
placeholder="User suche"
:placeholder="$t('user_search')"
@input="getUsers"
></b-input>
@ -37,12 +37,12 @@ export default {
return {
showArrays: false,
fields: [
{ key: 'email', label: 'Email' },
{ key: 'firstName', label: 'Firstname' },
{ key: 'lastName', label: 'Lastname' },
{ key: 'email', label: this.$t('e_mail') },
{ key: 'firstName', label: this.$t('firstname') },
{ key: 'lastName', label: this.$t('lastname') },
{
key: 'creation',
label: 'Open creations',
label: this.$t('open_creation'),
formatter: (value, key, item) => {
return (
`
@ -65,9 +65,9 @@ export default {
)
},
},
{ key: 'show_details', label: 'Details' },
{ key: 'confirm_mail', label: 'Mail' },
{ key: 'transactions_list', label: 'Transaction' },
{ key: 'show_details', label: this.$t('details') },
{ key: 'confirm_mail', label: this.$t('mail') },
{ key: 'transactions_list', label: this.$t('transaction') },
],
searchResult: [],
massCreation: [],