1
0

enhance(sw): オフライン表示のデザインを改善 (#13052)

* enhance(sw): オフライン表示のデザインを改善

* Update Changelog

* fix

* fix

* fix

* 言語が取得できなかった場合のフォールバックを追加

* (change) translation key
This commit is contained in:
かっこかり
2024-01-21 11:50:05 +09:00
committed by GitHub
parent a17251d913
commit 4de77784c9
4 changed files with 30 additions and 4 deletions
+10
View File
@@ -9554,6 +9554,16 @@ export interface Locale extends ILocale {
*/
"lookingForPlayer": string;
};
"_offlineScreen": {
/**
* オフライン - サーバーに接続できません
*/
"title": string;
/**
* サーバーに接続できません
*/
"header": string;
};
}
declare const locales: {
[lang: string]: Locale;
+4
View File
@@ -2544,3 +2544,7 @@ _reversi:
timeLimitForEachTurn: "1ターンの時間制限"
freeMatch: "フリーマッチ"
lookingForPlayer: "対戦相手を探しています"
_offlineScreen:
title: "オフライン - サーバーに接続できません"
header: "サーバーに接続できません"