From 34848794e47124396053ad1ee3882f3acc164733 Mon Sep 17 00:00:00 2001 From: Imran Remtulla Date: Sat, 17 May 2025 00:53:02 -0400 Subject: [PATCH] Fix a few more title case lines (#2284) --- assets/translations/en.json | 4 ++-- lib/pages/apps.dart | 5 ++++- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/assets/translations/en.json b/assets/translations/en.json index acc31b7..b2a70b2 100644 --- a/assets/translations/en.json +++ b/assets/translations/en.json @@ -327,8 +327,8 @@ "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.", "removeAppQuestion": { - "one": "Remove App?", - "other": "Remove Apps?" + "one": "Remove app?", + "other": "Remove apps?" }, "tooManyRequestsTryAgainInMinutes": { "one": "Too many requests (rate limited) - try again in {} minute", diff --git a/lib/pages/apps.dart b/lib/pages/apps.dart index 59f046e..0725830 100644 --- a/lib/pages/apps.dart +++ b/lib/pages/apps.dart @@ -671,6 +671,7 @@ class AppsPageState extends State { formItems.add(GeneratedFormSwitch('updates', label: tr('updateX', args: [ plural('apps', existingUpdateIdsAllOrSelected.length) + .toLowerCase() ]), defaultValue: true)); } @@ -678,6 +679,7 @@ class AppsPageState extends State { formItems.add(GeneratedFormSwitch('installs', label: tr('installX', args: [ plural('apps', newInstallIdsAllOrSelected.length) + .toLowerCase() ]), defaultValue: existingUpdateIdsAllOrSelected.isEmpty)); } @@ -696,7 +698,8 @@ class AppsPageState extends State { newInstallIdsAllOrSelected.length + trackOnlyUpdateIdsAllOrSelected.length; return GeneratedFormModal( - title: tr('changeX', args: [plural('apps', totalApps)]), + title: tr('changeX', + args: [plural('apps', totalApps).toLowerCase()]), items: formItems.map((e) => [e]).toList(), initValid: true, );