diff --git a/lib/features/email/presentation/widgets/calendar_event/calendar_event_information_widget.dart b/lib/features/email/presentation/widgets/calendar_event/calendar_event_information_widget.dart index 8692b83ec..8caa1c2c1 100644 --- a/lib/features/email/presentation/widgets/calendar_event/calendar_event_information_widget.dart +++ b/lib/features/email/presentation/widgets/calendar_event/calendar_event_information_widget.dart @@ -158,7 +158,7 @@ class CalendarEventInformationWidget extends StatelessWidget { child: Text( AppLocalizations .of(context) - .youAreNotInvitedToThisEventPleaseContactTheOrganiser, + .youAreNotInvitedToThisEventPleaseContactTheOrganizer, style: const TextStyle( fontSize: CalendarEventInformationWidgetStyles .invitationMessageTextSize, diff --git a/lib/l10n/intl_messages.arb b/lib/l10n/intl_messages.arb index 3f364600d..46544c634 100644 --- a/lib/l10n/intl_messages.arb +++ b/lib/l10n/intl_messages.arb @@ -1,5 +1,5 @@ { - "@@last_modified": "2025-06-19T11:06:29.579174", + "@@last_modified": "2025-06-20T15:26:10.574669", "initializing_data": "Initializing data...", "@initializing_data": { "type": "text", @@ -4552,8 +4552,8 @@ "placeholders_order": [], "placeholders": {} }, - "youAreNotInvitedToThisEventPleaseContactTheOrganiser": "You are not invited to this event. Please contact the organiser.", - "@youAreNotInvitedToThisEventPleaseContactTheOrganiser": { + "youAreNotInvitedToThisEventPleaseContactTheOrganizer": "You are not invited to this event. Please contact the organizer.", + "@youAreNotInvitedToThisEventPleaseContactTheOrganizer": { "type": "text", "placeholders_order": [], "placeholders": {} diff --git a/lib/main/localizations/app_localizations.dart b/lib/main/localizations/app_localizations.dart index a55a12ce2..0adb03f1e 100644 --- a/lib/main/localizations/app_localizations.dart +++ b/lib/main/localizations/app_localizations.dart @@ -4795,10 +4795,10 @@ class AppLocalizations { ); } - String get youAreNotInvitedToThisEventPleaseContactTheOrganiser { + String get youAreNotInvitedToThisEventPleaseContactTheOrganizer { return Intl.message( - 'You are not invited to this event. Please contact the organiser.', - name: 'youAreNotInvitedToThisEventPleaseContactTheOrganiser', + 'You are not invited to this event. Please contact the organizer.', + name: 'youAreNotInvitedToThisEventPleaseContactTheOrganizer', ); } }