Skip to content

Commit 1570776

Browse files
committed
fix(localization): replace hardcoded tooltip with localized value in sources data source
1 parent 1f3c83c commit 1570776

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/content_management/view/sources_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ class _SourcesDataSource extends DataTableSource {
187187
),
188188
IconButton(
189189
icon: const Icon(Icons.archive),
190-
tooltip: 'Archive', // TODO(you): Will be fixed in l10n phase.
190+
tooltip: l10n.archive,
191191
onPressed: () {
192192
// Dispatch delete event
193193
context.read<ContentManagementBloc>().add(

0 commit comments

Comments
 (0)