Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions archinstall/lib/interactions/general_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@


class PostInstallationAction(Enum):
EXIT = tr('Exit archinstall')
REBOOT = tr('Reboot system')
EXIT = tr('exit archinstall')
REBOOT = tr('reboot system')
CHROOT = tr('chroot into installation for post-installation configurations')


Expand Down Expand Up @@ -275,6 +275,7 @@ def ask_post_installation(elapsed_time: float | None = None) -> PostInstallation
seconds = int(elapsed_time % 60)
header += f' in {minutes}m{seconds}s' + '\n'
header += tr('What would you like to do next?') + '\n'
header += tr('\nAfter reboot, remove the installation medium') + '\n'

items = [MenuItem(action.value, value=action) for action in PostInstallationAction]
group = MenuItemGroup(items)
Expand Down