Minor wording changes (#2226, #2313, #2317, #2338)

This commit is contained in:
Imran Remtulla
2025-06-13 17:22:03 -04:00
parent 7d9a641e24
commit 7d2f215b80
3 changed files with 14 additions and 5 deletions

View File

@ -165,7 +165,10 @@ class _HomePageState extends State<HomePage> {
return GeneratedFormModal(
title: tr(
'importX',
args: [action == 'app' ? tr('app') : tr('appsString')],
args: [
(action == 'app' ? tr('app') : tr('appsString'))
.toLowerCase(),
],
),
items: const [],
additionalWidgets: [
@ -192,7 +195,10 @@ class _HomePageState extends State<HomePage> {
);
// ignore: use_build_context_synchronously
showMessage(
tr('importedX', args: [plural('apps', result.key.length)]),
tr(
'importedX',
args: [plural('apps', result.key.length).toLowerCase()],
),
context,
);
await appsProvider