Make some English strings sentence case (#2338)

This commit is contained in:
Imran Remtulla
2025-07-02 20:40:09 -04:00
parent 0f803b963f
commit cdff0613b3
4 changed files with 17 additions and 8 deletions

View File

@ -138,7 +138,7 @@ class _SettingsPageState extends State<SettingsPage> {
ColorPickerType.wheel: tr('custom'),
},
title: Text(
tr('selectX', args: [tr('colour')]),
tr('selectX', args: [tr('colour').toLowerCase()]),
style: Theme.of(context).textTheme.titleLarge,
),
wheelDiameter: 192,
@ -180,7 +180,7 @@ class _SettingsPageState extends State<SettingsPage> {
var colorPicker = ListTile(
dense: true,
contentPadding: EdgeInsets.zero,
title: Text(tr('selectX', args: [tr('colour')])),
title: Text(tr('selectX', args: [tr('colour').toLowerCase()])),
subtitle: Text(
"${ColorTools.nameThatColor(settingsProvider.themeColor)} "
"(${ColorTools.materialNameAndCode(settingsProvider.themeColor, colorSwatchNameMap: colorsNameMap)})",