File tree Expand file tree Collapse file tree 3 files changed +36
-0
lines changed
Expand file tree Collapse file tree 3 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -236,18 +236,36 @@ abstract class AppLocalizations {
236236 /// **'Headlines'**
237237 String get headlines;
238238
239+ /// Label for the a singular headline
240+ ///
241+ /// In en, this message translates to:
242+ /// **'Headline'**
243+ String get headline;
244+
239245 /// Label for the topics subpage
240246 ///
241247 /// In en, this message translates to:
242248 /// **'Topics'**
243249 String get topics;
244250
251+ /// Label for the a singular topic
252+ ///
253+ /// In en, this message translates to:
254+ /// **'Topic'**
255+ String get topic;
256+
245257 /// Label for the sources subpage
246258 ///
247259 /// In en, this message translates to:
248260 /// **'Sources'**
249261 String get sources;
250262
263+ /// Label for the a singular source
264+ ///
265+ /// In en, this message translates to:
266+ /// **'Source'**
267+ String get source;
268+
251269 /// Label for the app configuration navigation item
252270 ///
253271 /// In en, this message translates to:
Original file line number Diff line number Diff line change @@ -89,12 +89,21 @@ class AppLocalizationsAr extends AppLocalizations {
8989 @override
9090 String get headlines => 'العناوين الرئيسية' ;
9191
92+ @override
93+ String get headline => 'العنوان الرئيسي' ;
94+
9295 @override
9396 String get topics => 'المواضيع' ;
9497
98+ @override
99+ String get topic => 'الموضوع' ;
100+
95101 @override
96102 String get sources => 'المصادر' ;
97103
104+ @override
105+ String get source => 'المصدر' ;
106+
98107 @override
99108 String get appConfiguration => 'إعدادات التطبيق' ;
100109
Original file line number Diff line number Diff line change @@ -88,12 +88,21 @@ class AppLocalizationsEn extends AppLocalizations {
8888 @override
8989 String get headlines => 'Headlines' ;
9090
91+ @override
92+ String get headline => 'Headline' ;
93+
9194 @override
9295 String get topics => 'Topics' ;
9396
97+ @override
98+ String get topic => 'Topic' ;
99+
94100 @override
95101 String get sources => 'Sources' ;
96102
103+ @override
104+ String get source => 'Source' ;
105+
97106 @override
98107 String get appConfiguration => 'App Configuration' ;
99108
You can’t perform that action at this time.
0 commit comments