Skip to content

Commit 1f3c83c

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/content_management/view/headlines_page.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ class _HeadlinesDataSource extends DataTableSource {
186186
),
187187
IconButton(
188188
icon: const Icon(Icons.archive),
189-
tooltip: 'Archive', // TODO(you): Will be fixed in l10n phase.
189+
tooltip: l10n.archive,
190190
onPressed: () {
191191
context.read<ContentManagementBloc>().add(
192192
ArchiveHeadlineRequested(headline.id),

0 commit comments

Comments
 (0)