feat: Update project version to 19, add repeaters filter and theme support, and enhance contact list display

This commit is contained in:
Janez T
2025-10-16 21:43:19 +02:00
parent 58d8ef0dae
commit e74ebda54d
15 changed files with 312 additions and 95 deletions

View File

@@ -1097,6 +1097,11 @@
"description": "Filter option for contacts"
},
"repeatersFilter": "Repeaters",
"@repeatersFilter": {
"description": "Filter option for repeaters"
},
"sarMarkers": "SAR Markers",
"@sarMarkers": {
"description": "SAR markers section header"

View File

@@ -371,6 +371,8 @@
"contactsFilter": "Kontakti",
"repeatersFilter": "Repetitori",
"sarMarkers": "SAR markeri",
"foundPerson": "Pronađena osoba",

View File

@@ -1215,6 +1215,12 @@ abstract class AppLocalizations {
/// **'Contacts'**
String get contactsFilter;
/// Filter option for repeaters
///
/// In en, this message translates to:
/// **'Repeaters'**
String get repeatersFilter;
/// SAR markers section header
///
/// In en, this message translates to:

View File

@@ -643,6 +643,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get contactsFilter => 'Contacts';
@override
String get repeatersFilter => 'Repeaters';
@override
String get sarMarkers => 'SAR Markers';

View File

@@ -643,6 +643,9 @@ class AppLocalizationsHr extends AppLocalizations {
@override
String get contactsFilter => 'Kontakti';
@override
String get repeatersFilter => 'Repetitori';
@override
String get sarMarkers => 'SAR markeri';

View File

@@ -643,6 +643,9 @@ class AppLocalizationsSl extends AppLocalizations {
@override
String get contactsFilter => 'Stiki';
@override
String get repeatersFilter => 'Ponavljalniki';
@override
String get sarMarkers => 'SAR označevalci';

View File

@@ -371,6 +371,8 @@
"contactsFilter": "Stiki",
"repeatersFilter": "Ponavljalniki",
"sarMarkers": "SAR označevalci",
"foundPerson": "Najdena oseba",