Changed l10n files location

This commit is contained in:
2025-07-10 16:38:56 +02:00
parent e4dba14642
commit b98b5b0ac9
5 changed files with 17 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ import 'app_localizations_en.dart';
/// `supportedLocales` list. For example:
///
/// ```dart
/// import 'l10n/app_localizations.dart';
/// import 'generated/app_localizations.dart';
///
/// return MaterialApp(
/// localizationsDelegates: AppLocalizations.localizationsDelegates,
@@ -566,6 +566,12 @@ abstract class AppLocalizations {
/// **'App-Version'**
String get app_version;
/// No description provided for @privacy_policy.
///
/// In de, this message translates to:
/// **'Datenschutzerklärung'**
String get privacy_policy;
/// No description provided for @build.
///
/// In de, this message translates to:

View File

@@ -256,6 +256,9 @@ class AppLocalizationsDe extends AppLocalizations {
@override
String get app_version => 'App-Version';
@override
String get privacy_policy => 'Datenschutzerklärung';
@override
String get build => 'Build-Nr.';

View File

@@ -253,6 +253,9 @@ class AppLocalizationsEn extends AppLocalizations {
@override
String get app_version => 'App Version';
@override
String get privacy_policy => 'Privacy Policy';
@override
String get build => 'Build No.';