added guide that explains to the user how to give always location permission

This commit is contained in:
Nico
2025-06-05 19:32:43 +02:00
parent 9431232e91
commit a599c6fbc1
9 changed files with 238 additions and 30 deletions

View File

@@ -526,4 +526,31 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get accuracy => 'Accuracy';
@override
String get leavePageTitle => 'Leave page?';
@override
String get leavePageContent => 'Do you really want to leave the page?';
@override
String get leaveWithoutSaving => 'Leave without saving';
@override
String get leaveAndSaveTemplate => 'Save as template and leave';
@override
String get trackingPermissionTitle => 'Location Permission for Tracking';
@override
String get trackingPermissionContent => 'Tracking requires permanent location permission. After opening settings:\n\n1. Tap on \'Permissions\' and then on \'Location\'\n2. Select \'Allow all the time\'\n3. Return to the app\n\nThis allows recording your position in the background.';
@override
String get openSettings => 'Open Settings';
@override
String get returnToApp => 'Return to App';
@override
String get permissionNotGranted => 'Permission not granted. Tracking not possible.';
}