Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/archinstall
diff options
context:
space:
mode:
authorDaniel <blackrabbit256@gmail.com>2022-02-27 17:41:15 +1100
committerGitHub <noreply@github.com>2022-02-27 07:41:15 +0100
commit391699497d0c15e7eb6a63a1369209f42f311b2c (patch)
treefdec4397e428e4622ac5066cf9915125623233ce /archinstall
parent6a0e3d9e4b31ce443b6a9ff22cc513ef53ab0437 (diff)
Fix #1006 (#1007)
Co-authored-by: Daniel Girtler <girtler.daniel@gmail.com>
Diffstat (limited to 'archinstall')
-rw-r--r--archinstall/lib/user_interaction.py22
1 files changed, 11 insertions, 11 deletions
diff --git a/archinstall/lib/user_interaction.py b/archinstall/lib/user_interaction.py
index 94a05e89..f01f7597 100644
--- a/archinstall/lib/user_interaction.py
+++ b/archinstall/lib/user_interaction.py
@@ -522,7 +522,7 @@ def ask_for_main_filesystem_format(advanced_options=False):
return choice
-def current_partition_layout(partitions :List[Partition], with_idx :bool = False) -> Dict[str, Any]:
+def current_partition_layout(partitions :List[Partition], with_idx :bool = False) -> str:
def do_padding(name, max_len):
spaces = abs(len(str(name)) - max_len) + 2
pad_left = int(spaces / 2)
@@ -563,7 +563,7 @@ def current_partition_layout(partitions :List[Partition], with_idx :bool = False
current_layout += f'{row[:-1]}\n'
- title = _('Current partition layout')
+ title = str(_('Current partition layout'))
return f'\n\n{title}:\n\n{current_layout}'
@@ -597,15 +597,15 @@ def manage_new_and_existing_partitions(block_device :BlockDevice) -> Dict[str, A
# Test code: [part.__dump__() for part in block_device.partitions.values()]
# TODO: Squeeze in BTRFS subvolumes here
- new_partition = _('Create a new partition')
- suggest_partition_layout = _('Suggest partition layout')
- delete_partition = _('Delete a partition')
- delete_all_partitions = _('Clear/Delete all partitions')
- assign_mount_point = _('Assign mount-point for a partition')
- mark_formatted = _('Mark/Unmark a partition to be formatted (wipes data)')
- mark_encrypted = _('Mark/Unmark a partition as encrypted')
- mark_bootable = _('Mark/Unmark a partition as bootable (automatic for /boot)')
- set_filesystem_partition = _('Set desired filesystem for a partition')
+ new_partition = str(_('Create a new partition'))
+ suggest_partition_layout = str(_('Suggest partition layout'))
+ delete_partition = str(_('Delete a partition'))
+ delete_all_partitions = str(_('Clear/Delete all partitions'))
+ assign_mount_point = str(_('Assign mount-point for a partition'))
+ mark_formatted = str(_('Mark/Unmark a partition to be formatted (wipes data)'))
+ mark_encrypted = str(_('Mark/Unmark a partition as encrypted'))
+ mark_bootable = str(_('Mark/Unmark a partition as bootable (automatic for /boot)'))
+ set_filesystem_partition = str(_('Set desired filesystem for a partition'))
while True:
modes = [new_partition, suggest_partition_layout]