aplicadas correcciones

This commit is contained in:
2026-05-10 22:53:41 +02:00
parent 12af58d828
commit fa7901019f
42 changed files with 2708 additions and 76 deletions
@@ -596,6 +596,112 @@ class AppLocalizationsZh extends AppLocalizations {
@override
String get availableProfiles => 'Perfiles disponibles';
@override
String get scanThisCodeFromAnotherPhone => '用另一部手机扫描此代码';
@override
String get gameUsers => '游戏用户';
@override
String get selectedPlayers => '已选择的玩家';
@override
String get connectedPhones => '已连接的手机';
@override
String get selectedOnThisPhone => '已在此手机上选择';
@override
String get selectedByAnotherDevice => '已在另一台设备上选择';
@override
String get available => '可用';
@override
String get notAvailable => '不可用';
@override
String get release => '释放';
@override
String get select => '选择';
@override
String get delete => '删除';
@override
String get selectAtLeastThreeUsersToStart => 'Select at least 3 users to start.';
@override
String get hostPhoneMustSelectUser => 'The host phone must select at least one user.';
@override
String get roomNoLongerInLobby => 'The room is no longer in the lobby.';
@override
String get completeUserSelectionToStart => 'Complete user selection to start.';
@override
String get preparingSecureRoom => 'Preparing the secure room';
@override
String get searchingNearbyBluetoothGames => 'Searching nearby games over Bluetooth';
@override
String get tapToJoin => 'Tap to join';
@override
String get bluetoothLocationPermissionsRequired => 'Bluetooth and location permissions are required to search for games.';
@override
String get bluetoothLocationPermissionsShort => 'Bluetooth and location permissions are required';
@override
String get couldNotStartSearch => 'Could not start the search. Check Bluetooth and location.';
@override
String couldNotConnectToHost(String host) {
return 'Could not connect to $host';
}
@override
String get room => '房间';
@override
String get singleDeviceSubtitle => 'Game on this device';
@override
String get singleDeviceDescription => 'Ideal for playing together by passing the phone around. Fast, direct setup.';
@override
String get multiDeviceSubtitle => 'Each player on their phone';
@override
String get multiDeviceDescription => 'Create a premium room, share the QR code and manage users from the lobby.';
@override
String get singleDeviceGameLabel => 'Game on this device';
@override
String get multiDeviceGameLabel => 'Multi-device game';
@override
String get mainDeviceUser => 'Main device user';
@override
String get couldNotCreateRoom => 'Could not create the room. Check Bluetooth.';
@override
String cannotStartWithReason(String reason) {
return 'Cannot start: $reason';
}
@override
String get invalidRoom => 'invalid room';
@override
String get defaultPlayerName => '玩家';
}
/// The translations for Chinese, as used in Taiwan (`zh_TW`).
@@ -1063,4 +1169,109 @@ class AppLocalizationsZhTw extends AppLocalizationsZh {
@override
String get licenses => '授權條款';
@override
String get scanThisCodeFromAnotherPhone => '用另一部手机扫描此代码';
@override
String get gameUsers => '游戏用户';
@override
String get selectedPlayers => '已选择的玩家';
@override
String get connectedPhones => '已连接的手机';
@override
String get selectedOnThisPhone => '已在此手机上选择';
@override
String get selectedByAnotherDevice => '已在另一台设备上选择';
@override
String get available => '可用';
@override
String get notAvailable => '不可用';
@override
String get release => '释放';
@override
String get select => '选择';
@override
String get delete => '删除';
@override
String get selectAtLeastThreeUsersToStart => 'Select at least 3 users to start.';
@override
String get hostPhoneMustSelectUser => 'The host phone must select at least one user.';
@override
String get roomNoLongerInLobby => 'The room is no longer in the lobby.';
@override
String get completeUserSelectionToStart => 'Complete user selection to start.';
@override
String get preparingSecureRoom => 'Preparing the secure room';
@override
String get searchingNearbyBluetoothGames => 'Searching nearby games over Bluetooth';
@override
String get tapToJoin => 'Tap to join';
@override
String get bluetoothLocationPermissionsRequired => 'Bluetooth and location permissions are required to search for games.';
@override
String get bluetoothLocationPermissionsShort => 'Bluetooth and location permissions are required';
@override
String get couldNotStartSearch => 'Could not start the search. Check Bluetooth and location.';
@override
String couldNotConnectToHost(String host) {
return 'Could not connect to $host';
}
@override
String get room => '房间';
@override
String get singleDeviceSubtitle => 'Game on this device';
@override
String get singleDeviceDescription => 'Ideal for playing together by passing the phone around. Fast, direct setup.';
@override
String get multiDeviceSubtitle => 'Each player on their phone';
@override
String get multiDeviceDescription => 'Create a premium room, share the QR code and manage users from the lobby.';
@override
String get singleDeviceGameLabel => 'Game on this device';
@override
String get multiDeviceGameLabel => 'Multi-device game';
@override
String get mainDeviceUser => 'Main device user';
@override
String get couldNotCreateRoom => 'Could not create the room. Check Bluetooth.';
@override
String cannotStartWithReason(String reason) {
return 'Cannot start: $reason';
}
@override
String get invalidRoom => 'invalid room';
@override
String get defaultPlayerName => '玩家';
}