From 43a8106ad76ac13f3f888825b1cb08ee303741de Mon Sep 17 00:00:00 2001 From: DGoiana Date: Wed, 4 Oct 2023 14:10:06 +0100 Subject: [PATCH] of_month --- uni/lib/generated/intl/messages_pt_PT.dart | 2 +- uni/lib/generated/l10n.dart | 4 ++-- uni/lib/l10n/intl_en.arb | 4 ++-- uni/lib/l10n/intl_pt_PT.arb | 4 ++-- uni/lib/view/exams/widgets/day_title.dart | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/uni/lib/generated/intl/messages_pt_PT.dart b/uni/lib/generated/intl/messages_pt_PT.dart index a8a3ab3bf..f023e098b 100644 --- a/uni/lib/generated/intl/messages_pt_PT.dart +++ b/uni/lib/generated/intl/messages_pt_PT.dart @@ -111,7 +111,7 @@ class MessageLookup extends MessageLookupByLibrary { "edit_on": MessageLookupByLibrary.simpleMessage("Concluir edição"), "empty_text": MessageLookupByLibrary.simpleMessage( "Por favor preenche este campo"), - "exam_of": MessageLookupByLibrary.simpleMessage("de"), + "of_month": MessageLookupByLibrary.simpleMessage("de"), "exams_filter": MessageLookupByLibrary.simpleMessage("Definições Filtro de Exames"), "exit_confirm": MessageLookupByLibrary.simpleMessage( diff --git a/uni/lib/generated/l10n.dart b/uni/lib/generated/l10n.dart index ef1a35f26..c8fc61c27 100644 --- a/uni/lib/generated/l10n.dart +++ b/uni/lib/generated/l10n.dart @@ -1029,10 +1029,10 @@ class S { } /// `of` - String get exam_of { + String get of_month { return Intl.message( 'of', - name: 'exam_of', + name: 'of_month', desc: '', args: [], ); diff --git a/uni/lib/l10n/intl_en.arb b/uni/lib/l10n/intl_en.arb index e8fec3e09..d1dcadff2 100644 --- a/uni/lib/l10n/intl_en.arb +++ b/uni/lib/l10n/intl_en.arb @@ -200,8 +200,8 @@ "@no_selected_exams": {}, "occurrence_type": "Type of occurrence", "@occurrence_type": {}, - "exam_of": "of", - "@exam_of": {}, + "of_month": "of", + "@of_month": {}, "other_links": "Other links", "@other_links": {}, "pass_change_request": "For security reasons, passwords must be changed periodically.", diff --git a/uni/lib/l10n/intl_pt_PT.arb b/uni/lib/l10n/intl_pt_PT.arb index b9a9d0bca..145d3bbfd 100644 --- a/uni/lib/l10n/intl_pt_PT.arb +++ b/uni/lib/l10n/intl_pt_PT.arb @@ -200,8 +200,8 @@ "@no_selected_exams": {}, "occurrence_type": "Tipo de ocorrência", "@occurrence_type": {}, - "exam_of": "de", - "@exam_of": {}, + "of_month": "de", + "@of_month": {}, "other_links": "Outros links", "@other_links": {}, "pass_change_request": "Por razões de segurança, as palavras-passe têm de ser alteradas periodicamente.", diff --git a/uni/lib/view/exams/widgets/day_title.dart b/uni/lib/view/exams/widgets/day_title.dart index f42528a03..b0626a86b 100644 --- a/uni/lib/view/exams/widgets/day_title.dart +++ b/uni/lib/view/exams/widgets/day_title.dart @@ -18,7 +18,7 @@ class DayTitle extends StatelessWidget { padding: const EdgeInsets.only(top: 15, bottom: 3), alignment: Alignment.center, child: Text( - '$weekDay, $day ${S.of(context).exam_of} $month', + '$weekDay, $day ${S.of(context).of_month} $month', style: Theme.of(context).textTheme.titleLarge, ), );