feat: Implement notification service for SAR messages and add localization support

This commit is contained in:
Janez T
2025-10-16 16:31:35 +02:00
parent d69355a9b8
commit 09e53e579a
17 changed files with 629 additions and 3 deletions

View File

@@ -1808,6 +1808,48 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Failed'**
String get failed;
/// SAR marker type: found person
///
/// In en, this message translates to:
/// **'Found Person'**
String get sarMarkerFoundPerson;
/// SAR marker type: fire
///
/// In en, this message translates to:
/// **'Fire Location'**
String get sarMarkerFire;
/// SAR marker type: staging area
///
/// In en, this message translates to:
/// **'Staging Area'**
String get sarMarkerStagingArea;
/// SAR marker type: object
///
/// In en, this message translates to:
/// **'Object Found'**
String get sarMarkerObject;
/// Sender label in notifications
///
/// In en, this message translates to:
/// **'From'**
String get from;
/// Coordinates label
///
/// In en, this message translates to:
/// **'Coordinates'**
String get coordinates;
/// Notification action text
///
/// In en, this message translates to:
/// **'Tap to view on map'**
String get tapToViewOnMap;
}
class _AppLocalizationsDelegate