diff options
| author | syuilo <Syuilotan@yahoo.co.jp> | 2023-04-08 16:06:08 +0900 |
|---|---|---|
| committer | syuilo <Syuilotan@yahoo.co.jp> | 2023-04-08 16:06:08 +0900 |
| commit | 7636536973dfc390aa97d60f52771a9b0fba558d (patch) | |
| tree | 519862e30c9e6a6f5826825ab600cdd442cf295f /packages/frontend/src | |
| parent | fix type (diff) | |
| download | misskey-7636536973dfc390aa97d60f52771a9b0fba558d.tar.gz misskey-7636536973dfc390aa97d60f52771a9b0fba558d.tar.bz2 misskey-7636536973dfc390aa97d60f52771a9b0fba558d.zip | |
tweak locale
Diffstat (limited to 'packages/frontend/src')
| -rw-r--r-- | packages/frontend/src/pages/settings/index.vue | 2 | ||||
| -rw-r--r-- | packages/frontend/src/pages/settings/migration.vue | 14 |
2 files changed, 8 insertions, 8 deletions
diff --git a/packages/frontend/src/pages/settings/index.vue b/packages/frontend/src/pages/settings/index.vue index 9824fa8c15..7e9ec3de93 100644 --- a/packages/frontend/src/pages/settings/index.vue +++ b/packages/frontend/src/pages/settings/index.vue @@ -166,7 +166,7 @@ const menuDef = computed(() => [{ active: currentPage?.route.name === 'import-export', }, { icon: 'ti ti-plane', - text: i18n.ts.migration, + text: i18n.ts.accountMigration, to: '/settings/migration', active: currentPage?.route.name === 'migration', }, { diff --git a/packages/frontend/src/pages/settings/migration.vue b/packages/frontend/src/pages/settings/migration.vue index 1fd3d64fd5..2ef8af7481 100644 --- a/packages/frontend/src/pages/settings/migration.vue +++ b/packages/frontend/src/pages/settings/migration.vue @@ -1,22 +1,22 @@ <template> <div class="_gaps_m"> <FormSection first> - <template #label>{{ i18n.ts.moveTo }}</template> + <template #label>{{ i18n.ts._accountMigration.moveTo }}</template> <MkInput v-model="moveToAccount" manual-save> <template #prefix><i class="ti ti-plane-departure"></i></template> - <template #label>{{ i18n.ts.moveToLabel }}</template> + <template #label>{{ i18n.ts._accountMigration.moveToLabel }}</template> </MkInput> </FormSection> - <FormInfo warn>{{ i18n.ts.moveAccountDescription }}</FormInfo> + <FormInfo warn>{{ i18n.ts._accountMigration.moveAccountDescription }}</FormInfo> <FormSection> - <template #label>{{ i18n.ts.moveFrom }}</template> + <template #label>{{ i18n.ts._accountMigration.moveFrom }}</template> <MkInput v-model="accountAlias" manual-save> <template #prefix><i class="ti ti-plane-arrival"></i></template> - <template #label>{{ i18n.ts.moveFromLabel }}</template> + <template #label>{{ i18n.ts._accountMigration.moveFromLabel }}</template> </MkInput> </FormSection> - <FormInfo warn>{{ i18n.ts.moveFromDescription }}</FormInfo> + <FormInfo warn>{{ i18n.ts._accountMigration.moveFromDescription }}</FormInfo> </div> </template> @@ -60,7 +60,7 @@ watch(moveToAccount, async () => { }); definePageMetadata({ - title: i18n.ts.migration, + title: i18n.ts.accountMigration, icon: 'ti ti-plane', }); </script> |