mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-04-18 17:40:22 +02:00
Fix delete store message formatting (#975)
This commit is contained in:
parent
c9a3462372
commit
98a91de716
|
|
@ -157,7 +157,7 @@ class GitServerConfigActivity : BaseGitActivity() {
|
|||
!(localDirFiles.size == 1 && localDirFiles[0].name == ".git")) {
|
||||
MaterialAlertDialogBuilder(this)
|
||||
.setTitle(R.string.dialog_delete_title)
|
||||
.setMessage(resources.getString(R.string.dialog_delete_msg) + " " + localDir.toString())
|
||||
.setMessage(resources.getString(R.string.dialog_delete_msg, localDir.toString()))
|
||||
.setCancelable(false)
|
||||
.setPositiveButton(R.string.dialog_delete) { dialog, _ ->
|
||||
try {
|
||||
|
|
|
|||
Loading…
Reference in a new issue