Cambio de icono y traducciones

This commit is contained in:
2026-05-11 18:05:13 +02:00
parent 4bf8a01a20
commit 112a8a6142
58 changed files with 996 additions and 147 deletions

View File

@@ -726,6 +726,26 @@ class AppLocalizationsZh extends AppLocalizations {
@override
String get automaticLanguage => '自动';
@override
String get noSavedGames => '还没有保存的游戏。';
@override
String get errorNoGame => '错误:没有游戏';
@override
String get disconnectedPlayersWarning => '有玩家的设备已断开连接。';
@override
String get assumeOnThisPhone => '在此手机上接管';
@override
String get noResult => '无结果';
@override
String historyGameSummary(int players, int impostors, int rounds, String word, String category) {
return '$players 名玩家 • $impostors 名冒牌者 • $rounds 回合\n$word$category';
}
}
/// The translations for Chinese, as used in Taiwan (`zh_TW`).
@@ -1322,4 +1342,24 @@ class AppLocalizationsZhTw extends AppLocalizationsZh {
@override
String get automaticLanguage => '自動';
@override
String get noSavedGames => '尚未有已儲存的遊戲。';
@override
String get errorNoGame => '錯誤:沒有遊戲';
@override
String get disconnectedPlayersWarning => '有玩家的裝置已中斷連線。';
@override
String get assumeOnThisPhone => '在此手機上接管';
@override
String get noResult => '無結果';
@override
String historyGameSummary(int players, int impostors, int rounds, String word, String category) {
return '$players 位玩家 • $impostors 位冒牌者 • $rounds 回合\n$word$category';
}
}