fix: fix translation for bluetooth preview_action (#4014)

This commit is contained in:
Mariya 2025-12-20 21:57:29 -05:00 committed by GitHub
parent 17dc001857
commit dee2a84057
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ class ApplicationMenu(AbstractSubMenu[ApplicationConfiguration]):
if item.value is not None:
bluetooth_config: BluetoothConfiguration = item.value
output = 'Bluetooth: '
output = f'{tr("Bluetooth")}: '
output += tr('Enabled') if bluetooth_config.enabled else tr('Disabled')
return output
return None