translation already happens on the text element

This commit is contained in:
bwees 2025-05-21 10:57:49 -05:00
parent 2bbe2ceae1
commit d85938aa11
No known key found for this signature in database

View File

@ -57,12 +57,12 @@ class CastDialog extends ConsumerWidget {
final List<dynamic> 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);
}