mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-27 12:05:30 +00:00
Fix string
This commit is contained in:
parent
068cedaa84
commit
dcbb4eabb5
@ -10,11 +10,11 @@ class RestoreAppDialog : DialogEvent() {
|
|||||||
setTitle(R.string.settings_restore_app_title)
|
setTitle(R.string.settings_restore_app_title)
|
||||||
setMessage(R.string.restore_app_confirmation)
|
setMessage(R.string.restore_app_confirmation)
|
||||||
setButton(MagiskDialog.ButtonType.POSITIVE) {
|
setButton(MagiskDialog.ButtonType.POSITIVE) {
|
||||||
text = R.string.yes
|
text = android.R.string.ok
|
||||||
onClick { HideAPK.restore(dialog.ownerActivity!!) }
|
onClick { HideAPK.restore(dialog.ownerActivity!!) }
|
||||||
}
|
}
|
||||||
setButton(MagiskDialog.ButtonType.NEGATIVE) {
|
setButton(MagiskDialog.ButtonType.NEGATIVE) {
|
||||||
text = R.string.no
|
text = android.R.string.cancel
|
||||||
}
|
}
|
||||||
setCancelable(true)
|
setCancelable(true)
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user