Skip to content

Commit

Permalink
fix translations in blk_device_resize.rb (bsc#1081598)
Browse files Browse the repository at this point in the history
  • Loading branch information
wfeldt committed Mar 7, 2018
1 parent 83b1bcb commit 217c231
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/y2partitioner/dialogs/blk_device_resize.rb
Expand Up @@ -117,15 +117,15 @@ def current_size_info
size = device.size.to_human_string
# TRANSLATORS: label for current size of the partition or LVM logical volume,
# where %{size} is replaced by a size (e.g., 5.5 GiB)
Left(Label(format("Current size: %{size}", size: size)))
Left(Label(format(_("Current size: %{size}"), size: size)))
end

# Widget for used size
def used_size_info
size = used_size.to_human_string
# TRANSLATORS: label for currently used size of the partition or LVM volume,
# where %{size} is replaced by a size (e.g., 5.5 GiB)
Left(Label(format("Currently used: %{size}", size: size)))
Left(Label(format(_("Currently used: %{size}"), size: size)))
end
end

Expand Down

0 comments on commit 217c231

Please sign in to comment.