Fix a few more title case lines (#2284)

This commit is contained in:
Imran Remtulla
2025-05-17 00:53:02 -04:00
parent ab3489f60d
commit 34848794e4
2 changed files with 6 additions and 3 deletions

View File

@@ -327,8 +327,8 @@
"welcome": "Welcome", "welcome": "Welcome",
"documentationLinksNote": "The Obtainium GitHub page linked below contains links to videos, articles, discussions and other resources that will help you understand how to use the app.", "documentationLinksNote": "The Obtainium GitHub page linked below contains links to videos, articles, discussions and other resources that will help you understand how to use the app.",
"removeAppQuestion": { "removeAppQuestion": {
"one": "Remove App?", "one": "Remove app?",
"other": "Remove Apps?" "other": "Remove apps?"
}, },
"tooManyRequestsTryAgainInMinutes": { "tooManyRequestsTryAgainInMinutes": {
"one": "Too many requests (rate limited) - try again in {} minute", "one": "Too many requests (rate limited) - try again in {} minute",

View File

@@ -671,6 +671,7 @@ class AppsPageState extends State<AppsPage> {
formItems.add(GeneratedFormSwitch('updates', formItems.add(GeneratedFormSwitch('updates',
label: tr('updateX', args: [ label: tr('updateX', args: [
plural('apps', existingUpdateIdsAllOrSelected.length) plural('apps', existingUpdateIdsAllOrSelected.length)
.toLowerCase()
]), ]),
defaultValue: true)); defaultValue: true));
} }
@@ -678,6 +679,7 @@ class AppsPageState extends State<AppsPage> {
formItems.add(GeneratedFormSwitch('installs', formItems.add(GeneratedFormSwitch('installs',
label: tr('installX', args: [ label: tr('installX', args: [
plural('apps', newInstallIdsAllOrSelected.length) plural('apps', newInstallIdsAllOrSelected.length)
.toLowerCase()
]), ]),
defaultValue: existingUpdateIdsAllOrSelected.isEmpty)); defaultValue: existingUpdateIdsAllOrSelected.isEmpty));
} }
@@ -696,7 +698,8 @@ class AppsPageState extends State<AppsPage> {
newInstallIdsAllOrSelected.length + newInstallIdsAllOrSelected.length +
trackOnlyUpdateIdsAllOrSelected.length; trackOnlyUpdateIdsAllOrSelected.length;
return GeneratedFormModal( return GeneratedFormModal(
title: tr('changeX', args: [plural('apps', totalApps)]), title: tr('changeX',
args: [plural('apps', totalApps).toLowerCase()]),
items: formItems.map((e) => [e]).toList(), items: formItems.map((e) => [e]).toList(),
initValid: true, initValid: true,
); );