fix: Localize 'Manage Libraries' dialog title

Use t.libraries.manageLibraries translation key instead of hardcoded English string.
This commit is contained in:
dwk001
2026-01-18 15:14:42 -05:00
parent ca9b6a9ecd
commit 91b11a5137
+4 -4
View File
@@ -1433,11 +1433,11 @@ class _LibraryManagementSheetState extends State<_LibraryManagementSheet> {
return Dialog(
child: Scaffold(
appBar: AppBar(
title: const Row(
title: Row(
children: [
AppIcon(Symbols.edit_rounded, fill: 1),
SizedBox(width: 12),
Text('Manage Libraries'),
const AppIcon(Symbols.edit_rounded, fill: 1),
const SizedBox(width: 12),
Text(t.libraries.manageLibraries),
],
),
automaticallyImplyLeading: false,