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

@@ -1132,6 +1132,60 @@ abstract class AppLocalizations {
/// In en, this message translates to:
/// **'Accuracy'**
String get accuracy;
/// No description provided for @leavePageTitle.
///
/// In en, this message translates to:
/// **'Leave page?'**
String get leavePageTitle;
/// No description provided for @leavePageContent.
///
/// In en, this message translates to:
/// **'Do you really want to leave the page?'**
String get leavePageContent;
/// No description provided for @leaveWithoutSaving.
///
/// In en, this message translates to:
/// **'Leave without saving'**
String get leaveWithoutSaving;
/// No description provided for @leaveAndSaveTemplate.
///
/// In en, this message translates to:
/// **'Save as template and leave'**
String get leaveAndSaveTemplate;
/// No description provided for @trackingPermissionTitle.
///
/// In en, this message translates to:
/// **'Location Permission for Tracking'**
String get trackingPermissionTitle;
/// No description provided for @trackingPermissionContent.
///
/// In en, this message translates to:
/// **'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.'**
String get trackingPermissionContent;
/// No description provided for @openSettings.
///
/// In en, this message translates to:
/// **'Open Settings'**
String get openSettings;
/// No description provided for @returnToApp.
///
/// In en, this message translates to:
/// **'Return to App'**
String get returnToApp;
/// No description provided for @permissionNotGranted.
///
/// In en, this message translates to:
/// **'Permission not granted. Tracking not possible.'**
String get permissionNotGranted;
}
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {