From c2663529c1edf7ff28a5bd7d1f5775b0f38ef7c9 Mon Sep 17 00:00:00 2001 From: "Dr. Gutfuck LLC" <40531868+gutfuckllc@users.noreply.github.com> Date: Fri, 19 Oct 2018 22:57:23 -0400 Subject: Localized BSoD messages. (#2953) * Added VSCode workspace files to : .gitignore * Localized Blue Screen of Death: locales/ja-JP.yml Localized Blue Screen of Death: src/client/app/init.ts --- src/client/app/init.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/client/app/init.ts b/src/client/app/init.ts index 17d8f64c6a..905f9c6258 100644 --- a/src/client/app/init.ts +++ b/src/client/app/init.ts @@ -216,10 +216,10 @@ function panic(e) { document.documentElement.style.background = '#1269e2'; document.body.innerHTML = '
' - + '

:( 致命的な問題が発生しました。

' - + '

お使いのブラウザ(またはOS)のバージョンを更新すると解決する可能性があります。

' + + '

%i18n.common.BSoD.fatal-error%

' + + '

%i18n.common.BSoD.update-browser-os%

' + '
' - + `

エラーコード: ${e.toString()}

` + + `

%i18n.common.BSoD.error-code%: ${e.toString()}

` + `

ブラウザ バージョン: ${navigator.userAgent}

` + `

クライアント バージョン: ${version}

` + '
' -- cgit v1.2.3-freya