Skip to content

Commit

Permalink
changes from review
Browse files Browse the repository at this point in the history
  • Loading branch information
jreidinger committed Nov 16, 2020
1 parent c7d8c05 commit 934bc30
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/lib/bootloader/grub2.rb
Expand Up @@ -210,12 +210,12 @@ def mbr_line
# TRANSLATORS: summary line where %s is disk specified, can be more disks, separated by comma
res = if stage1.mbr?
_(
"Write into MBR of %s (<a href=\"disable_boot_mbr\">do not write</a>)"
"Write it into MBR of %s (<a href=\"disable_boot_mbr\">do not write</a>)"
)
# TRANSLATORS: summary line where %s is disk specified, can be more disks, separated by comma
else
_(
"Do not write into MBR of %s (<a href=\"enable_boot_mbr\">write</a>)"
"Do not write it into MBR of %s (<a href=\"enable_boot_mbr\">write</a>)"
)
end

Expand All @@ -227,14 +227,14 @@ def partition_line
# separated by comma
res = if stage1.boot_partition?
_(
"Write into a partition with /boot - %s" \
"Write it into partition with /boot - %s" \
"(<a href=\"disable_boot_boot\">do not write</a>)"
)
# TRANSLATORS: summary line where %s is partition specified, can be more disks,
# separated by comma
else
_(
"Do not write into a partition with /boot - %s" \
"Do not write it into partition with /boot - %s" \
"(<a href=\"enable_boot_boot\">write</a>)"
)
end
Expand All @@ -246,14 +246,14 @@ def logical_partition_line
# separated by comma
res = if stage1.boot_partition?
_(
"Write into a logical partition with /boot - %s" \
"Write it into logical partition with /boot - %s" \
"(<a href=\"disable_boot_boot\">do not write</a>)"
)
# TRANSLATORS: summary line where %s is partition specified, can be more disks,
# separated by comma
else
_(
"Do not write into a logical partition with /boot - %s" \
"Do not write it into logical partition with /boot - %s" \
"(<a href=\"enable_boot_boot\">write</a>)"
)
end
Expand All @@ -265,14 +265,14 @@ def extended_partition_line
# separated by comma
res = if stage1.extended_boot_partition?
_(
"Write into an extended partition with /boot - %s" \
"Write it into extended partition with /boot - %s" \
"(<a href=\"disable_boot_extended\">do not write</a>)"
)
# TRANSLATORS: summary line where %s is partition specified, can be more disks,
# separated by comma
else
_(
"Do not into an extended partition with /boot - %s" \
"Do not write it into extended partition with /boot - %s" \
"(<a href=\"enable_boot_extended\">write</a>)"
)
end
Expand Down

0 comments on commit 934bc30

Please sign in to comment.