From d85938aa117228d28531eb64c50a8bf923adfb84 Mon Sep 17 00:00:00 2001 From: bwees Date: Wed, 21 May 2025 10:57:49 -0500 Subject: [PATCH] translation already happens on the text element --- mobile/lib/widgets/asset_viewer/cast_dialog.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/lib/widgets/asset_viewer/cast_dialog.dart b/mobile/lib/widgets/asset_viewer/cast_dialog.dart index 0c48f4837c..5ae27af1e3 100644 --- a/mobile/lib/widgets/asset_viewer/cast_dialog.dart +++ b/mobile/lib/widgets/asset_viewer/cast_dialog.dart @@ -57,12 +57,12 @@ class CastDialog extends ConsumerWidget { final List sectionedList = []; if (connected.isNotEmpty) { - sectionedList.add("connected_device".tr()); + sectionedList.add("connected_device"); sectionedList.addAll(connected); } if (others.isNotEmpty) { - sectionedList.add("discovered_devices".tr()); + sectionedList.add("discovered_devices"); sectionedList.addAll(others); }