Compare commits

...

2 commits

Author SHA1 Message Date
KevinWh0
0c28bfdb63 Added Japanese Translations 2024-02-17 13:31:03 +01:00
KevinWh0
2024030ebb Added break so it doesnt prompt you per image 2024-02-17 12:55:27 +01:00
3 changed files with 7 additions and 6 deletions

6
locales/index.d.ts vendored
View file

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

View file

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

View file

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