Description
The toggle for showing external sources in the list tile appearance preferences uses the wrong localization key, causing the raw key to be displayed instead of translated text.
Details
In lib/routes/preferences/transaction_list_item_appearance_preferences_page.dart (line 95), the code uses:
preferences.transactions.listTile.transactionListTileShowExternalSource
But in en.json (and all other language files) the key is:
preferences.transactions.listTile.showExternalSource
This affects all languages — the translated text is never shown.
Screenshot
Fix
Change the key in the Dart code to match the localization files.
Description
The toggle for showing external sources in the list tile appearance preferences uses the wrong localization key, causing the raw key to be displayed instead of translated text.
Details
In
lib/routes/preferences/transaction_list_item_appearance_preferences_page.dart(line 95), the code uses:But in
en.json(and all other language files) the key is:This affects all languages — the translated text is never shown.
Screenshot
Fix
Change the key in the Dart code to match the localization files.