feat: Change "Update" to "Show" in Update Available notification

Closes #1959
This commit is contained in:
Ushie 2024-07-03 01:27:13 +03:00
parent fa13d4a538
commit f197760efd
No known key found for this signature in database
GPG Key ID: B3AAD18842E34632
2 changed files with 2 additions and 1 deletions

View File

@ -239,7 +239,7 @@ fun DashboardScreen(
Text(stringResource(R.string.dismiss)) Text(stringResource(R.string.dismiss))
} }
TextButton(onClick = onUpdateClick) { TextButton(onClick = onUpdateClick) {
Text(stringResource(R.string.update)) Text(stringResource(R.string.show))
} }
} }
) )

View File

@ -336,4 +336,5 @@
<string name="local_bundle_description">Import local files from your storage, does not automatically update</string> <string name="local_bundle_description">Import local files from your storage, does not automatically update</string>
<string name="remote_bundle_description">Import remote files from a URL, can automatically update</string> <string name="remote_bundle_description">Import remote files from a URL, can automatically update</string>
<string name="recommended">Recommended</string> <string name="recommended">Recommended</string>
<string name="show">Show</string>
</resources> </resources>