Compare commits

..

No commits in common. "0c28bfdb63e456a7dbffd1de3ac4fb87d1d2d4e8" and "c6e29f68825f9edf925a7b2e7044b9be8bd2439e" have entirely different histories.

3 changed files with 6 additions and 7 deletions

6
locales/index.d.ts vendored
View file

@ -4222,15 +4222,15 @@ export interface Locale extends ILocale {
*/ */
"thisPostMayBeAnnoyingIgnore": string; "thisPostMayBeAnnoyingIgnore": string;
/** /**
* * Cancel
*/ */
"thisPostIsMissingAltTextCancel": string; "thisPostIsMissingAltTextCancel": string;
/** /**
* 稿 * Post anyway
*/ */
"thisPostIsMissingAltTextIgnore": string; "thisPostIsMissingAltTextIgnore": string;
/** /**
* 稿 1 * One of the files attached to this post is missing alt text. Please ensure all the attachments have alt text.
*/ */
"thisPostIsMissingAltText": string; "thisPostIsMissingAltText": string;
/** /**

View file

@ -1051,9 +1051,9 @@ thisPostMayBeAnnoying: "この投稿は迷惑になる可能性があります
thisPostMayBeAnnoyingHome: "ホームに投稿" thisPostMayBeAnnoyingHome: "ホームに投稿"
thisPostMayBeAnnoyingCancel: "やめる" thisPostMayBeAnnoyingCancel: "やめる"
thisPostMayBeAnnoyingIgnore: "このまま投稿" thisPostMayBeAnnoyingIgnore: "このまま投稿"
thisPostIsMissingAltTextCancel: "やめる" thisPostIsMissingAltTextCancel: "Cancel"
thisPostIsMissingAltTextIgnore: "このまま投稿" thisPostIsMissingAltTextIgnore: "Post anyway"
thisPostIsMissingAltText: "この投稿に添付されたファイルの 1 つに代替テキストがありません。すべての添付ファイルに代替テキストが含まれていることを確認してください。" thisPostIsMissingAltText: "One of the files attached to this post is missing alt text. Please ensure all the attachments have alt text."
collapseRenotes: "見たことのあるブーストを省略して表示" collapseRenotes: "見たことのあるブーストを省略して表示"
collapseFiles: "ファイルを折りたたむ" collapseFiles: "ファイルを折りたたむ"
autoloadConversation: "返信に会話を読み込む" autoloadConversation: "返信に会話を読み込む"

View file

@ -765,7 +765,6 @@ async function post(ev?: MouseEvent) {
if (canceled) return; if (canceled) return;
if (result === 'cancel') return; if (result === 'cancel') return;
break;
} }
} }
} }