Clearer wording

This commit is contained in:
Imran Remtulla
2024-01-19 00:12:43 -05:00
parent 15a34e53bf
commit b173b1300a
21 changed files with 45 additions and 45 deletions

View File

@@ -94,7 +94,7 @@ class _AppPageState extends State<AppPage> {
app?.app.latestVersion ?? tr('unknown')
])}\n${tr('installedVersionX', args: [
app?.app.installedVersion ?? tr('none')
])}${installedVersionIsEstimate ? '\n${tr('estimateInBrackets')}' : ''}',
])}${installedVersionIsEstimate ? '\n${tr('pseudoVersion')}' : ''}',
textAlign: TextAlign.end,
style: Theme.of(context).textTheme.bodyLarge!,
),

View File

@@ -421,7 +421,7 @@ class AppsPageState extends State<AppsPage> {
}
getVersionText(int appIndex) {
return '${listedApps[appIndex].app.installedVersion ?? tr('notInstalled')}${listedApps[appIndex].app.additionalSettings['trackOnly'] == true ? ' ${tr('estimateInBrackets')}' : ''}';
return '${listedApps[appIndex].app.installedVersion ?? tr('notInstalled')}${listedApps[appIndex].app.additionalSettings['trackOnly'] == true ? ' ${tr('pseudoVersion')}' : ''}';
}
getChangesButtonString(int appIndex, bool hasChangeLogFn) {

View File

@@ -480,7 +480,7 @@ abstract class AppSource {
],
[
GeneratedFormSwitch('versionDetection',
label: tr('versionDetection'), defaultValue: true)
label: tr('versionDetectionExplanation'), defaultValue: true)
],
[
GeneratedFormSwitch('useVersionCodeAsOSVersion',