aplicadas correcciones
This commit is contained in:
@@ -1232,6 +1232,74 @@ abstract class AppLocalizations {
|
||||
/// In es, this message translates to:
|
||||
/// **'Perfiles disponibles'**
|
||||
String get availableProfiles;
|
||||
|
||||
String get scanThisCodeFromAnotherPhone;
|
||||
|
||||
String get gameUsers;
|
||||
|
||||
String get selectedPlayers;
|
||||
|
||||
String get connectedPhones;
|
||||
|
||||
String get selectedOnThisPhone;
|
||||
|
||||
String get selectedByAnotherDevice;
|
||||
|
||||
String get available;
|
||||
|
||||
String get notAvailable;
|
||||
|
||||
String get release;
|
||||
|
||||
String get select;
|
||||
|
||||
String get delete;
|
||||
|
||||
String get selectAtLeastThreeUsersToStart;
|
||||
|
||||
String get hostPhoneMustSelectUser;
|
||||
|
||||
String get roomNoLongerInLobby;
|
||||
|
||||
String get completeUserSelectionToStart;
|
||||
|
||||
String get preparingSecureRoom;
|
||||
|
||||
String get searchingNearbyBluetoothGames;
|
||||
|
||||
String get tapToJoin;
|
||||
|
||||
String get bluetoothLocationPermissionsRequired;
|
||||
|
||||
String get bluetoothLocationPermissionsShort;
|
||||
|
||||
String get couldNotStartSearch;
|
||||
|
||||
String couldNotConnectToHost(String host);
|
||||
|
||||
String get room;
|
||||
|
||||
String get singleDeviceSubtitle;
|
||||
|
||||
String get singleDeviceDescription;
|
||||
|
||||
String get multiDeviceSubtitle;
|
||||
|
||||
String get multiDeviceDescription;
|
||||
|
||||
String get singleDeviceGameLabel;
|
||||
|
||||
String get multiDeviceGameLabel;
|
||||
|
||||
String get mainDeviceUser;
|
||||
|
||||
String get couldNotCreateRoom;
|
||||
|
||||
String cannotStartWithReason(String reason);
|
||||
|
||||
String get invalidRoom;
|
||||
|
||||
String get defaultPlayerName;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate
|
||||
|
||||
@@ -597,4 +597,110 @@ class AppLocalizationsAr 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 => 'لاعب';
|
||||
}
|
||||
|
||||
@@ -600,4 +600,110 @@ class AppLocalizationsCa extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Escaneja aquest codi des d’un altre mòbil';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Usuaris de la partida';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Jugadors seleccionats';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Mòbils connectats';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Seleccionat en aquest mòbil';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Seleccionat en un altre dispositiu';
|
||||
|
||||
@override
|
||||
String get available => 'Disponible';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'No disponible';
|
||||
|
||||
@override
|
||||
String get release => 'Allibera';
|
||||
|
||||
@override
|
||||
String get select => 'Selecciona';
|
||||
|
||||
@override
|
||||
String get delete => 'Elimina';
|
||||
|
||||
@override
|
||||
String get selectAtLeastThreeUsersToStart => 'Selecciona almenys 3 usuaris per començar.';
|
||||
|
||||
@override
|
||||
String get hostPhoneMustSelectUser => 'El mòbil servidor ha de seleccionar almenys un usuari.';
|
||||
|
||||
@override
|
||||
String get roomNoLongerInLobby => 'La sala ja no és al lobby.';
|
||||
|
||||
@override
|
||||
String get completeUserSelectionToStart => 'Completa la selecció d’usuaris per començar.';
|
||||
|
||||
@override
|
||||
String get preparingSecureRoom => 'Preparant la sala segura';
|
||||
|
||||
@override
|
||||
String get searchingNearbyBluetoothGames => 'Cercant partides properes per Bluetooth';
|
||||
|
||||
@override
|
||||
String get tapToJoin => 'Toca per unir-t’hi';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsRequired => 'Calen permisos de Bluetooth i ubicació per cercar partides.';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsShort => 'Calen permisos de Bluetooth i ubicació';
|
||||
|
||||
@override
|
||||
String get couldNotStartSearch => 'No s’ha pogut iniciar la cerca. Verifica el Bluetooth i la ubicació.';
|
||||
|
||||
@override
|
||||
String couldNotConnectToHost(String host) {
|
||||
return 'No s’ha pogut connectar a $host';
|
||||
}
|
||||
|
||||
@override
|
||||
String get room => 'Sala';
|
||||
|
||||
@override
|
||||
String get singleDeviceSubtitle => 'Partida en aquest dispositiu';
|
||||
|
||||
@override
|
||||
String get singleDeviceDescription => 'Ideal per jugar tots junts passant el mòbil. Configuració ràpida i directa.';
|
||||
|
||||
@override
|
||||
String get multiDeviceSubtitle => 'Cada jugador al seu mòbil';
|
||||
|
||||
@override
|
||||
String get multiDeviceDescription => 'Crea una sala premium, comparteix el QR i gestiona usuaris des del lobby.';
|
||||
|
||||
@override
|
||||
String get singleDeviceGameLabel => 'Partida en aquest dispositiu';
|
||||
|
||||
@override
|
||||
String get multiDeviceGameLabel => 'Partida multidispositiu';
|
||||
|
||||
@override
|
||||
String get mainDeviceUser => 'Usuari principal del dispositiu';
|
||||
|
||||
@override
|
||||
String get couldNotCreateRoom => 'No s’ha pogut crear la sala. Verifica el Bluetooth.';
|
||||
|
||||
@override
|
||||
String cannotStartWithReason(String reason) {
|
||||
return 'No es pot iniciar: $reason';
|
||||
}
|
||||
|
||||
@override
|
||||
String get invalidRoom => 'sala invàlida';
|
||||
|
||||
@override
|
||||
String get defaultPlayerName => 'Jugador';
|
||||
}
|
||||
|
||||
@@ -603,4 +603,110 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Scanne diesen Code mit einem anderen Handy';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Spielbenutzer';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Ausgewählte Spieler';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Verbundene Handys';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Auf diesem Handy ausgewählt';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Auf einem anderen Gerät ausgewählt';
|
||||
|
||||
@override
|
||||
String get available => 'Verfügbar';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Nicht verfügbar';
|
||||
|
||||
@override
|
||||
String get release => 'Freigeben';
|
||||
|
||||
@override
|
||||
String get select => 'Auswählen';
|
||||
|
||||
@override
|
||||
String get delete => 'Löschen';
|
||||
|
||||
@override
|
||||
String get selectAtLeastThreeUsersToStart => 'Wähle mindestens 3 Benutzer aus, um zu starten.';
|
||||
|
||||
@override
|
||||
String get hostPhoneMustSelectUser => 'Das Host-Handy muss mindestens einen Benutzer auswählen.';
|
||||
|
||||
@override
|
||||
String get roomNoLongerInLobby => 'Der Raum ist nicht mehr in der Lobby.';
|
||||
|
||||
@override
|
||||
String get completeUserSelectionToStart => 'Schließe die Benutzerauswahl ab, um zu starten.';
|
||||
|
||||
@override
|
||||
String get preparingSecureRoom => 'Sicherer Raum wird vorbereitet';
|
||||
|
||||
@override
|
||||
String get searchingNearbyBluetoothGames => 'Suche nach Spielen in der Nähe per Bluetooth';
|
||||
|
||||
@override
|
||||
String get tapToJoin => 'Tippen zum Beitreten';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsRequired => 'Bluetooth- und Standortberechtigungen sind erforderlich, um Spiele zu suchen.';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsShort => 'Bluetooth- und Standortberechtigungen sind erforderlich';
|
||||
|
||||
@override
|
||||
String get couldNotStartSearch => 'Suche konnte nicht gestartet werden. Prüfe Bluetooth und Standort.';
|
||||
|
||||
@override
|
||||
String couldNotConnectToHost(String host) {
|
||||
return 'Verbindung zu $host nicht möglich';
|
||||
}
|
||||
|
||||
@override
|
||||
String get room => 'Raum';
|
||||
|
||||
@override
|
||||
String get singleDeviceSubtitle => 'Spiel auf diesem Gerät';
|
||||
|
||||
@override
|
||||
String get singleDeviceDescription => 'Ideal, um gemeinsam zu spielen, indem das Handy weitergegeben wird. Schnelle, direkte Einrichtung.';
|
||||
|
||||
@override
|
||||
String get multiDeviceSubtitle => 'Jeder Spieler auf seinem Handy';
|
||||
|
||||
@override
|
||||
String get multiDeviceDescription => 'Erstelle einen Premium-Raum, teile den QR-Code und verwalte Benutzer in der Lobby.';
|
||||
|
||||
@override
|
||||
String get singleDeviceGameLabel => 'Spiel auf diesem Gerät';
|
||||
|
||||
@override
|
||||
String get multiDeviceGameLabel => 'Mehrgeräte-Spiel';
|
||||
|
||||
@override
|
||||
String get mainDeviceUser => 'Hauptbenutzer des Geräts';
|
||||
|
||||
@override
|
||||
String get couldNotCreateRoom => 'Raum konnte nicht erstellt werden. Prüfe Bluetooth.';
|
||||
|
||||
@override
|
||||
String cannotStartWithReason(String reason) {
|
||||
return 'Start nicht möglich: $reason';
|
||||
}
|
||||
|
||||
@override
|
||||
String get invalidRoom => 'ungültiger Raum';
|
||||
|
||||
@override
|
||||
String get defaultPlayerName => 'Spieler';
|
||||
}
|
||||
|
||||
@@ -597,4 +597,110 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Available profiles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Scan this code from another phone';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Game users';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Selected players';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Connected phones';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Selected on this phone';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Selected on another device';
|
||||
|
||||
@override
|
||||
String get available => 'Available';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Not available';
|
||||
|
||||
@override
|
||||
String get release => 'Release';
|
||||
|
||||
@override
|
||||
String get select => 'Select';
|
||||
|
||||
@override
|
||||
String get delete => '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 => '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 => 'Player';
|
||||
}
|
||||
|
||||
@@ -599,4 +599,110 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Escanea este código desde otro móvil';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Usuarios de la partida';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Jugadores seleccionados';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Móviles conectados';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Seleccionado en este móvil';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Seleccionado en otro dispositivo';
|
||||
|
||||
@override
|
||||
String get available => 'Disponible';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'No disponible';
|
||||
|
||||
@override
|
||||
String get release => 'Liberar';
|
||||
|
||||
@override
|
||||
String get select => 'Seleccionar';
|
||||
|
||||
@override
|
||||
String get delete => 'Eliminar';
|
||||
|
||||
@override
|
||||
String get selectAtLeastThreeUsersToStart => 'Selecciona al menos 3 usuarios para iniciar.';
|
||||
|
||||
@override
|
||||
String get hostPhoneMustSelectUser => 'El móvil servidor debe seleccionar al menos un usuario.';
|
||||
|
||||
@override
|
||||
String get roomNoLongerInLobby => 'La sala ya no está en el lobby.';
|
||||
|
||||
@override
|
||||
String get completeUserSelectionToStart => 'Completa la selección de usuarios para iniciar.';
|
||||
|
||||
@override
|
||||
String get preparingSecureRoom => 'Preparando la sala segura';
|
||||
|
||||
@override
|
||||
String get searchingNearbyBluetoothGames => 'Buscando partidas cercanas por Bluetooth';
|
||||
|
||||
@override
|
||||
String get tapToJoin => 'Toca para unirte';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsRequired => 'Se necesitan permisos de Bluetooth y ubicación para buscar partidas.';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsShort => 'Se necesitan permisos de Bluetooth y ubicación';
|
||||
|
||||
@override
|
||||
String get couldNotStartSearch => 'No se pudo iniciar la búsqueda. Verifica Bluetooth y ubicación.';
|
||||
|
||||
@override
|
||||
String couldNotConnectToHost(String host) {
|
||||
return 'No se pudo conectar a $host';
|
||||
}
|
||||
|
||||
@override
|
||||
String get room => 'Sala';
|
||||
|
||||
@override
|
||||
String get singleDeviceSubtitle => 'Partida en este dispositivo';
|
||||
|
||||
@override
|
||||
String get singleDeviceDescription => 'Ideal para jugar todos juntos pasando el móvil. Configuración rápida y directa.';
|
||||
|
||||
@override
|
||||
String get multiDeviceSubtitle => 'Cada jugador en su móvil';
|
||||
|
||||
@override
|
||||
String get multiDeviceDescription => 'Crea una sala premium, comparte el QR y gestiona usuarios desde el lobby.';
|
||||
|
||||
@override
|
||||
String get singleDeviceGameLabel => 'Partida en este dispositivo';
|
||||
|
||||
@override
|
||||
String get multiDeviceGameLabel => 'Partida multidispositivo';
|
||||
|
||||
@override
|
||||
String get mainDeviceUser => 'Usuario principal del dispositivo';
|
||||
|
||||
@override
|
||||
String get couldNotCreateRoom => 'No se pudo crear la sala. Verifica Bluetooth.';
|
||||
|
||||
@override
|
||||
String cannotStartWithReason(String reason) {
|
||||
return 'No se puede iniciar: $reason';
|
||||
}
|
||||
|
||||
@override
|
||||
String get invalidRoom => 'sala inválida';
|
||||
|
||||
@override
|
||||
String get defaultPlayerName => 'Jugador';
|
||||
}
|
||||
|
||||
@@ -602,4 +602,110 @@ class AppLocalizationsEu extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Eskaneatu kode hau beste mugikor batetik';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Partidako erabiltzaileak';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Hautatutako jokalariak';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Konektatutako mugikorrak';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Mugikor honetan hautatuta';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Beste gailu batean hautatuta';
|
||||
|
||||
@override
|
||||
String get available => 'Eskuragarri';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Ez dago erabilgarri';
|
||||
|
||||
@override
|
||||
String get release => 'Askatu';
|
||||
|
||||
@override
|
||||
String get select => 'Hautatu';
|
||||
|
||||
@override
|
||||
String get delete => 'Ezabatu';
|
||||
|
||||
@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 => 'Gela';
|
||||
|
||||
@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 => 'Jokalaria';
|
||||
}
|
||||
|
||||
@@ -600,4 +600,110 @@ class AppLocalizationsFr extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Scanne ce code depuis un autre mobile';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Utilisateurs de la partie';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Joueurs sélectionnés';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Mobiles connectés';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Sélectionné sur ce mobile';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Sélectionné sur un autre appareil';
|
||||
|
||||
@override
|
||||
String get available => 'Disponible';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Indisponible';
|
||||
|
||||
@override
|
||||
String get release => 'Libérer';
|
||||
|
||||
@override
|
||||
String get select => 'Sélectionner';
|
||||
|
||||
@override
|
||||
String get delete => 'Supprimer';
|
||||
|
||||
@override
|
||||
String get selectAtLeastThreeUsersToStart => 'Sélectionne au moins 3 utilisateurs pour commencer.';
|
||||
|
||||
@override
|
||||
String get hostPhoneMustSelectUser => 'Le mobile hôte doit sélectionner au moins un utilisateur.';
|
||||
|
||||
@override
|
||||
String get roomNoLongerInLobby => 'Le salon n’est plus dans le lobby.';
|
||||
|
||||
@override
|
||||
String get completeUserSelectionToStart => 'Termine la sélection des utilisateurs pour commencer.';
|
||||
|
||||
@override
|
||||
String get preparingSecureRoom => 'Préparation du salon sécurisé';
|
||||
|
||||
@override
|
||||
String get searchingNearbyBluetoothGames => 'Recherche de parties proches par Bluetooth';
|
||||
|
||||
@override
|
||||
String get tapToJoin => 'Touche pour rejoindre';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsRequired => 'Les autorisations Bluetooth et localisation sont nécessaires pour rechercher des parties.';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsShort => 'Autorisations Bluetooth et localisation nécessaires';
|
||||
|
||||
@override
|
||||
String get couldNotStartSearch => 'Impossible de lancer la recherche. Vérifie le Bluetooth et la localisation.';
|
||||
|
||||
@override
|
||||
String couldNotConnectToHost(String host) {
|
||||
return 'Impossible de se connecter à $host';
|
||||
}
|
||||
|
||||
@override
|
||||
String get room => 'Salon';
|
||||
|
||||
@override
|
||||
String get singleDeviceSubtitle => 'Partie sur cet appareil';
|
||||
|
||||
@override
|
||||
String get singleDeviceDescription => 'Idéal pour jouer ensemble en se passant le mobile. Configuration rapide et directe.';
|
||||
|
||||
@override
|
||||
String get multiDeviceSubtitle => 'Chaque joueur sur son mobile';
|
||||
|
||||
@override
|
||||
String get multiDeviceDescription => 'Crée un salon premium, partage le QR et gère les utilisateurs depuis le lobby.';
|
||||
|
||||
@override
|
||||
String get singleDeviceGameLabel => 'Partie sur cet appareil';
|
||||
|
||||
@override
|
||||
String get multiDeviceGameLabel => 'Partie multiappareil';
|
||||
|
||||
@override
|
||||
String get mainDeviceUser => 'Utilisateur principal de l’appareil';
|
||||
|
||||
@override
|
||||
String get couldNotCreateRoom => 'Impossible de créer le salon. Vérifie le Bluetooth.';
|
||||
|
||||
@override
|
||||
String cannotStartWithReason(String reason) {
|
||||
return 'Impossible de démarrer : $reason';
|
||||
}
|
||||
|
||||
@override
|
||||
String get invalidRoom => 'salon invalide';
|
||||
|
||||
@override
|
||||
String get defaultPlayerName => 'Joueur';
|
||||
}
|
||||
|
||||
@@ -599,4 +599,110 @@ class AppLocalizationsHi 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 => 'खिलाड़ी';
|
||||
}
|
||||
|
||||
@@ -600,4 +600,110 @@ class AppLocalizationsIt extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Scansiona questo codice da un altro telefono';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Utenti della partita';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Giocatori selezionati';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Telefoni connessi';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Selezionato su questo telefono';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Selezionato su un altro dispositivo';
|
||||
|
||||
@override
|
||||
String get available => 'Disponibile';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Non disponibile';
|
||||
|
||||
@override
|
||||
String get release => 'Libera';
|
||||
|
||||
@override
|
||||
String get select => 'Seleziona';
|
||||
|
||||
@override
|
||||
String get delete => 'Elimina';
|
||||
|
||||
@override
|
||||
String get selectAtLeastThreeUsersToStart => 'Seleziona almeno 3 utenti per iniziare.';
|
||||
|
||||
@override
|
||||
String get hostPhoneMustSelectUser => 'Il telefono host deve selezionare almeno un utente.';
|
||||
|
||||
@override
|
||||
String get roomNoLongerInLobby => 'La stanza non è più nella lobby.';
|
||||
|
||||
@override
|
||||
String get completeUserSelectionToStart => 'Completa la selezione utenti per iniziare.';
|
||||
|
||||
@override
|
||||
String get preparingSecureRoom => 'Preparazione della stanza sicura';
|
||||
|
||||
@override
|
||||
String get searchingNearbyBluetoothGames => 'Ricerca di partite vicine via Bluetooth';
|
||||
|
||||
@override
|
||||
String get tapToJoin => 'Tocca per unirti';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsRequired => 'Sono necessari i permessi Bluetooth e posizione per cercare partite.';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsShort => 'Sono necessari i permessi Bluetooth e posizione';
|
||||
|
||||
@override
|
||||
String get couldNotStartSearch => 'Impossibile avviare la ricerca. Verifica Bluetooth e posizione.';
|
||||
|
||||
@override
|
||||
String couldNotConnectToHost(String host) {
|
||||
return 'Impossibile connettersi a $host';
|
||||
}
|
||||
|
||||
@override
|
||||
String get room => 'Stanza';
|
||||
|
||||
@override
|
||||
String get singleDeviceSubtitle => 'Partita su questo dispositivo';
|
||||
|
||||
@override
|
||||
String get singleDeviceDescription => 'Ideale per giocare insieme passandosi il telefono. Configurazione rapida e diretta.';
|
||||
|
||||
@override
|
||||
String get multiDeviceSubtitle => 'Ogni giocatore sul proprio telefono';
|
||||
|
||||
@override
|
||||
String get multiDeviceDescription => 'Crea una stanza premium, condividi il QR e gestisci gli utenti dalla lobby.';
|
||||
|
||||
@override
|
||||
String get singleDeviceGameLabel => 'Partita su questo dispositivo';
|
||||
|
||||
@override
|
||||
String get multiDeviceGameLabel => 'Partita multi-dispositivo';
|
||||
|
||||
@override
|
||||
String get mainDeviceUser => 'Utente principale del dispositivo';
|
||||
|
||||
@override
|
||||
String get couldNotCreateRoom => 'Impossibile creare la stanza. Verifica Bluetooth.';
|
||||
|
||||
@override
|
||||
String cannotStartWithReason(String reason) {
|
||||
return 'Impossibile iniziare: $reason';
|
||||
}
|
||||
|
||||
@override
|
||||
String get invalidRoom => 'stanza non valida';
|
||||
|
||||
@override
|
||||
String get defaultPlayerName => 'Giocatore';
|
||||
}
|
||||
|
||||
@@ -597,4 +597,110 @@ class AppLocalizationsJa 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 => 'プレイヤー';
|
||||
}
|
||||
|
||||
@@ -597,4 +597,110 @@ class AppLocalizationsKo 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 => '플레이어';
|
||||
}
|
||||
|
||||
@@ -600,4 +600,110 @@ class AppLocalizationsNl extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Scan deze code met een andere telefoon';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Spelgebruikers';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Geselecteerde spelers';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Verbonden telefoons';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Geselecteerd op deze telefoon';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Geselecteerd op een ander apparaat';
|
||||
|
||||
@override
|
||||
String get available => 'Beschikbaar';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Niet beschikbaar';
|
||||
|
||||
@override
|
||||
String get release => 'Vrijgeven';
|
||||
|
||||
@override
|
||||
String get select => 'Selecteren';
|
||||
|
||||
@override
|
||||
String get delete => 'Verwijderen';
|
||||
|
||||
@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 => 'Kamer';
|
||||
|
||||
@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 => 'Speler';
|
||||
}
|
||||
|
||||
@@ -600,4 +600,110 @@ class AppLocalizationsPl extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Zeskanuj ten kod innym telefonem';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Użytkownicy gry';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Wybrani gracze';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Połączone telefony';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Wybrano na tym telefonie';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Wybrano na innym urządzeniu';
|
||||
|
||||
@override
|
||||
String get available => 'Dostępny';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Niedostępny';
|
||||
|
||||
@override
|
||||
String get release => 'Zwolnij';
|
||||
|
||||
@override
|
||||
String get select => 'Wybierz';
|
||||
|
||||
@override
|
||||
String get delete => 'Usuń';
|
||||
|
||||
@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 => 'Pokój';
|
||||
|
||||
@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 => 'Gracz';
|
||||
}
|
||||
|
||||
@@ -601,4 +601,110 @@ class AppLocalizationsPt extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Escaneia este código noutro telemóvel';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Utilizadores da partida';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Jogadores selecionados';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Telemóveis ligados';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Selecionado neste telemóvel';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Selecionado noutro dispositivo';
|
||||
|
||||
@override
|
||||
String get available => 'Disponível';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Não disponível';
|
||||
|
||||
@override
|
||||
String get release => 'Libertar';
|
||||
|
||||
@override
|
||||
String get select => 'Selecionar';
|
||||
|
||||
@override
|
||||
String get delete => 'Eliminar';
|
||||
|
||||
@override
|
||||
String get selectAtLeastThreeUsersToStart => 'Seleciona pelo menos 3 utilizadores para começar.';
|
||||
|
||||
@override
|
||||
String get hostPhoneMustSelectUser => 'O telemóvel anfitrião deve selecionar pelo menos um utilizador.';
|
||||
|
||||
@override
|
||||
String get roomNoLongerInLobby => 'A sala já não está no lobby.';
|
||||
|
||||
@override
|
||||
String get completeUserSelectionToStart => 'Completa a seleção de utilizadores para começar.';
|
||||
|
||||
@override
|
||||
String get preparingSecureRoom => 'A preparar a sala segura';
|
||||
|
||||
@override
|
||||
String get searchingNearbyBluetoothGames => 'A procurar partidas próximas por Bluetooth';
|
||||
|
||||
@override
|
||||
String get tapToJoin => 'Toca para entrar';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsRequired => 'São necessárias permissões de Bluetooth e localização para procurar partidas.';
|
||||
|
||||
@override
|
||||
String get bluetoothLocationPermissionsShort => 'São necessárias permissões de Bluetooth e localização';
|
||||
|
||||
@override
|
||||
String get couldNotStartSearch => 'Não foi possível iniciar a procura. Verifica o Bluetooth e a localização.';
|
||||
|
||||
@override
|
||||
String couldNotConnectToHost(String host) {
|
||||
return 'Não foi possível ligar a $host';
|
||||
}
|
||||
|
||||
@override
|
||||
String get room => 'Sala';
|
||||
|
||||
@override
|
||||
String get singleDeviceSubtitle => 'Partida neste dispositivo';
|
||||
|
||||
@override
|
||||
String get singleDeviceDescription => 'Ideal para jogar todos juntos passando o telemóvel. Configuração rápida e direta.';
|
||||
|
||||
@override
|
||||
String get multiDeviceSubtitle => 'Cada jogador no seu telemóvel';
|
||||
|
||||
@override
|
||||
String get multiDeviceDescription => 'Cria uma sala premium, partilha o QR e gere utilizadores no lobby.';
|
||||
|
||||
@override
|
||||
String get singleDeviceGameLabel => 'Partida neste dispositivo';
|
||||
|
||||
@override
|
||||
String get multiDeviceGameLabel => 'Partida multidispositivo';
|
||||
|
||||
@override
|
||||
String get mainDeviceUser => 'Utilizador principal do dispositivo';
|
||||
|
||||
@override
|
||||
String get couldNotCreateRoom => 'Não foi possível criar a sala. Verifica o Bluetooth.';
|
||||
|
||||
@override
|
||||
String cannotStartWithReason(String reason) {
|
||||
return 'Não é possível iniciar: $reason';
|
||||
}
|
||||
|
||||
@override
|
||||
String get invalidRoom => 'sala inválida';
|
||||
|
||||
@override
|
||||
String get defaultPlayerName => 'Jogador';
|
||||
}
|
||||
|
||||
@@ -600,4 +600,110 @@ class AppLocalizationsRu 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 => 'Игрок';
|
||||
}
|
||||
|
||||
@@ -599,4 +599,110 @@ class AppLocalizationsTr extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get availableProfiles => 'Perfiles disponibles';
|
||||
|
||||
@override
|
||||
String get scanThisCodeFromAnotherPhone => 'Bu kodu başka bir telefondan tarayın';
|
||||
|
||||
@override
|
||||
String get gameUsers => 'Oyun kullanıcıları';
|
||||
|
||||
@override
|
||||
String get selectedPlayers => 'Seçilen oyuncular';
|
||||
|
||||
@override
|
||||
String get connectedPhones => 'Bağlı telefonlar';
|
||||
|
||||
@override
|
||||
String get selectedOnThisPhone => 'Bu telefonda seçildi';
|
||||
|
||||
@override
|
||||
String get selectedByAnotherDevice => 'Başka bir cihazda seçildi';
|
||||
|
||||
@override
|
||||
String get available => 'Uygun';
|
||||
|
||||
@override
|
||||
String get notAvailable => 'Uygun değil';
|
||||
|
||||
@override
|
||||
String get release => 'Bırak';
|
||||
|
||||
@override
|
||||
String get select => 'Seç';
|
||||
|
||||
@override
|
||||
String get delete => 'Sil';
|
||||
|
||||
@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 => 'Oda';
|
||||
|
||||
@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 => 'Oyuncu';
|
||||
}
|
||||
|
||||
@@ -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 => '玩家';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user