File tree Expand file tree Collapse file tree 5 files changed +61
-1
lines changed
Expand file tree Collapse file tree 5 files changed +61
-1
lines changed Original file line number Diff line number Diff line change @@ -1525,6 +1525,24 @@ abstract class AppLocalizations {
15251525 /// In en, this message translates to:
15261526 /// **'Searching for {contentType}...'**
15271527 String searchingFor (String contentType);
1528+
1529+ /// Label for the light font weight option
1530+ ///
1531+ /// In en, this message translates to:
1532+ /// **'Light'**
1533+ String get settingsAppearanceFontWeightLight;
1534+
1535+ /// Label for the regular font weight option
1536+ ///
1537+ /// In en, this message translates to:
1538+ /// **'Regular'**
1539+ String get settingsAppearanceFontWeightRegular;
1540+
1541+ /// Label for the bold font weight option
1542+ ///
1543+ /// In en, this message translates to:
1544+ /// **'Bold'**
1545+ String get settingsAppearanceFontWeightBold;
15281546}
15291547
15301548class _AppLocalizationsDelegate
Original file line number Diff line number Diff line change @@ -790,4 +790,13 @@ class AppLocalizationsAr extends AppLocalizations {
790790 String searchingFor (String contentType) {
791791 return 'جار البحث عن $contentType ...' ;
792792 }
793+
794+ @override
795+ String get settingsAppearanceFontWeightLight => 'صغير' ;
796+
797+ @override
798+ String get settingsAppearanceFontWeightRegular => 'عادي' ;
799+
800+ @override
801+ String get settingsAppearanceFontWeightBold => 'عريض' ;
793802}
Original file line number Diff line number Diff line change @@ -790,4 +790,13 @@ class AppLocalizationsEn extends AppLocalizations {
790790 String searchingFor (String contentType) {
791791 return 'Searching for $contentType ...' ;
792792 }
793+
794+ @override
795+ String get settingsAppearanceFontWeightLight => 'Light' ;
796+
797+ @override
798+ String get settingsAppearanceFontWeightRegular => 'Regular' ;
799+
800+ @override
801+ String get settingsAppearanceFontWeightBold => 'Bold' ;
793802}
Original file line number Diff line number Diff line change 10121012 "type": "String"
10131013 }
10141014 }
1015+ },
1016+ "settingsAppearanceFontWeightLight": "صغير",
1017+ "@settingsAppearanceFontWeightLight": {
1018+ "description": "Label for the light font weight option"
1019+ },
1020+ "settingsAppearanceFontWeightRegular": "عادي",
1021+ "@settingsAppearanceFontWeightRegular": {
1022+ "description": "Label for the regular font weight option"
1023+ },
1024+ "settingsAppearanceFontWeightBold": "عريض",
1025+ "@settingsAppearanceFontWeightBold": {
1026+ "description": "Label for the bold font weight option"
10151027 }
1016- }
1028+ }
Original file line number Diff line number Diff line change 10301030 "type": "String"
10311031 }
10321032 }
1033+ },
1034+ "settingsAppearanceFontWeightLight": "Light",
1035+ "@settingsAppearanceFontWeightLight": {
1036+ "description": "Label for the light font weight option"
1037+ },
1038+ "settingsAppearanceFontWeightRegular": "Regular",
1039+ "@settingsAppearanceFontWeightRegular": {
1040+ "description": "Label for the regular font weight option"
1041+ },
1042+ "settingsAppearanceFontWeightBold": "Bold",
1043+ "@settingsAppearanceFontWeightBold": {
1044+ "description": "Label for the bold font weight option"
10331045 }
10341046}
You can’t perform that action at this time.
0 commit comments