diff options
author | Mike Fulbright <msf@redhat.com> | 2002-07-12 02:01:36 +0000 |
---|---|---|
committer | Mike Fulbright <msf@redhat.com> | 2002-07-12 02:01:36 +0000 |
commit | 0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e (patch) | |
tree | e8e7bceba0cc8e07e8ce98bb5c2bdbbcd4888267 /iw/fdisk_gui.py | |
parent | 3fa09b6811591026daa27fd67bdc75494558ce25 (diff) | |
download | anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.tar.gz anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.tar.xz anaconda-0861c76f6d81f5c623eb1accb1a27ea0bf9fcc2e.zip |
Changes as per Milan Documentation String Review
Diffstat (limited to 'iw/fdisk_gui.py')
-rw-r--r-- | iw/fdisk_gui.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/iw/fdisk_gui.py b/iw/fdisk_gui.py index 22a33ffab..e6a46c1a8 100644 --- a/iw/fdisk_gui.py +++ b/iw/fdisk_gui.py @@ -23,7 +23,7 @@ import os class FDiskWindow (InstallWindow): def __init__ (self, ics): InstallWindow.__init__ (self, ics) - ics.setTitle (_("fdisk")) + ics.setTitle (_("Partitioning with fdisk")) ics.readHTML ("fdisk") def getNext(self): @@ -97,7 +97,7 @@ class FDiskWindow (InstallWindow): self.buttonBox.set_border_width (5) box = gtk.VButtonBox () box.set_layout("start") - label = gtk.Label (_("Select drive to run fdisk on")) + label = gtk.Label (_("Select a drive to partition with fdisk:")) drives = self.diskset.driveList() |