diff options
-rw-r--r-- | iw/partition_gui.py | 6 | ||||
-rw-r--r-- | textw/partition_text.py | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/iw/partition_gui.py b/iw/partition_gui.py index dfaecc752..b6e01b2b5 100644 --- a/iw/partition_gui.py +++ b/iw/partition_gui.py @@ -1176,7 +1176,7 @@ class PartitionWindow(InstallWindow): # # start of editRaidRuquest # - dialog = GnomeDialog(_("Make Raid Device")) + dialog = GnomeDialog(_("Make RAID Device")) dialog.set_parent(self.parent) dialog.append_button (_("OK")) dialog.append_button (_("Cancel")) @@ -1241,7 +1241,7 @@ class PartitionWindow(InstallWindow): row = row + 1 # raid members - maintable.attach(createAlignedLabel(_("Raid Members:")), + maintable.attach(createAlignedLabel(_("RAID Members:")), 0, 1, row, row + 1) # XXX need to pass in currently used partitions for this device @@ -1366,7 +1366,7 @@ class PartitionWindow(InstallWindow): (_("_Edit"), self.editCb), (_("_Delete"), self.deleteCb), (_("_Reset"), self.resetCb), - (_("Make _Raid"), self.makeraidCB)) + (_("Make _RAID"), self.makeraidCB)) for label, cb in ops: labelwid = GtkLabel(label) diff --git a/textw/partition_text.py b/textw/partition_text.py index 1c04d7c67..ea1eaa077 100644 --- a/textw/partition_text.py +++ b/textw/partition_text.py @@ -376,7 +376,7 @@ class PartitionWindow: # make the list of drives for the RAID def makeRaidDriveList(self, request): subgrid = Grid(1, 2) - driveLbl = Label(_("Raid Members:")) + driveLbl = Label(_("RAID Members:")) subgrid.setField(driveLbl, 0, 0) disks = self.diskset.disks.keys() drivelist = CheckboxTree(height=2, scroll=1) |