Skip to content

Commit 86b3a50

Browse files
committed
feat(l10n): add tooltip for row actions menu in table
- Add new localization entries for "moreActions" in both Arabic and English - Provide descriptions for the new entries to clarify their usage
1 parent 139f0d3 commit 86b3a50

File tree

5 files changed

+20
-0
lines changed

5 files changed

+20
-0
lines changed

lib/l10n/app_localizations.dart

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2593,6 +2593,12 @@ abstract class AppLocalizations {
25932593
/// In en, this message translates to:
25942594
/// **'Enable In-Article Ads for {role}'**
25952595
String enableInArticleAdsForRoleLabel(String role);
2596+
2597+
/// Tooltip for the button that opens a menu with more actions for a table row.
2598+
///
2599+
/// In en, this message translates to:
2600+
/// **'More Actions'**
2601+
String get moreActions;
25962602
}
25972603

25982604
class _AppLocalizationsDelegate

lib/l10n/app_localizations_ar.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1387,4 +1387,7 @@ class AppLocalizationsAr extends AppLocalizations {
13871387
String enableInArticleAdsForRoleLabel(String role) {
13881388
return 'تمكين الإعلانات داخل المقال لـ $role';
13891389
}
1390+
1391+
@override
1392+
String get moreActions => 'المزيد من الإجراءات';
13901393
}

lib/l10n/app_localizations_en.dart

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1392,4 +1392,7 @@ class AppLocalizationsEn extends AppLocalizations {
13921392
String enableInArticleAdsForRoleLabel(String role) {
13931393
return 'Enable In-Article Ads for $role';
13941394
}
1395+
1396+
@override
1397+
String get moreActions => 'More Actions';
13951398
}

lib/l10n/arb/app_ar.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1755,5 +1755,9 @@
17551755
"example": "مستخدم ضيف"
17561756
}
17571757
}
1758+
},
1759+
"moreActions": "المزيد من الإجراءات",
1760+
"@moreActions": {
1761+
"description": "تلميح الزر الذي يفتح قائمة تحتوي على المزيد من الإجراءات لصف في الجدول."
17581762
}
17591763
}

lib/l10n/arb/app_en.arb

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1751,5 +1751,9 @@
17511751
"example": "Guest User"
17521752
}
17531753
}
1754+
},
1755+
"moreActions": "More Actions",
1756+
"@moreActions": {
1757+
"description": "Tooltip for the button that opens a menu with more actions for a table row."
17541758
}
17551759
}

0 commit comments

Comments
 (0)