mirror of
https://github.com/misskey-dev/misskey.git
synced 2024-12-27 06:00:21 +01:00
fix translation specifier
This commit is contained in:
parent
69a1dadcbb
commit
33851fbab6
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ async function move(): Promise<void> {
|
|||
const account = moveToAccount.value;
|
||||
const confirm = await os.confirm({
|
||||
type: 'warning',
|
||||
text: i18n.t('migrationConfirm', { account: account.toString() }),
|
||||
text: i18n.t('_accountMigration.migrationConfirm', { account: account.toString() }),
|
||||
});
|
||||
if (confirm.canceled) return;
|
||||
os.apiWithDialog('i/move', {
|
||||
|
|
Loading…
Reference in a new issue