Skip to content

Commit

Permalink
Fix capitalization of items labels
Browse files Browse the repository at this point in the history
  • Loading branch information
dgdavid committed May 19, 2020
1 parent 023a192 commit 2f75130
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/lib/autoinstall/widgets/storage/used_as.rb
Expand Up @@ -48,17 +48,17 @@ def items
# FIXME: uncomment when support for each type is added
[
# TRANSLATORS: option for setting to not use the partition
[:none, _("Do not use")],
[:none, _("Do Not Use")],
# TRANSLATORS: option for setting the partition to hold a file system
[:filesystem, _("File system")],
[:filesystem, _("File System")],
# TRANSLATORS: option for setting the partition as a RAID member
[:raid, _("RAID member")],
[:raid, _("RAID Member")],
# TRANSLATORS: option for setting the partition as an LVM physical volume
[:lvm_pv, _("LVM physical volume")],
[:lvm_pv, _("LVM Physical Volume")],
# TRANSLATORS: option for setting the partition as a bcache backing device
[:bcache_backing, _("Bcache backing device")]
# ["bcache_caching", _("Bcache caching device")],
# ["btrfs_member", _("Btrfs multi-device member")]
[:bcache_backing, _("Bcache Backing Device")]
# ["bcache_caching", _("Bcache Caching Device")],
# ["btrfs_member", _("Btrfs Multi-device Member")]
]
end
end
Expand Down

0 comments on commit 2f75130

Please sign in to comment.