Use our own translation for "OK"

I missed this in the PR that it came with, but I guess it'll be useful if we go multiplatform.
This commit is contained in:
arkon
2023-06-24 10:38:34 -04:00
parent 2eca8511cb
commit f344831d58
17 changed files with 21 additions and 21 deletions

View File

@@ -254,7 +254,7 @@ class MainActivity : BaseActivity() {
},
confirmButton = {
TextButton(onClick = { showChangelog = false }) {
Text(text = stringResource(android.R.string.ok))
Text(text = stringResource(R.string.action_ok))
}
},
)

View File

@@ -89,7 +89,7 @@ private fun SetCoverDialog(
},
confirmButton = {
TextButton(onClick = onConfirm) {
Text(stringResource(android.R.string.ok))
Text(stringResource(R.string.action_ok))
}
},
dismissButton = {