Updated String

This commit is contained in:
2025-08-20 08:54:23 +02:00
parent e1a414b1f0
commit db2192b47b
7 changed files with 8 additions and 8 deletions

View File

@@ -224,11 +224,11 @@ abstract class AppLocalizations {
/// **'Keine Lizenz verfügbar'**
String get no_license_text;
/// No description provided for @imprint.
/// No description provided for @legal_notice.
///
/// In de, this message translates to:
/// **'Impressum'**
String get imprint;
String get legal_notice;
/// No description provided for @empty_text_1.
///

View File

@@ -72,7 +72,7 @@ class AppLocalizationsDe extends AppLocalizations {
String get no_license_text => 'Keine Lizenz verfügbar';
@override
String get imprint => 'Impressum';
String get legal_notice => 'Impressum';
@override
String get empty_text_1 => 'Ganz schön leer hier...';

View File

@@ -72,7 +72,7 @@ class AppLocalizationsEn extends AppLocalizations {
String get no_license_text => 'No license available';
@override
String get imprint => 'Imprint';
String get legal_notice => 'Legal Notice';
@override
String get empty_text_1 => 'Pretty empty here...';