input check on distance traveled and track conditions

This commit is contained in:
Nico
2025-06-02 20:15:42 +02:00
parent af2637c1b8
commit 2574752ebb
7 changed files with 62 additions and 29 deletions

View File

@@ -64,7 +64,7 @@
"openMap": "Karte öffnen",
"saveMap": "Speichern und Schließen",
"locationDisabled": "Standort ausgeschaltet. Bitte einschalten",
"locationForbidden": "Zugriff auf Standort verweigert. Es ist empfohlen dies zu erlauben",
"locationForbidden": "Zugriff auf Standort verweigert",
"map": "Karte",
"markerSet": "Marker gesetzt auf",
"betreuung": "Betreuung",
@@ -160,5 +160,6 @@
"couldntDeterminePosition": "Position konnte nicht ermittelt werden",
"trackingRunningInBackground": "Die Tracking funktion läuft im Hintergrund",
"needsAlwaysLocation": "Diese app braucht die Standort berechtigung auf immer gesetzt",
"deleteWholeRouteBody": "Sind Sie sicher, dass die gesamte bisher gegangene Route gelöscht werden soll?"
"deleteWholeRouteBody": "Sind Sie sicher, dass die gesamte bisher gegangene Route gelöscht werden soll?",
"oder": "oder"
}

View File

@@ -667,5 +667,9 @@
"needsAlwaysLocation": "This app needs the location permission set to always",
"deleteWholeRouteBody": "Do you really want to delete the existing route?"
"deleteWholeRouteBody": "Do you really want to delete the existing route?",
"oder": "or",
"bedingungenGroesserAlsStrecke": "Sum of the track conditions is bigger then sum of the distance traveled"
}

View File

@@ -1072,6 +1072,18 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Do you really want to delete the existing route?'**
String get deleteWholeRouteBody;
/// No description provided for @oder.
///
/// In en, this message translates to:
/// **'or'**
String get oder;
/// No description provided for @bedingungenGroesserAlsStrecke.
///
/// In en, this message translates to:
/// **'Sum of the track conditions is bigger then sum of the distance traveled'**
String get bedingungenGroesserAlsStrecke;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {

View File

@@ -210,7 +210,7 @@ class AppLocalizationsDe extends AppLocalizations {
String get locationDisabled => 'Standort ausgeschaltet. Bitte einschalten';
@override
String get locationForbidden => 'Zugriff auf Standort verweigert. Es ist empfohlen dies zu erlauben';
String get locationForbidden => 'Zugriff auf Standort verweigert';
@override
String get map => 'Karte';
@@ -496,4 +496,10 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get deleteWholeRouteBody => 'Sind Sie sicher, dass die gesamte bisher gegangene Route gelöscht werden soll?';
@override
String get oder => 'oder';
@override
String get bedingungenGroesserAlsStrecke => 'Sum of the track conditions is bigger then sum of the distance traveled';
}

View File

@@ -496,4 +496,10 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get deleteWholeRouteBody => 'Do you really want to delete the existing route?';
@override
String get oder => 'or';
@override
String get bedingungenGroesserAlsStrecke => 'Sum of the track conditions is bigger then sum of the distance traveled';
}