mirror of
https://github.com/ImranR98/Obtainium.git
synced 2025-07-12 21:06:43 +02:00
Make some English strings sentence case (#2338)
This commit is contained in:
@ -37,7 +37,7 @@
|
||||
"cancelled": "Cancelled",
|
||||
"appAlreadyAdded": "App already added",
|
||||
"alreadyUpToDateQuestion": "App already up to date?",
|
||||
"addApp": "Add App",
|
||||
"addApp": "Add app",
|
||||
"appSourceURL": "App source URL",
|
||||
"error": "Error",
|
||||
"add": "Add",
|
||||
@ -88,7 +88,7 @@
|
||||
"author": "Author",
|
||||
"upToDateApps": "Up to date apps",
|
||||
"nonInstalledApps": "Non-installed apps",
|
||||
"importExport": "Import/Export",
|
||||
"importExport": "Import/export",
|
||||
"settings": "Settings",
|
||||
"exportedTo": "Exported to {}",
|
||||
"obtainiumExport": "Obtainium export",
|
||||
|
@ -312,7 +312,10 @@ class AddAppPageState extends State<AddAppPage> {
|
||||
context: context,
|
||||
builder: (BuildContext ctx) {
|
||||
return SelectionModal(
|
||||
title: tr('selectX', args: [plural('source', 2)]),
|
||||
title: tr(
|
||||
'selectX',
|
||||
args: [plural('source', 2).toLowerCase()],
|
||||
),
|
||||
entries: sourceStrings,
|
||||
selectedByDefault: true,
|
||||
onlyOneSelectionAllowed: false,
|
||||
|
@ -272,7 +272,9 @@ class _ImportExportPageState extends State<ImportExportPage> {
|
||||
showMessage(
|
||||
tr(
|
||||
'importedX',
|
||||
args: [plural('apps', selectedUrls.length)],
|
||||
args: [
|
||||
plural('apps', selectedUrls.length).toLowerCase(),
|
||||
],
|
||||
),
|
||||
context,
|
||||
);
|
||||
@ -339,7 +341,7 @@ class _ImportExportPageState extends State<ImportExportPage> {
|
||||
showMessage(
|
||||
tr(
|
||||
'importedX',
|
||||
args: [plural('apps', selectedUrls.length)],
|
||||
args: [plural('apps', selectedUrls.length).toLowerCase()],
|
||||
),
|
||||
context,
|
||||
);
|
||||
@ -512,7 +514,11 @@ class _ImportExportPageState extends State<ImportExportPage> {
|
||||
return SelectionModal(
|
||||
title: tr(
|
||||
'selectX',
|
||||
args: [tr('source')],
|
||||
args: [
|
||||
tr(
|
||||
'source',
|
||||
).toLowerCase(),
|
||||
],
|
||||
),
|
||||
entries: sourceStrings,
|
||||
selectedByDefault: false,
|
||||
|
@ -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)})",
|
||||
|
Reference in New Issue
Block a user