Skip to content

Commit 1f96316

Browse files
committed
Added translations for the site note
1 parent 801e8da commit 1f96316

5 files changed

Lines changed: 86 additions & 2 deletions

File tree

lib/l10n/app_de.arb

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,11 @@
2727
"darkMode": "Dunkel",
2828
"localisationMode": "Sprache:",
2929
"localeEnglish": "Englisch",
30-
"localeGerman": "Deutsch"
30+
"localeGerman": "Deutsch",
31+
"aboutThisButton": "Über dieses Projekt",
32+
"reportABugButton": "Einen Bug melden",
33+
"requestAFeatureButton": "Ein Feature beantragen",
34+
"seeLicenseButton": "Lizenz ansehen",
35+
"seeReleasesButton": "Alle Versionen ansehen",
36+
"aboutMeButton": "Über den Entwickler"
3137
}

lib/l10n/app_en.arb

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,11 @@
2727
"darkMode": "Dark",
2828
"localisationMode": "Language:",
2929
"localeEnglish": "English",
30-
"localeGerman": "German"
30+
"localeGerman": "German",
31+
"aboutThisButton": "About this project",
32+
"reportABugButton": "Report a bug",
33+
"requestAFeatureButton": "Request a feature",
34+
"seeLicenseButton": "See the license",
35+
"seeReleasesButton": "See all releases",
36+
"aboutMeButton": "About the developer"
3137
}

lib/l10n/app_localizations.dart

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,42 @@ abstract class AppLocalizations {
238238
/// In en, this message translates to:
239239
/// **'German'**
240240
String get localeGerman;
241+
242+
/// No description provided for @aboutThisButton.
243+
///
244+
/// In en, this message translates to:
245+
/// **'About this project'**
246+
String get aboutThisButton;
247+
248+
/// No description provided for @reportABugButton.
249+
///
250+
/// In en, this message translates to:
251+
/// **'Report a bug'**
252+
String get reportABugButton;
253+
254+
/// No description provided for @requestAFeatureButton.
255+
///
256+
/// In en, this message translates to:
257+
/// **'Request a feature'**
258+
String get requestAFeatureButton;
259+
260+
/// No description provided for @seeLicenseButton.
261+
///
262+
/// In en, this message translates to:
263+
/// **'See the license'**
264+
String get seeLicenseButton;
265+
266+
/// No description provided for @seeReleasesButton.
267+
///
268+
/// In en, this message translates to:
269+
/// **'See all releases'**
270+
String get seeReleasesButton;
271+
272+
/// No description provided for @aboutMeButton.
273+
///
274+
/// In en, this message translates to:
275+
/// **'About the developer'**
276+
String get aboutMeButton;
241277
}
242278

243279
class _AppLocalizationsDelegate extends LocalizationsDelegate<AppLocalizations> {

lib/l10n/app_localizations_de.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,22 @@ class AppLocalizationsDe extends AppLocalizations {
7979

8080
@override
8181
String get localeGerman => 'Deutsch';
82+
83+
@override
84+
String get aboutThisButton => 'Über dieses Projekt';
85+
86+
@override
87+
String get reportABugButton => 'Einen Bug melden';
88+
89+
@override
90+
String get requestAFeatureButton => 'Ein Feature beantragen';
91+
92+
@override
93+
String get seeLicenseButton => 'Lizenz ansehen';
94+
95+
@override
96+
String get seeReleasesButton => 'Alle Versionen ansehen';
97+
98+
@override
99+
String get aboutMeButton => 'Über den Entwickler';
82100
}

lib/l10n/app_localizations_en.dart

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,22 @@ class AppLocalizationsEn extends AppLocalizations {
7979

8080
@override
8181
String get localeGerman => 'German';
82+
83+
@override
84+
String get aboutThisButton => 'About this project';
85+
86+
@override
87+
String get reportABugButton => 'Report a bug';
88+
89+
@override
90+
String get requestAFeatureButton => 'Request a feature';
91+
92+
@override
93+
String get seeLicenseButton => 'See the license';
94+
95+
@override
96+
String get seeReleasesButton => 'See all releases';
97+
98+
@override
99+
String get aboutMeButton => 'About the developer';
82100
}

0 commit comments

Comments
 (0)