Merge pull request #7024 from Stypox/string-fixes

Never use ``android.R.string``s; remove unused ``add`` string
This commit is contained in:
Stypox 2021-08-31 12:00:07 +02:00 committed by GitHub
commit a555aab3e7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
83 changed files with 92 additions and 166 deletions

View file

@ -108,7 +108,7 @@ object LicenseFragmentHelper {
alert.setView(webView)
Localization.assureCorrectAppLanguage(context)
alert.setNegativeButton(
context.getString(R.string.finish)
context.getString(R.string.ok)
) { dialog, _ -> dialog.dismiss() }
alert.show()
}