Skip to content

Commit

Permalink
Merge pull request #53 from SirDank/master
Browse files Browse the repository at this point in the history
spelling correction
  • Loading branch information
epicstudios856 committed Apr 30, 2024
2 parents 6635c6c + f4db2d0 commit 3f9b6a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/src/main/java/com/vectras/vm/CustomRomActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ public void run() {
t.start();

} else {
UIUtils.UIAlert(activity, "please select cvbi vailed file to continue.", "File not supported");
UIUtils.UIAlert(activity, "please select cvbi file to continue.", "File not supported");
}

} else if (requestCode == 1000 && resultCode == RESULT_CANCELED) {
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/vectras/vm/MainActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -776,7 +776,7 @@ public void run() {
}
}).start();
} else
UIAlert(activity, "please select iso file", "NOT VAILED FILE");
UIAlert(activity, "please select iso file", "INVALID FILE");
} else if (requestCode == 1005 && resultCode == RESULT_OK) {
Uri content_describer = ReturnedIntent.getData();
File selectedFilePath = new File(getPath(content_describer));
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/java/com/vectras/vm/SetupQemuActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ public void run() {
}).start();
} else {
alertDialog.show();
UIAlert(activity, "NOT VAILED FILE", "please select vectras-vm-" + abi + ".tar.gz file");
UIAlert(activity, "INVALID FILE", "please select vectras-vm-" + abi + ".tar.gz file");
}
} else
alertDialog.show();
Expand Down

0 comments on commit 3f9b6a6

Please sign in to comment.