Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-04-20 20:36:26 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-04-20 20:36:26 +0530
commit8b723c25e2c487c508d2718b06381ca6c2b7d2a0 (patch)
tree9bb226d4c14b9b9cc2617dde02b40c2144ce057e
parent4a9f56ed2d8dba0e116467857305d1992761588c (diff)
changed some strings
-rw-r--r--archinstall/lib/user_interaction.py2
-rw-r--r--examples/guided.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 818590dd..175079ee 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -149,7 +149,7 @@ def ask_for_bootloader() -> str:
if hasUEFI()==False:
bootloader="grub-install"
else:
- bootloader_choice = input("Would you like to use Grub as a bootloader over systemd-boot [y/N] ").lower()
+ bootloader_choice = input("Would you like to use GRUB as a bootloader instead off systemd-boot [y/N] ").lower()
if bootloader_choice == "y":
bootloader="grub-install"
return bootloader
diff --git a/examples/guided.py b/examples/guided.py
index 8308d22c..3d357e2d 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -191,7 +191,7 @@ def ask_user_questions():
# Additional packages (with some light weight error handling for invalid package names)
while True:
if not archinstall.arguments.get('packages', None):
- print("Only packages such as base, base-devel, linux, linux-firmware, efibootmgr(on uefi systems)/grub(on bios systems) and optional profile packages are installed.")
+ print("Only packages such as base, base-devel, linux, linux-firmware, efibootmgr (on UEFI systems)/GRUB (on BIOS systems) and optional profile packages are installed.")
print("If you desire a web browser, such as firefox or chromium, you may specify it in the following prompt.")
archinstall.arguments['packages'] = [package for package in input('Write additional packages to install (space separated, leave blank to skip): ').split(' ') if len(package)]