index : archinstall32 | |
Archlinux32 installer | gitolite user |
summaryrefslogtreecommitdiff |
author | Alexmelman88 <99257010+Alexmelman88@users.noreply.github.com> | 2022-05-09 10:58:06 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-05-09 09:58:06 +0200 |
commit | 20ffebac50478554a7582de5e5c1d8b4504ea8be (patch) | |
tree | 730beaba5f54421d646b71427b7ba9c7e629f64f /examples | |
parent | 80cee500e0ef0cf4de84b8b60b35c25f667e7a34 (diff) |
-rw-r--r-- | examples/guided.py | 4 |
diff --git a/examples/guided.py b/examples/guided.py index 1cee499d..b653ea2a 100644 --- a/examples/guided.py +++ b/examples/guided.py @@ -257,7 +257,7 @@ def perform_installation(mountpoint): installation.log("For post-installation tips, see https://wiki.archlinux.org/index.php/Installation_guide#Post-installation", fg="yellow") if not archinstall.arguments.get('silent'): - prompt = 'Would you like to chroot into the newly created installation and perform post-installation configuration?' + prompt = str(_('Would you like to chroot into the newly created installation and perform post-installation configuration?')) choice = Menu(prompt, Menu.yes_no(), default_option=Menu.yes()).run() if choice == Menu.yes(): try: @@ -300,7 +300,7 @@ if archinstall.arguments.get('dry_run'): exit(0) if not archinstall.arguments.get('silent'): - input('Press Enter to continue.') + input(str(_('Press Enter to continue.'))) perform_filesystem_operations() perform_installation(archinstall.storage.get('MOUNT_POINT', '/mnt')) |