Skip to content

Commit 5d16519

Browse files
committed
chore: generated localizacion files
1 parent f0f38f2 commit 5d16519

10 files changed

+12
-12
lines changed

lib/l10n/app_localizations.dart

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -488,11 +488,11 @@ abstract class AppLocalizations {
488488
/// **'Daytime'**
489489
String get atDay;
490490

491-
/// No description provided for @atEvening.
491+
/// No description provided for @atNoon.
492492
///
493493
/// In en, this message translates to:
494-
/// **'In the evening'**
495-
String get atEvening;
494+
/// **'At noon'**
495+
String get atNoon;
496496

497497
/// No description provided for @atNight.
498498
///

lib/l10n/app_localizations_ar.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class AppLocalizationsAr extends AppLocalizations {
202202
String get atDay => 'Daytime';
203203

204204
@override
205-
String get atEvening => 'In the evening';
205+
String get atNoon => 'At noon';
206206

207207
@override
208208
String get atNight => 'At night';

lib/l10n/app_localizations_de.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class AppLocalizationsDe extends AppLocalizations {
203203
String get atDay => 'Daytime';
204204

205205
@override
206-
String get atEvening => 'In the evening';
206+
String get atNoon => 'At noon';
207207

208208
@override
209209
String get atNight => 'At night';

lib/l10n/app_localizations_en.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -201,7 +201,7 @@ class AppLocalizationsEn extends AppLocalizations {
201201
String get atDay => 'Daytime';
202202

203203
@override
204-
String get atEvening => 'In the evening';
204+
String get atNoon => 'At noon';
205205

206206
@override
207207
String get atNight => 'At night';

lib/l10n/app_localizations_es.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ class AppLocalizationsEs extends AppLocalizations {
204204
String get atDay => 'Por el día';
205205

206206
@override
207-
String get atEvening => 'Por la tarde';
207+
String get atNoon => 'Por la tarde';
208208

209209
@override
210210
String get atNight => 'Por la noche';

lib/l10n/app_localizations_fr.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ class AppLocalizationsFr extends AppLocalizations {
205205
String get atDay => 'De jour';
206206

207207
@override
208-
String get atEvening => 'D\'après-midi';
208+
String get atNoon => 'D\'après-midi';
209209

210210
@override
211211
String get atNight => 'De nuit';

lib/l10n/app_localizations_nl.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ class AppLocalizationsNl extends AppLocalizations {
203203
String get atDay => 'Daytime';
204204

205205
@override
206-
String get atEvening => 'In the evening';
206+
String get atNoon => 'At noon';
207207

208208
@override
209209
String get atNight => 'At night';

lib/l10n/app_localizations_ru.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ class AppLocalizationsRu extends AppLocalizations {
202202
String get atDay => 'Daytime';
203203

204204
@override
205-
String get atEvening => 'In the evening';
205+
String get atNoon => 'At noon';
206206

207207
@override
208208
String get atNight => 'At night';

lib/l10n/app_localizations_zh.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -199,7 +199,7 @@ class AppLocalizationsZh extends AppLocalizations {
199199
String get atDay => 'Daytime';
200200

201201
@override
202-
String get atEvening => 'In the evening';
202+
String get atNoon => 'At noon';
203203

204204
@override
205205
String get atNight => 'At night';

lib/screens/settings.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ class _SettingsScreen extends State<SettingsScreen> {
183183
ListTile(
184184
trailing: const Icon(Icons.arrow_right),
185185
leading: const Icon(Icons.alarm, color: Colors.blue),
186-
title: Text(AppLocalizations.of(context)!.atEvening),
186+
title: Text(AppLocalizations.of(context)!.atNoon),
187187
subtitle: settings.eveningNotification != null
188188
? Text(settings.eveningNotification!.format(context))
189189
: Text(AppLocalizations.of(context)!.never),

0 commit comments

Comments
 (0)