diff --git a/locales/ja-JP.yml b/locales/ja-JP.yml index ecdbce177c..be9c4f259a 100644 --- a/locales/ja-JP.yml +++ b/locales/ja-JP.yml @@ -25,7 +25,7 @@ common: application-authorization: "アプリの連携" close: "閉じる" do-not-copy-paste: "ここにコードを入力したり張り付けたりしないでください。アカウントが不正利用される可能性があります。" - BSoD: + BSoD: fatal-error: ":( 致命的な問題が発生しました。" update-browser-os: "お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります。" error-code: "エラーコード" @@ -33,7 +33,7 @@ common: client-version: "クライアント バージョン" email-support: "問題が解決しない場合は、上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。" thanks: "Thank you for using Misskey." - + got-it: "わかった" customization-tips: title: "カスタマイズのヒント" diff --git a/src/client/app/init.ts b/src/client/app/init.ts index 905f9c6258..5bfb48778c 100644 --- a/src/client/app/init.ts +++ b/src/client/app/init.ts @@ -220,11 +220,11 @@ function panic(e) { + '
%i18n.common.BSoD.update-browser-os%
' + '%i18n.common.BSoD.error-code%: ${e.toString()}
` - + `ブラウザ バージョン: ${navigator.userAgent}
` - + `クライアント バージョン: ${version}
` + + `%i18n.common.BSoD.browser-version%: ${navigator.userAgent}
` + + `%i18n.common.BSoD.client-version%: ${version}
` + '問題が解決しない場合は、上記の情報をお書き添えの上 syuilotan@yahoo.co.jp までご連絡ください。
' - + 'Thank you for using Misskey.
' + + '%i18n.common.BSoD.email-support%
' + + '%i18n.common.BSoD.thanks%
' + ''; // TODO: Report the bug diff --git a/src/server/api/endpoints/i/read_all_unread_notes.ts b/src/server/api/endpoints/i/read_all_unread_notes.ts index fae98b9816..6a4f72ea29 100644 --- a/src/server/api/endpoints/i/read_all_unread_notes.ts +++ b/src/server/api/endpoints/i/read_all_unread_notes.ts @@ -4,7 +4,8 @@ import NoteUnread from '../../../../models/note-unread'; export const meta = { desc: { - 'ja-JP': '未読の投稿をすべて既読にします。' + 'ja-JP': '未読の投稿をすべて既読にします。', + 'en-US': 'Mark all messages as read.' }, requireCredential: true,