tweak locale
This commit is contained in:
parent
975e79fa3b
commit
7636536973
3 changed files with 18 additions and 16 deletions
|
@ -989,16 +989,18 @@ enableChartsForFederatedInstances: "リモートサーバーのチャートを
|
||||||
showClipButtonInNoteFooter: "ノートのアクションにクリップを追加"
|
showClipButtonInNoteFooter: "ノートのアクションにクリップを追加"
|
||||||
largeNoteReactions: "ノートのリアクションを大きく表示"
|
largeNoteReactions: "ノートのリアクションを大きく表示"
|
||||||
noteIdOrUrl: "ノートIDまたはURL"
|
noteIdOrUrl: "ノートIDまたはURL"
|
||||||
migration: "アカウントの引っ越し"
|
accountMigration: "アカウントの引っ越し"
|
||||||
moveTo: "このアカウントを新しいアカウントに引っ越す"
|
|
||||||
moveToLabel: "引っ越し先のアカウント:"
|
|
||||||
moveAccountDescription: "この操作は取り消せません。まずは引っ越し先のアカウントでこのアカウントに対しエイリアスを作成したことを確認してください。エイリアス作成後、引っ越し先のアカウントをこのように入力してください:@person@instance.com"
|
|
||||||
moveFrom: "別のアカウントからこのアカウントに引っ越す"
|
|
||||||
moveFromLabel: "引っ越し元のアカウント:"
|
|
||||||
moveFromDescription: "別のアカウントからこのアカウントにフォロワーを引き継いで引っ越したい場合、ここでエイリアスを作成しておく必要があります。必ず引っ越しを実行する前に作成してください!引っ越し元のアカウントをこのように入力してください:@person@instance.com"
|
|
||||||
migrationConfirm: "本当にこのアカウントを {account} に引っ越しますか?一度引っ越しを行うと取り消せず、二度とこのアカウントを元の状態で使用できなくなります。\nまた、引っ越し先のアカウントでエイリアスを作成したことを確認してください。"
|
|
||||||
accountMoved: "このユーザーは新しいアカウントに引っ越しました:"
|
accountMoved: "このユーザーは新しいアカウントに引っ越しました:"
|
||||||
|
|
||||||
|
_accountMigration:
|
||||||
|
moveTo: "このアカウントを新しいアカウントに引っ越す"
|
||||||
|
moveToLabel: "引っ越し先のアカウント:"
|
||||||
|
moveAccountDescription: "この操作は取り消せません。まずは引っ越し先のアカウントでこのアカウントに対しエイリアスを作成したことを確認してください。エイリアス作成後、引っ越し先のアカウントをこのように入力してください:@person@instance.com"
|
||||||
|
moveFrom: "別のアカウントからこのアカウントに引っ越す"
|
||||||
|
moveFromLabel: "引っ越し元のアカウント:"
|
||||||
|
moveFromDescription: "別のアカウントからこのアカウントにフォロワーを引き継いで引っ越したい場合、ここでエイリアスを作成しておく必要があります。必ず引っ越しを実行する前に作成してください!引っ越し元のアカウントをこのように入力してください:@person@instance.com"
|
||||||
|
migrationConfirm: "本当にこのアカウントを {account} に引っ越しますか?一度引っ越しを行うと取り消せず、二度とこのアカウントを元の状態で使用できなくなります。\nまた、引っ越し先のアカウントでエイリアスを作成したことを確認してください。"
|
||||||
|
|
||||||
_achievements:
|
_achievements:
|
||||||
earnedAt: "獲得日時"
|
earnedAt: "獲得日時"
|
||||||
_types:
|
_types:
|
||||||
|
|
|
@ -166,7 +166,7 @@ const menuDef = computed(() => [{
|
||||||
active: currentPage?.route.name === 'import-export',
|
active: currentPage?.route.name === 'import-export',
|
||||||
}, {
|
}, {
|
||||||
icon: 'ti ti-plane',
|
icon: 'ti ti-plane',
|
||||||
text: i18n.ts.migration,
|
text: i18n.ts.accountMigration,
|
||||||
to: '/settings/migration',
|
to: '/settings/migration',
|
||||||
active: currentPage?.route.name === 'migration',
|
active: currentPage?.route.name === 'migration',
|
||||||
}, {
|
}, {
|
||||||
|
|
|
@ -1,22 +1,22 @@
|
||||||
<template>
|
<template>
|
||||||
<div class="_gaps_m">
|
<div class="_gaps_m">
|
||||||
<FormSection first>
|
<FormSection first>
|
||||||
<template #label>{{ i18n.ts.moveTo }}</template>
|
<template #label>{{ i18n.ts._accountMigration.moveTo }}</template>
|
||||||
<MkInput v-model="moveToAccount" manual-save>
|
<MkInput v-model="moveToAccount" manual-save>
|
||||||
<template #prefix><i class="ti ti-plane-departure"></i></template>
|
<template #prefix><i class="ti ti-plane-departure"></i></template>
|
||||||
<template #label>{{ i18n.ts.moveToLabel }}</template>
|
<template #label>{{ i18n.ts._accountMigration.moveToLabel }}</template>
|
||||||
</MkInput>
|
</MkInput>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
<FormInfo warn>{{ i18n.ts.moveAccountDescription }}</FormInfo>
|
<FormInfo warn>{{ i18n.ts._accountMigration.moveAccountDescription }}</FormInfo>
|
||||||
|
|
||||||
<FormSection>
|
<FormSection>
|
||||||
<template #label>{{ i18n.ts.moveFrom }}</template>
|
<template #label>{{ i18n.ts._accountMigration.moveFrom }}</template>
|
||||||
<MkInput v-model="accountAlias" manual-save>
|
<MkInput v-model="accountAlias" manual-save>
|
||||||
<template #prefix><i class="ti ti-plane-arrival"></i></template>
|
<template #prefix><i class="ti ti-plane-arrival"></i></template>
|
||||||
<template #label>{{ i18n.ts.moveFromLabel }}</template>
|
<template #label>{{ i18n.ts._accountMigration.moveFromLabel }}</template>
|
||||||
</MkInput>
|
</MkInput>
|
||||||
</FormSection>
|
</FormSection>
|
||||||
<FormInfo warn>{{ i18n.ts.moveFromDescription }}</FormInfo>
|
<FormInfo warn>{{ i18n.ts._accountMigration.moveFromDescription }}</FormInfo>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ watch(moveToAccount, async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
definePageMetadata({
|
definePageMetadata({
|
||||||
title: i18n.ts.migration,
|
title: i18n.ts.accountMigration,
|
||||||
icon: 'ti ti-plane',
|
icon: 'ti ti-plane',
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
Loading…
Reference in a new issue