enhance(frontend): アカウント削除前ダイアログに再ログインすると削除が中断される旨の表記を追加 (MisskeyIO#726)
This commit is contained in:
parent
00fd684a7b
commit
2fe5bb0bb3
@ -909,6 +909,7 @@ followingVisibility: "Visibility of follows"
|
|||||||
followersVisibility: "Visibility of followers"
|
followersVisibility: "Visibility of followers"
|
||||||
continueThread: "View thread continuation"
|
continueThread: "View thread continuation"
|
||||||
deleteAccountConfirm: "This will irreversibly delete your account. Proceed?"
|
deleteAccountConfirm: "This will irreversibly delete your account. Proceed?"
|
||||||
|
deleteAccountConfirmAndWarn: "This will irreversibly delete your account.\nPlease note that re-logging in after a deletion request will interrupt the deletion of your account.\nProceed?"
|
||||||
incorrectPassword: "Incorrect password."
|
incorrectPassword: "Incorrect password."
|
||||||
voteConfirm: "Confirm your vote for \"{choice}\"?"
|
voteConfirm: "Confirm your vote for \"{choice}\"?"
|
||||||
hide: "Hide"
|
hide: "Hide"
|
||||||
@ -1813,6 +1814,7 @@ _accountDelete:
|
|||||||
requestAccountDelete: "Request account deletion"
|
requestAccountDelete: "Request account deletion"
|
||||||
started: "Deletion has been started."
|
started: "Deletion has been started."
|
||||||
inProgress: "Deletion is currently in progress"
|
inProgress: "Deletion is currently in progress"
|
||||||
|
dontLogin: "We recommend that you do not log in to your account, as this will interrupt the deletion process."
|
||||||
_ad:
|
_ad:
|
||||||
back: "Back"
|
back: "Back"
|
||||||
reduceFrequencyOfThisAd: "Show this ad less"
|
reduceFrequencyOfThisAd: "Show this ad less"
|
||||||
|
11
locales/index.d.ts
vendored
11
locales/index.d.ts
vendored
@ -3660,6 +3660,13 @@ export interface Locale extends ILocale {
|
|||||||
* アカウントが削除されます。よろしいですか?
|
* アカウントが削除されます。よろしいですか?
|
||||||
*/
|
*/
|
||||||
"deleteAccountConfirm": string;
|
"deleteAccountConfirm": string;
|
||||||
|
/**
|
||||||
|
* アカウントが削除されます。
|
||||||
|
* 削除リクエスト後に再ログインすると
|
||||||
|
* アカウントの削除が中断されてしまいますのでご注意ください。
|
||||||
|
* よろしいですか?
|
||||||
|
*/
|
||||||
|
"deleteAccountConfirmAndWarn": string;
|
||||||
/**
|
/**
|
||||||
* パスワードが間違っています。
|
* パスワードが間違っています。
|
||||||
*/
|
*/
|
||||||
@ -7081,6 +7088,10 @@ export interface Locale extends ILocale {
|
|||||||
* 削除が進行中
|
* 削除が進行中
|
||||||
*/
|
*/
|
||||||
"inProgress": string;
|
"inProgress": string;
|
||||||
|
/**
|
||||||
|
* 削除が中断されてしまいますので、アカウントにログインしないことをおすすめします。
|
||||||
|
*/
|
||||||
|
"dontLogin": string;
|
||||||
};
|
};
|
||||||
"_ad": {
|
"_ad": {
|
||||||
/**
|
/**
|
||||||
|
@ -911,6 +911,7 @@ followingVisibility: "フォローの公開範囲"
|
|||||||
followersVisibility: "フォロワーの公開範囲"
|
followersVisibility: "フォロワーの公開範囲"
|
||||||
continueThread: "さらにスレッドを見る"
|
continueThread: "さらにスレッドを見る"
|
||||||
deleteAccountConfirm: "アカウントが削除されます。よろしいですか?"
|
deleteAccountConfirm: "アカウントが削除されます。よろしいですか?"
|
||||||
|
deleteAccountConfirmAndWarn: "アカウントが削除されます。\n削除リクエスト後に再ログインすると\nアカウントの削除が中断されてしまいますのでご注意ください。\nよろしいですか?"
|
||||||
incorrectPassword: "パスワードが間違っています。"
|
incorrectPassword: "パスワードが間違っています。"
|
||||||
voteConfirm: "「{choice}」に投票しますか?"
|
voteConfirm: "「{choice}」に投票しますか?"
|
||||||
hide: "隠す"
|
hide: "隠す"
|
||||||
@ -1833,6 +1834,7 @@ _accountDelete:
|
|||||||
requestAccountDelete: "アカウント削除をリクエスト"
|
requestAccountDelete: "アカウント削除をリクエスト"
|
||||||
started: "削除処理が開始されました。"
|
started: "削除処理が開始されました。"
|
||||||
inProgress: "削除が進行中"
|
inProgress: "削除が進行中"
|
||||||
|
dontLogin: "削除が中断されてしまいますので、アカウントにログインしないことをおすすめします。"
|
||||||
|
|
||||||
_ad:
|
_ad:
|
||||||
back: "戻る"
|
back: "戻る"
|
||||||
|
@ -114,7 +114,9 @@ async function deleteAccount() {
|
|||||||
{
|
{
|
||||||
const { canceled } = await os.confirm({
|
const { canceled } = await os.confirm({
|
||||||
type: 'warning',
|
type: 'warning',
|
||||||
text: i18n.ts.deleteAccountConfirm,
|
text: i18n.ts.deleteAccountConfirmAndWarn,
|
||||||
|
okWaitInitiate: 'dialog',
|
||||||
|
okWaitDuration: 5,
|
||||||
});
|
});
|
||||||
if (canceled) return;
|
if (canceled) return;
|
||||||
}
|
}
|
||||||
@ -129,6 +131,7 @@ async function deleteAccount() {
|
|||||||
|
|
||||||
await os.alert({
|
await os.alert({
|
||||||
title: i18n.ts._accountDelete.started,
|
title: i18n.ts._accountDelete.started,
|
||||||
|
text: i18n.ts._accountDelete.dontLogin,
|
||||||
});
|
});
|
||||||
|
|
||||||
await signout();
|
await signout();
|
||||||
|
Loading…
Reference in New Issue
Block a user