mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-13 09:20:29 +00:00
Add localization support for German, Spanish, French, and Italian
- Updated localization files for French, Croatian, Italian, Slovenian to include translations for German, Spanish, French, and Italian. - Added new methods for handling drawing messages sent to the public channel in multiple languages. - Enhanced the Contact model to identify public channels using a dedicated method. - Implemented echo detection for public channel messages, including tracking and reporting of echoes. - Updated BLE response handling to support echo detection and tracking of sent messages. - Modified UI components to reflect new localization strings and echo statuses.
This commit is contained in:
@@ -144,6 +144,18 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
@override
|
||||
String get croatian => 'Croata';
|
||||
|
||||
@override
|
||||
String get german => 'Alemán';
|
||||
|
||||
@override
|
||||
String get spanish => 'Español';
|
||||
|
||||
@override
|
||||
String get french => 'Francés';
|
||||
|
||||
@override
|
||||
String get italian => 'Italiano';
|
||||
|
||||
@override
|
||||
String get locationBroadcasting => 'Difusión de ubicación';
|
||||
|
||||
@@ -386,6 +398,16 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
@override
|
||||
String get storedPermanently => 'Almacenado permanentemente en la sala';
|
||||
|
||||
@override
|
||||
String drawingsSentToPublicChannel(int count, String plural) {
|
||||
return '$count dibujo$plural de mapa enviado al Canal Público';
|
||||
}
|
||||
|
||||
@override
|
||||
String drawingsSharedToPublicChannel(int success, int total) {
|
||||
return '$success/$total dibujos compartidos al Canal Público';
|
||||
}
|
||||
|
||||
@override
|
||||
String get notConnectedToDevice => 'No conectado al dispositivo';
|
||||
|
||||
@@ -1005,6 +1027,9 @@ class AppLocalizationsEs extends AppLocalizations {
|
||||
@override
|
||||
String get failed => 'Fallido';
|
||||
|
||||
@override
|
||||
String get broadcast => 'Difusión';
|
||||
|
||||
@override
|
||||
String get sarMarkerFoundPerson => 'Persona encontrada';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user