Skip to content

Commit

Permalink
Change the message when applying rules
Browse files Browse the repository at this point in the history
  • Loading branch information
ukanth committed Feb 16, 2019
1 parent 676153c commit f37fea2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions aFWall/src/main/java/dev/ukanth/ufirewall/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -2269,9 +2269,9 @@ private class RunApply extends AsyncTask<Void, Long, Boolean> {
@Override
protected void onPreExecute() {
runProgress = new MaterialDialog.Builder(MainActivity.this)
.title(R.string.working)
.title(R.string.su_check_title)
.cancelable(false)
.content(enabled ? R.string.applying_rules
.content(enabled ? R.string.su_check_message
: R.string.saving_rules)
.progress(true, 0)
.show();
Expand Down

0 comments on commit f37fea2

Please sign in to comment.