mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-12 17:00:28 +00:00
feat: Add localization for no recipients and no channels found messages
This commit is contained in:
@@ -2647,6 +2647,8 @@
|
|||||||
"noContactsFound": "Keine Kontakte gefunden",
|
"noContactsFound": "Keine Kontakte gefunden",
|
||||||
"noRoomsFound": "Keine Räume gefunden",
|
"noRoomsFound": "Keine Räume gefunden",
|
||||||
"noContactsOrRoomsAvailable": "Keine Kontakte oder Räume verfügbar",
|
"noContactsOrRoomsAvailable": "Keine Kontakte oder Räume verfügbar",
|
||||||
|
"noRecipientsAvailable": "Keine Empfänger verfügbar",
|
||||||
|
"noChannelsFound": "Keine Kanäle gefunden",
|
||||||
"messagesWillBeSentToPublicChannel": "Nachrichten werden an öffentlichen Kanal gesendet",
|
"messagesWillBeSentToPublicChannel": "Nachrichten werden an öffentlichen Kanal gesendet",
|
||||||
"newMessage": "Neue Nachricht",
|
"newMessage": "Neue Nachricht",
|
||||||
"channel": "Kanal",
|
"channel": "Kanal",
|
||||||
|
|||||||
@@ -2642,6 +2642,8 @@
|
|||||||
"noContactsFound": "No se encontraron contactos",
|
"noContactsFound": "No se encontraron contactos",
|
||||||
"noRoomsFound": "No se encontraron salas",
|
"noRoomsFound": "No se encontraron salas",
|
||||||
"noContactsOrRoomsAvailable": "No hay contactos o salas disponibles",
|
"noContactsOrRoomsAvailable": "No hay contactos o salas disponibles",
|
||||||
|
"noRecipientsAvailable": "No hay destinatarios disponibles",
|
||||||
|
"noChannelsFound": "No se encontraron canales",
|
||||||
"messagesWillBeSentToPublicChannel": "Los mensajes se enviarán al canal público",
|
"messagesWillBeSentToPublicChannel": "Los mensajes se enviarán al canal público",
|
||||||
"newMessage": "Nuevo mensaje",
|
"newMessage": "Nuevo mensaje",
|
||||||
"channel": "Canal",
|
"channel": "Canal",
|
||||||
|
|||||||
@@ -2647,6 +2647,8 @@
|
|||||||
"noContactsFound": "Aucun contact trouvé",
|
"noContactsFound": "Aucun contact trouvé",
|
||||||
"noRoomsFound": "Aucune salle trouvée",
|
"noRoomsFound": "Aucune salle trouvée",
|
||||||
"noContactsOrRoomsAvailable": "Aucun contact ou salle disponible",
|
"noContactsOrRoomsAvailable": "Aucun contact ou salle disponible",
|
||||||
|
"noRecipientsAvailable": "Aucun destinataire disponible",
|
||||||
|
"noChannelsFound": "Aucun canal trouvé",
|
||||||
"messagesWillBeSentToPublicChannel": "Les messages seront envoyés au canal public",
|
"messagesWillBeSentToPublicChannel": "Les messages seront envoyés au canal public",
|
||||||
"newMessage": "Nouveau message",
|
"newMessage": "Nouveau message",
|
||||||
"channel": "Canal",
|
"channel": "Canal",
|
||||||
|
|||||||
@@ -2647,6 +2647,8 @@
|
|||||||
"noContactsFound": "Nessun contatto trovato",
|
"noContactsFound": "Nessun contatto trovato",
|
||||||
"noRoomsFound": "Nessuna stanza trovata",
|
"noRoomsFound": "Nessuna stanza trovata",
|
||||||
"noContactsOrRoomsAvailable": "Nessun contatto o stanza disponibile",
|
"noContactsOrRoomsAvailable": "Nessun contatto o stanza disponibile",
|
||||||
|
"noRecipientsAvailable": "Nessun destinatario disponibile",
|
||||||
|
"noChannelsFound": "Nessun canale trovato",
|
||||||
"messagesWillBeSentToPublicChannel": "I messaggi saranno inviati al canale pubblico",
|
"messagesWillBeSentToPublicChannel": "I messaggi saranno inviati al canale pubblico",
|
||||||
"newMessage": "Nuovo messaggio",
|
"newMessage": "Nuovo messaggio",
|
||||||
"channel": "Canale",
|
"channel": "Canale",
|
||||||
|
|||||||
@@ -3081,6 +3081,18 @@ abstract class AppLocalizations {
|
|||||||
/// **'No contacts or rooms available'**
|
/// **'No contacts or rooms available'**
|
||||||
String get noContactsOrRoomsAvailable;
|
String get noContactsOrRoomsAvailable;
|
||||||
|
|
||||||
|
/// Message when no recipients exist (contacts, rooms, or channels)
|
||||||
|
///
|
||||||
|
/// In en, this message translates to:
|
||||||
|
/// **'No recipients available'**
|
||||||
|
String get noRecipientsAvailable;
|
||||||
|
|
||||||
|
/// Message when no channels match the search
|
||||||
|
///
|
||||||
|
/// In en, this message translates to:
|
||||||
|
/// **'No channels found'**
|
||||||
|
String get noChannelsFound;
|
||||||
|
|
||||||
/// Info message when only public channel is available
|
/// Info message when only public channel is available
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
|
|||||||
@@ -1733,6 +1733,12 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||||||
String get noContactsOrRoomsAvailable =>
|
String get noContactsOrRoomsAvailable =>
|
||||||
'Keine Kontakte oder Räume verfügbar';
|
'Keine Kontakte oder Räume verfügbar';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noRecipientsAvailable => 'Keine Empfänger verfügbar';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noChannelsFound => 'Keine Kanäle gefunden';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get messagesWillBeSentToPublicChannel =>
|
String get messagesWillBeSentToPublicChannel =>
|
||||||
'Nachrichten werden an öffentlichen Kanal gesendet';
|
'Nachrichten werden an öffentlichen Kanal gesendet';
|
||||||
|
|||||||
@@ -1717,6 +1717,12 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get noContactsOrRoomsAvailable => 'No contacts or rooms available';
|
String get noContactsOrRoomsAvailable => 'No contacts or rooms available';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noRecipientsAvailable => 'No recipients available';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noChannelsFound => 'No channels found';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get messagesWillBeSentToPublicChannel =>
|
String get messagesWillBeSentToPublicChannel =>
|
||||||
'Messages will be sent to public channel';
|
'Messages will be sent to public channel';
|
||||||
|
|||||||
@@ -1732,6 +1732,12 @@ class AppLocalizationsEs extends AppLocalizations {
|
|||||||
String get noContactsOrRoomsAvailable =>
|
String get noContactsOrRoomsAvailable =>
|
||||||
'No hay contactos o salas disponibles';
|
'No hay contactos o salas disponibles';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noRecipientsAvailable => 'No hay destinatarios disponibles';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noChannelsFound => 'No se encontraron canales';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get messagesWillBeSentToPublicChannel =>
|
String get messagesWillBeSentToPublicChannel =>
|
||||||
'Los mensajes se enviarán al canal público';
|
'Los mensajes se enviarán al canal público';
|
||||||
|
|||||||
@@ -1737,6 +1737,12 @@ class AppLocalizationsFr extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get noContactsOrRoomsAvailable => 'Aucun contact ou salle disponible';
|
String get noContactsOrRoomsAvailable => 'Aucun contact ou salle disponible';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noRecipientsAvailable => 'Aucun destinataire disponible';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noChannelsFound => 'Aucun canal trouvé';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get messagesWillBeSentToPublicChannel =>
|
String get messagesWillBeSentToPublicChannel =>
|
||||||
'Les messages seront envoyés au canal public';
|
'Les messages seront envoyés au canal public';
|
||||||
|
|||||||
@@ -1720,6 +1720,12 @@ class AppLocalizationsHr extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get noContactsOrRoomsAvailable => 'Nema dostupnih kontakata ili soba';
|
String get noContactsOrRoomsAvailable => 'Nema dostupnih kontakata ili soba';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noRecipientsAvailable => 'Nema dostupnih primatelja';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noChannelsFound => 'Nije pronađen nijedan kanal';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get messagesWillBeSentToPublicChannel =>
|
String get messagesWillBeSentToPublicChannel =>
|
||||||
'Poruke će biti poslane na javni kanal';
|
'Poruke će biti poslane na javni kanal';
|
||||||
|
|||||||
@@ -1731,6 +1731,12 @@ class AppLocalizationsIt extends AppLocalizations {
|
|||||||
String get noContactsOrRoomsAvailable =>
|
String get noContactsOrRoomsAvailable =>
|
||||||
'Nessun contatto o stanza disponibile';
|
'Nessun contatto o stanza disponibile';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noRecipientsAvailable => 'Nessun destinatario disponibile';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noChannelsFound => 'Nessun canale trovato';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get messagesWillBeSentToPublicChannel =>
|
String get messagesWillBeSentToPublicChannel =>
|
||||||
'I messaggi saranno inviati al canale pubblico';
|
'I messaggi saranno inviati al canale pubblico';
|
||||||
|
|||||||
@@ -1721,6 +1721,12 @@ class AppLocalizationsSl extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get noContactsOrRoomsAvailable => 'Ni na voljo kontaktov ali sob';
|
String get noContactsOrRoomsAvailable => 'Ni na voljo kontaktov ali sob';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noRecipientsAvailable => 'Ni na voljo prejemnikov';
|
||||||
|
|
||||||
|
@override
|
||||||
|
String get noChannelsFound => 'Ni najdenih kanalov';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get messagesWillBeSentToPublicChannel =>
|
String get messagesWillBeSentToPublicChannel =>
|
||||||
'Sporočila bodo poslana na javni kanal';
|
'Sporočila bodo poslana na javni kanal';
|
||||||
|
|||||||
@@ -434,8 +434,8 @@ class _SarUpdateSheetState extends State<SarUpdateSheet> {
|
|||||||
AppLocalizations.of(
|
AppLocalizations.of(
|
||||||
context,
|
context,
|
||||||
)!.noDestinationsAvailable,
|
)!.noDestinationsAvailable,
|
||||||
style: const TextStyle(
|
style: TextStyle(
|
||||||
color: Colors.white70,
|
color: Colors.red.shade900,
|
||||||
fontSize: 11,
|
fontSize: 11,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|||||||
Reference in New Issue
Block a user