diff --git a/mobile/lib/generated/intl/messages_en.dart b/mobile/lib/generated/intl/messages_en.dart index a8f43dd4b9..b2772c72ea 100644 --- a/mobile/lib/generated/intl/messages_en.dart +++ b/mobile/lib/generated/intl/messages_en.dart @@ -1567,6 +1567,7 @@ class MessageLookup extends MessageLookupByLibrary { "weHaveSendEmailTo": m67, "weakStrength": MessageLookupByLibrary.simpleMessage("Weak"), "welcomeBack": MessageLookupByLibrary.simpleMessage("Welcome back!"), + "whatsNew": MessageLookupByLibrary.simpleMessage("What\'s new"), "yearly": MessageLookupByLibrary.simpleMessage("Yearly"), "yearsAgo": m68, "yes": MessageLookupByLibrary.simpleMessage("Yes"), diff --git a/mobile/lib/generated/l10n.dart b/mobile/lib/generated/l10n.dart index 5bc50bc222..83708ad4ca 100644 --- a/mobile/lib/generated/l10n.dart +++ b/mobile/lib/generated/l10n.dart @@ -8933,6 +8933,16 @@ class S { args: [], ); } + + /// `What's new` + String get whatsNew { + return Intl.message( + 'What\'s new', + name: 'whatsNew', + desc: '', + args: [], + ); + } } class AppLocalizationDelegate extends LocalizationsDelegate { diff --git a/mobile/lib/l10n/intl_en.arb b/mobile/lib/l10n/intl_en.arb index 6fa3be30e5..4ca8ab4353 100644 --- a/mobile/lib/l10n/intl_en.arb +++ b/mobile/lib/l10n/intl_en.arb @@ -1249,6 +1249,7 @@ "crop": "Crop", "rotate": "Rotate", "left": "Left", - "right": "Right" + "right": "Right", + "whatsNew": "What's new" } diff --git a/mobile/lib/ui/notification/update/change_log_page.dart b/mobile/lib/ui/notification/update/change_log_page.dart index 90430fae25..12c74bed4b 100644 --- a/mobile/lib/ui/notification/update/change_log_page.dart +++ b/mobile/lib/ui/notification/update/change_log_page.dart @@ -41,7 +41,7 @@ class _ChangeLogPageState extends State { child: const Padding( padding: EdgeInsets.symmetric(horizontal: 16.0), child: TitleBarTitleWidget( - title: "What's new", + title: S.of(context).whatsNew, ), ), ),