mark a couple more strings as translatable

even if a translation being provided seems a bit unlikely
This commit is contained in:
Michael Hudson-Doyle 2021-06-02 13:17:48 +12:00
parent 957fd90699
commit faa9473a25
1 changed files with 2 additions and 2 deletions

View File

@ -57,7 +57,7 @@ def _annotations_disk(disk):
def _annotations_partition(partition): def _annotations_partition(partition):
r = _annotations_generic(partition) r = _annotations_generic(partition)
if partition.flag == "prep": if partition.flag == "prep":
r.append("PReP") r.append(_("PReP"))
if partition.preserve: if partition.preserve:
if partition.grub_device: if partition.grub_device:
# boot loader partition # boot loader partition
@ -78,7 +78,7 @@ def _annotations_partition(partition):
r.append(_("configured")) r.append(_("configured"))
else: else:
r.append(_("unconfigured")) r.append(_("unconfigured"))
r.append("bios_grub") r.append(_("bios_grub"))
elif partition.flag == "extended": elif partition.flag == "extended":
# extended partition # extended partition
r.append(_("extended")) r.append(_("extended"))