Skip to content

Commit 600be46

Browse files
committed
fix(localization): replace hardcoded tooltip with localized value for archive action in topics data source
1 parent 1570776 commit 600be46

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/content_management/view/topics_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ class _TopicsDataSource extends DataTableSource {
180180
),
181181
IconButton(
182182
icon: const Icon(Icons.archive),
183-
tooltip: 'Archive', // TODO(you): Will be fixed in l10n phase.
183+
tooltip: l10n.archive,
184184
onPressed: () {
185185
// Dispatch delete event
186186
context.read<ContentManagementBloc>().add(

0 commit comments

Comments
 (0)