Added HTML reverse sorting (#915)

+ translatable strings (#916)
This commit is contained in:
Imran Remtulla
2023-09-23 13:31:27 -04:00
parent af5377d2eb
commit 68d4083708
16 changed files with 63 additions and 6 deletions

View File

@@ -558,7 +558,7 @@ class _SettingsPageState extends State<SettingsPage> {
Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
const Flexible(child: Text('Debug Menu')),
Flexible(child: Text(tr('debugMenu'))),
Switch(
value: settingsProvider.showDebugOpts,
onChanged: (value) {
@@ -577,12 +577,9 @@ class _SettingsPageState extends State<SettingsPage> {
const Duration(seconds: 0),
bgUpdateCheckAlarmId + 200,
bgUpdateCheck);
showError(
'Background task started - check logs.',
context);
showError(tr('bgTaskStarted'), context);
},
child:
const Text('Run Background Update Check Now'))
child: Text(tr('runBgCheckNow')))
],
),
]),