File tree Expand file tree Collapse file tree 5 files changed +34
-0
lines changed
Expand file tree Collapse file tree 5 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -1519,6 +1519,12 @@ abstract class AppLocalizations {
15191519 /// In en, this message translates to:
15201520 /// **'Countries'**
15211521 String get contentTypeCountry;
1522+
1523+ /// Subheadline for loading state on search page
1524+ ///
1525+ /// In en, this message translates to:
1526+ /// **'Searching for {contentType}...'**
1527+ String searchingFor (String contentType);
15221528}
15231529
15241530class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -785,4 +785,9 @@ class AppLocalizationsAr extends AppLocalizations {
785785
786786 @override
787787 String get contentTypeCountry => 'الدول' ;
788+
789+ @override
790+ String searchingFor (String contentType) {
791+ return 'جار البحث عن $contentType ...' ;
792+ }
788793}
Original file line number Diff line number Diff line change @@ -785,4 +785,9 @@ class AppLocalizationsEn extends AppLocalizations {
785785
786786 @override
787787 String get contentTypeCountry => 'Countries' ;
788+
789+ @override
790+ String searchingFor (String contentType) {
791+ return 'Searching for $contentType ...' ;
792+ }
788793}
Original file line number Diff line number Diff line change 10051005 "contentTypeCountry": "الدول",
10061006 "@contentTypeCountry": {
10071007 "description": "Label for Country content type"
1008+ },
1009+ "searchingFor": "جار البحث عن {contentType}...",
1010+ "@searchingFor": {
1011+ "description": "Subheadline for loading state on search page",
1012+ "placeholders": {
1013+ "contentType": {
1014+ "type": "String"
1015+ }
1016+ }
10081017 }
10091018}
Original file line number Diff line number Diff line change 10211021 "contentTypeCountry": "Countries",
10221022 "@contentTypeCountry": {
10231023 "description": "Label for Country content type"
1024+ },
1025+ "searchingFor": "Searching for {contentType}...",
1026+ "@searchingFor": {
1027+ "description": "Subheadline for loading state on search page",
1028+ "placeholders": {
1029+ "contentType": {
1030+ "type": "String"
1031+ }
1032+ }
10241033 }
10251034}
You can’t perform that action at this time.
0 commit comments