finished tracking. But not tested enough yet
time
This commit is contained in:
@@ -159,6 +159,7 @@
|
||||
"zurueckgelegteStrecke": "Zurückgelegte Strecke",
|
||||
"tracking": "Tracking",
|
||||
"couldntDeterminePosition": "Position konnte nicht ermittelt werden",
|
||||
"trackingRunningInBackground": "Die Tracking funktion läuft im Hintergrund"
|
||||
|
||||
}
|
||||
"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?"
|
||||
}
|
||||
|
||||
@@ -667,5 +667,9 @@
|
||||
|
||||
"couldntDeterminePosition": "couldn't determine position",
|
||||
|
||||
"trackingRunningInBackground": "The tracking service is running in the background"
|
||||
"trackingRunningInBackground": "The tracking service is running in the background",
|
||||
|
||||
"needsAlwaysLocation": "This app needs the location permission set to always",
|
||||
|
||||
"deleteWholeRouteBody": "Do you really want to delete the existing route?"
|
||||
}
|
||||
|
||||
@@ -1066,6 +1066,18 @@ abstract class AppLocalizations {
|
||||
/// In en, this message translates to:
|
||||
/// **'The tracking service is running in the background'**
|
||||
String get trackingRunningInBackground;
|
||||
|
||||
/// No description provided for @needsAlwaysLocation.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'This app needs the location permission set to always'**
|
||||
String get needsAlwaysLocation;
|
||||
|
||||
/// No description provided for @deleteWholeRouteBody.
|
||||
///
|
||||
/// In en, this message translates to:
|
||||
/// **'Do you really want to delete the existing route?'**
|
||||
String get deleteWholeRouteBody;
|
||||
}
|
||||
|
||||
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {
|
||||
|
||||
@@ -493,4 +493,10 @@ class AppLocalizationsDe extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get trackingRunningInBackground => 'Die Tracking funktion läuft im Hintergrund';
|
||||
|
||||
@override
|
||||
String get needsAlwaysLocation => 'Diese app braucht die Standort berechtigung auf immer gesetzt';
|
||||
|
||||
@override
|
||||
String get deleteWholeRouteBody => 'Sind Sie sicher, dass die gesamte bisher gegangene Route gelöscht werden soll?';
|
||||
}
|
||||
|
||||
@@ -493,4 +493,10 @@ class AppLocalizationsEn extends AppLocalizations {
|
||||
|
||||
@override
|
||||
String get trackingRunningInBackground => 'The tracking service is running in the background';
|
||||
|
||||
@override
|
||||
String get needsAlwaysLocation => 'This app needs the location permission set to always';
|
||||
|
||||
@override
|
||||
String get deleteWholeRouteBody => 'Do you really want to delete the existing route?';
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user