@@ -20,6 +20,9 @@ typedef String MessageIfAbsent(String messageStr, List<dynamic> args);
2020class MessageLookup extends MessageLookupByLibrary {
2121 String get localeName => 'en' ;
2222
23+ static String m0 (currentPage, totalPages) =>
24+ "Page ${currentPage } of ${totalPages }" ;
25+
2326 final messages = _notInlinedMessages (_notInlinedMessages);
2427 static Map <String , Function > _notInlinedMessages (_) => < String , Function > {
2528 "appName" : MessageLookupByLibrary .simpleMessage ("Flutter Target" ),
@@ -70,6 +73,26 @@ class MessageLookup extends MessageLookupByLibrary {
7073 "Invalid email or password." ,
7174 ),
7275 "noConnection" : MessageLookupByLibrary .simpleMessage ("No connection" ),
76+ "onboardingBack" : MessageLookupByLibrary .simpleMessage ("Back" ),
77+ "onboardingNext" : MessageLookupByLibrary .simpleMessage ("Next" ),
78+ "onboardingPage1Description" : MessageLookupByLibrary .simpleMessage (
79+ "This is the first page of the onboarding flow" ,
80+ ),
81+ "onboardingPage1Title" : MessageLookupByLibrary .simpleMessage ("Welcome" ),
82+ "onboardingPage2Description" : MessageLookupByLibrary .simpleMessage (
83+ "This is the second page of the onboarding flow" ,
84+ ),
85+ "onboardingPage2Title" : MessageLookupByLibrary .simpleMessage ("Discover" ),
86+ "onboardingPage3Description" : MessageLookupByLibrary .simpleMessage (
87+ "This is the third page of the onboarding flow" ,
88+ ),
89+ "onboardingPage3Title" : MessageLookupByLibrary .simpleMessage ("Connect" ),
90+ "onboardingPage4Description" : MessageLookupByLibrary .simpleMessage (
91+ "This is the fourth page of the onboarding flow" ,
92+ ),
93+ "onboardingPage4Title" : MessageLookupByLibrary .simpleMessage ("Get Started" ),
94+ "onboardingPageIndicator" : m0,
95+ "onboardingStart" : MessageLookupByLibrary .simpleMessage ("Start" ),
7396 "passwordInstructions" : MessageLookupByLibrary .simpleMessage (
7497 "Min 8 characters long: 1 uppercase letter, 1 lowercase letter, 1 number, and 1 special character." ,
7598 ),
0 commit comments