Skip to content

Commit

Permalink
Review fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
lslezak committed Apr 18, 2024
1 parent d7043a6 commit 60927eb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib/y2storage/device_description.rb
Expand Up @@ -100,7 +100,7 @@ def device_label(device)

# Filesystem name
#
# @param filesystem [Y2Storage::BlkFilesystem]
# @param filesystem [Y2Storage::Filesystems::Base]
# @return [String]
def filesystem_label(filesystem)
label = filesystem.type.to_human_string
Expand Down Expand Up @@ -223,14 +223,14 @@ def snapshot_type_label(lvm_snapshot)
if lvm_snapshot.encrypted? && include_encryption
# TRANSLATORS: %{origin} is replaced by an LVM logical volume name
# (e.g., /dev/vg0/user-data)
_("Encrypted thin Snapshot of %{origin}")
_("Encrypted Thin Snapshot of %{origin}")
else
# TRANSLATORS: %{origin} is replaced by an LVM logical volume name
# (e.g., /dev/vg0/user-data)
_("Thin Snapshot of %{origin}")
end
elsif lvm_snapshot.encrypted? && include_encryption
_("Encrypted snapshot of %{origin}")
_("Encrypted Snapshot of %{origin}")
# TRANSLATORS: %{origin} is replaced by an LVM logical volume name
# (e.g., /dev/vg0/user-data)
else
Expand Down

0 comments on commit 60927eb

Please sign in to comment.