diff options
author | Mike Fulbright <msf@redhat.com> | 2001-07-06 04:35:08 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2001-07-06 04:35:08 +0000 |
commit | 30af411e6adab18c49fbef05c180ada1b7fcd93f (patch) | |
tree | 558f9c1998093b2c4e34d0d14a0d93688e205e76 /textw | |
parent | fe65db532f05a59a41f19955ebbb03cf9066705f (diff) | |
download | anaconda-30af411e6adab18c49fbef05c180ada1b7fcd93f.tar.gz anaconda-30af411e6adab18c49fbef05c180ada1b7fcd93f.tar.xz anaconda-30af411e6adab18c49fbef05c180ada1b7fcd93f.zip |
add a format column to display in GUI, change name of software RAID
Diffstat (limited to 'textw')
-rw-r--r-- | textw/partition_text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/textw/partition_text.py b/textw/partition_text.py index f0d1a78d0..4fb47fa2a 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -62,7 +62,7 @@ class PartitionWindow: elif part.type & parted.PARTITION_EXTENDED: ptype = _("Extended") elif part.get_flag(parted.PARTITION_RAID) == 1: - ptype = _("software RAID component") + ptype = _("software RAID") elif part.fs_type: if request and request.fstype != None: ptype = request.fstype.getName() |