1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-05 14:46:03 +02:00
This commit is contained in:
syuilo
2020-12-26 10:47:36 +09:00
parent 9d81d06853
commit 5a8cc7851b
200 changed files with 1562 additions and 1533 deletions

View File

@@ -2,12 +2,12 @@
<FormBase>
<FormGroup>
<FormInput v-model:value="emailAddress" type="email">
{{ $t('emailAddress') }}
<template #desc v-if="$i.email && !$i.emailVerified">{{ $t('verificationEmailSent') }}</template>
<template #desc v-else-if="emailAddress === $i.email && $i.emailVerified">{{ $t('emailVerified') }}</template>
{{ $ts.emailAddress }}
<template #desc v-if="$i.email && !$i.emailVerified">{{ $ts.verificationEmailSent }}</template>
<template #desc v-else-if="emailAddress === $i.email && $i.emailVerified">{{ $ts.emailVerified }}</template>
</FormInput>
</FormGroup>
<FormButton @click="save" primary>{{ $t('save') }}</FormButton>
<FormButton @click="save" primary>{{ $ts.save }}</FormButton>
</FormBase>
</template>
@@ -34,7 +34,7 @@ export default defineComponent({
data() {
return {
INFO: {
title: this.$t('emailAddress'),
title: this.$ts.emailAddress,
icon: faEnvelope
},
emailAddress: null,
@@ -54,7 +54,7 @@ export default defineComponent({
methods: {
save() {
os.dialog({
title: this.$t('password'),
title: this.$ts.password,
input: {
type: 'password'
}