rephrase infobox

This commit is contained in:
Tobias Powalowski 2023-01-10 07:57:26 +01:00
parent 3884d80a17
commit 8d4b73187a
2 changed files with 3 additions and 3 deletions

View file

@ -269,7 +269,7 @@ _btrfs_subvolume() {
_btrfs_compress() {
_BTRFS_COMPRESSLEVELS="zstd - lzo - zlib - NONE -"
#shellcheck disable=SC2086
_dialog --menu "Select the compression method you want to use:\n-> ${_PART} subvolume=${_BTRFS_SUBVOLUME}" 12 50 10 ${_BTRFS_COMPRESSLEVELS} 2>"${_ANSWER}" || return 1
_dialog --menu "Select the compression method you want to use:\nDevice -> ${_PART} subvolume=${_BTRFS_SUBVOLUME}" 12 50 10 ${_BTRFS_COMPRESSLEVELS} 2>"${_ANSWER}" || return 1
if [[ "$(cat ${_ANSWER})" == "NONE" ]]; then
_BTRFS_COMPRESS="NONE"
else

View file

@ -130,9 +130,9 @@ _mountpoints() {
if [[ -z "${_NAME_SCHEME_PARAMETER_RUN}" ]]; then
_set_device_name_scheme || return 1
fi
_dialog --infobox "Scanning devices ..." 3 40
_dialog --infobox "Scanning blockdevices for sizes ..." 3 40
_dialog --cr-wrap --msgbox "Available partitions:\n\n$(_getavailpartitions)\n" 0 0
_dialog --infobox "Scanning devices ..." 3 40
_dialog --infobox "Scanning blockdevices for selection ..." 3 40
_PARTS=$(_findpartitions _)
_DO_SWAP=""
while [[ "${_DO_SWAP}" != "DONE" ]]; do