Skip to content

Commit 2799f65

Browse files
committed
feat(localization): add archived topics and sources translations
1 parent 13f519e commit 2799f65

File tree

5 files changed

+180
-0
lines changed

5 files changed

+180
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1699,6 +1699,60 @@ abstract class AppLocalizations {
16991699
/// In en, this message translates to:
17001700
/// **'Delete Forever'**
17011701
String get deleteForever;
1702+
1703+
/// Title for the Archived Topics page
1704+
///
1705+
/// In en, this message translates to:
1706+
/// **'Archived Topics'**
1707+
String get archivedTopics;
1708+
1709+
/// Headline for loading state of archived topics
1710+
///
1711+
/// In en, this message translates to:
1712+
/// **'Loading Archived Topics'**
1713+
String get loadingArchivedTopics;
1714+
1715+
/// Message when no archived topics are found
1716+
///
1717+
/// In en, this message translates to:
1718+
/// **'No archived topics found.'**
1719+
String get noArchivedTopicsFound;
1720+
1721+
/// Title for the Archived Sources page
1722+
///
1723+
/// In en, this message translates to:
1724+
/// **'Archived Sources'**
1725+
String get archivedSources;
1726+
1727+
/// Headline for loading state of archived sources
1728+
///
1729+
/// In en, this message translates to:
1730+
/// **'Loading Archived Sources'**
1731+
String get loadingArchivedSources;
1732+
1733+
/// Message when no archived sources are found
1734+
///
1735+
/// In en, this message translates to:
1736+
/// **'No archived sources found.'**
1737+
String get noArchivedSourcesFound;
1738+
1739+
/// Tooltip for the archived items button
1740+
///
1741+
/// In en, this message translates to:
1742+
/// **'Archived Items'**
1743+
String get archivedItems;
1744+
1745+
/// Tooltip for the add new item button
1746+
///
1747+
/// In en, this message translates to:
1748+
/// **'Add New Item'**
1749+
String get addNewItem;
1750+
1751+
/// Tooltip for the archive button
1752+
///
1753+
/// In en, this message translates to:
1754+
/// **'Archive'**
1755+
String get archive;
17021756
}
17031757

17041758
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -895,4 +895,31 @@ class AppLocalizationsAr extends AppLocalizations {
895895

896896
@override
897897
String get deleteForever => 'حذف نهائي';
898+
899+
@override
900+
String get archivedTopics => 'المواضيع المؤرشفة';
901+
902+
@override
903+
String get loadingArchivedTopics => 'جاري تحميل المواضيع المؤرشفة';
904+
905+
@override
906+
String get noArchivedTopicsFound => 'لم يتم العثور على مواضيع مؤرشفة.';
907+
908+
@override
909+
String get archivedSources => 'المصادر المؤرشفة';
910+
911+
@override
912+
String get loadingArchivedSources => 'جاري تحميل المصادر المؤرشفة';
913+
914+
@override
915+
String get noArchivedSourcesFound => 'لم يتم العثور على مصادر مؤرشفة.';
916+
917+
@override
918+
String get archivedItems => 'العناصر المؤرشفة';
919+
920+
@override
921+
String get addNewItem => 'إضافة عنصر جديد';
922+
923+
@override
924+
String get archive => 'أرشفة';
898925
}

lib/l10n/app_localizations_en.dart

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -894,4 +894,31 @@ class AppLocalizationsEn extends AppLocalizations {
894894

895895
@override
896896
String get deleteForever => 'Delete Forever';
897+
898+
@override
899+
String get archivedTopics => 'Archived Topics';
900+
901+
@override
902+
String get loadingArchivedTopics => 'Loading Archived Topics';
903+
904+
@override
905+
String get noArchivedTopicsFound => 'No archived topics found.';
906+
907+
@override
908+
String get archivedSources => 'Archived Sources';
909+
910+
@override
911+
String get loadingArchivedSources => 'Loading Archived Sources';
912+
913+
@override
914+
String get noArchivedSourcesFound => 'No archived sources found.';
915+
916+
@override
917+
String get archivedItems => 'Archived Items';
918+
919+
@override
920+
String get addNewItem => 'Add New Item';
921+
922+
@override
923+
String get archive => 'Archive';
897924
}

