diff options
author | John Estabrook <jestabro@vyos.io> | 2023-10-29 20:07:55 -0500 |
---|---|---|
committer | John Estabrook <jestabro@vyos.io> | 2023-11-16 12:19:15 -0600 |
commit | cdc5fddfd796ccf7cfe35d2501cb1da380df53b2 (patch) | |
tree | 75c59245db5ca9e07b095d0588b6cf4c28f31d51 /src | |
parent | aae1247da61206d7a1b0b4d6ee20d36d194dbaba (diff) | |
download | vyos-1x-cdc5fddfd796ccf7cfe35d2501cb1da380df53b2.tar.gz vyos-1x-cdc5fddfd796ccf7cfe35d2501cb1da380df53b2.zip |
image: T4516: reword some messages and prompts
Diffstat (limited to 'src')
-rwxr-xr-x | src/op_mode/image_installer.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/op_mode/image_installer.py b/src/op_mode/image_installer.py index 894eb6ee9..88d5eeb48 100755 --- a/src/op_mode/image_installer.py +++ b/src/op_mode/image_installer.py @@ -39,10 +39,10 @@ MSG_ERR_NOT_LIVE: str = 'The system is already installed. Please use "add system MSG_ERR_LIVE: str = 'The system is in live-boot mode. Please use "install image" instead.' MSG_ERR_NO_DISK: str = 'No suitable disk was found. There must be at least one disk of 2GB or greater size.' MSG_ERR_IMPROPER_IMAGE: str = 'Missing sha256sum.txt.\nEither this image is corrupted, or of era 1.2.x (md5sum) and would downgrade image tools;\ndisallowed in either case.' -MSG_INFO_INSTALL_WELCOME: str = 'Welcome to VyOS installation!\nThis command will install the VyOS to your permanent storage.' -MSG_INFO_INSTALL_EXIT: str = 'Exitting from VyOS installation' +MSG_INFO_INSTALL_WELCOME: str = 'Welcome to VyOS installation!\nThis command will install VyOS to your permanent storage.' +MSG_INFO_INSTALL_EXIT: str = 'Exiting from VyOS installation' MSG_INFO_INSTALL_SUCCESS: str = 'The image installed successfully; please reboot now.' -MSG_INFO_INSTALL_DISKS_LIST: str = 'Were found the next disks:' +MSG_INFO_INSTALL_DISKS_LIST: str = 'The following disks were found:' MSG_INFO_INSTALL_DISK_SELECT: str = 'Which one should be used for installation?' MSG_INFO_INSTALL_DISK_CONFIRM: str = 'Installation will delete all data on the drive. Continue?' MSG_INFO_INSTALL_PARTITONING: str = 'Creating partition table...' @@ -50,8 +50,8 @@ MSG_INPUT_CONFIG_FOUND: str = 'An active configuration was found. Would you like MSG_INPUT_IMAGE_NAME: str = 'What would you like to name this image?' MSG_INPUT_IMAGE_DEFAULT: str = 'Would you like to set a new image as default one for boot?' MSG_INPUT_PASSWORD: str = 'Please enter a password for the "vyos" user' -MSG_INPUT_ROOT_SIZE_ALL: str = 'Would you like to use all free space on the drive?' -MSG_INPUT_ROOT_SIZE_SET: str = 'What should be a size (in GB) of the root partition (min is 1.5 GB)?' +MSG_INPUT_ROOT_SIZE_ALL: str = 'Would you like to use all the free space on the drive?' +MSG_INPUT_ROOT_SIZE_SET: str = 'Please specify the size (in GB) of the root partition (min is 1.5 GB)?' MSG_INPUT_CONSOLE_TYPE: str = 'What console should be used by default? (K: KVM, S: Serial, U: USB-Serial)?' MSG_WARN_ISO_SIGN_INVALID: str = 'Signature is not valid. Do you want to continue with installation?' MSG_WARN_ISO_SIGN_UNAVAL: str = 'Signature is not available. Do you want to continue with installation?' |