fix(i18n): localize hardcoded UI strings

close #1257
This commit is contained in:
edde746
2026-06-06 11:45:34 +02:00
parent f74314bbf0
commit 4c4b18e2cd
64 changed files with 4391 additions and 258 deletions
@@ -232,7 +232,9 @@ class _PlaybackSettingsScreenState extends State<PlaybackSettingsScreen> {
return SettingNavigationTile(
icon: Symbols.open_in_new_rounded,
title: t.externalPlayer.title,
subtitle: useExt ? player.name : t.externalPlayer.off,
subtitle: useExt
? (player.id == 'system_default' ? t.externalPlayer.systemDefault : player.name)
: t.externalPlayer.off,
destinationBuilder: (_) => const ExternalPlayerScreen(),
);
},