lib/l10n/arb/app_ar.arb

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,5 +1113,41 @@
11131113
"deleteForever": "حذف نهائي",
11141114
"@deleteForever": {
11151115
"description": "تلميح لزر الحذف النهائي"
1116+
},
1117+
"archivedTopics": "المواضيع المؤرشفة",
1118+
"@archivedTopics": {
1119+
"description": "عنوان صفحة المواضيع المؤرشفة"
1120+
},
1121+
"loadingArchivedTopics": "جاري تحميل المواضيع المؤرشفة",
1122+
"@loadingArchivedTopics": {
1123+
"description": "عنوان حالة تحميل المواضيع المؤرشفة"
1124+
},
1125+
"noArchivedTopicsFound": "لم يتم العثور على مواضيع مؤرشفة.",
1126+
"@noArchivedTopicsFound": {
1127+
"description": "رسالة عند عدم العثور على مواضيع مؤرشفة"
1128+
},
1129+
"archivedSources": "المصادر المؤرشفة",
1130+
"@archivedSources": {
1131+
"description": "عنوان صفحة المصادر المؤرشفة"
1132+
},
1133+
"loadingArchivedSources": "جاري تحميل المصادر المؤرشفة",
1134+
"@loadingArchivedSources": {
1135+
"description": "عنوان حالة تحميل المصادر المؤرشفة"
1136+
},
1137+
"noArchivedSourcesFound": "لم يتم العثور على مصادر مؤرشفة.",
1138+
"@noArchivedSourcesFound": {
1139+
"description": "رسالة عند عدم العثور على مصادر مؤرشفة"
1140+
},
1141+
"archivedItems": "العناصر المؤرشفة",
1142+
"@archivedItems": {
1143+
"description": "تلميح لزر العناصر المؤرشفة"
1144+
},
1145+
"addNewItem": "إضافة عنصر جديد",
1146+
"@addNewItem": {
1147+
"description": "تلميح لزر إضافة عنصر جديد"
1148+
},
1149+
"archive": "أرشفة",
1150+
"@archive": {
1151+
"description": "تلميح لزر الأرشفة"
11161152
}
11171153
}

lib/l10n/arb/app_en.arb

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1113,5 +1113,41 @@
11131113
"deleteForever": "Delete Forever",
11141114
"@deleteForever": {
11151115
"description": "Tooltip for the delete forever button"
1116+
},
1117+
"archivedTopics": "Archived Topics",
1118+
"@archivedTopics": {
1119+
"description": "Title for the Archived Topics page"
1120+
},
1121+
"loadingArchivedTopics": "Loading Archived Topics",
1122+
"@loadingArchivedTopics": {
1123+
"description": "Headline for loading state of archived topics"
1124+
},
1125+
"noArchivedTopicsFound": "No archived topics found.",
1126+
"@noArchivedTopicsFound": {
1127+
"description": "Message when no archived topics are found"
1128+
},
1129+
"archivedSources": "Archived Sources",
1130+
"@archivedSources": {
1131+
"description": "Title for the Archived Sources page"
1132+
},
1133+
"loadingArchivedSources": "Loading Archived Sources",
1134+
"@loadingArchivedSources": {
1135+
"description": "Headline for loading state of archived sources"
1136+
},
1137+
"noArchivedSourcesFound": "No archived sources found.",
1138+
"@noArchivedSourcesFound": {
1139+
"description": "Message when no archived sources are found"
1140+
},
1141+
"archivedItems": "Archived Items",
1142+
"@archivedItems": {
1143+
"description": "Tooltip for the archived items button"
1144+
},
1145+
"addNewItem": "Add New Item",
1146+
"@addNewItem": {
1147+
"description": "Tooltip for the add new item button"
1148+
},
1149+
"archive": "Archive",
1150+
"@archive": {
1151+
"description": "Tooltip for the archive button"
11161152
}
11171153
}

0 commit comments

Comments
 (0)