summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Lehman <dlehman@redhat.com>2008-02-04 10:05:17 -0600
committerDavid Lehman <dlehman@redhat.com>2008-02-05 10:41:24 -0600
commit45467bbfaf202020864eaba10c66d2f3339c2ba9 (patch)
treee6e7aa72a0821fcf6da63284ebbe9e6e2a357fa2
parent896fe4a34e3f1e264d39e37d08f56a4d21e903ba (diff)
downloadanaconda-45467bbfaf202020864eaba10c66d2f3339c2ba9.tar.gz
anaconda-45467bbfaf202020864eaba10c66d2f3339c2ba9.tar.xz
anaconda-45467bbfaf202020864eaba10c66d2f3339c2ba9.zip
Refer correctly to various encrypted block devs as "devices", not "partitions".
-rwxr-xr-xgui.py4
-rw-r--r--text.py4
2 files changed, 4 insertions, 4 deletions
diff --git a/gui.py b/gui.py
index 0df3ef5cc..f8d969675 100755
--- a/gui.py
+++ b/gui.py
@@ -686,8 +686,8 @@ class luksPassphraseWindow:
class PassphraseEntryWindow:
def __init__(self, device):
xml = gtk.glade.XML(findGladeFile("lukspassphrase.glade"), domain="anaconda")
- self.txt = _("Partition %s is encrypted. In order to "
- "access the partition's contents during "
+ self.txt = _("Device %s is encrypted. In order to "
+ "access the device's contents during "
"installation you must enter the device's "
"passphrase below.") % (device,)
self.win = xml.get_widget("passphraseEntryDialog")
diff --git a/text.py b/text.py
index 000c4d836..f444963c3 100644
--- a/text.py
+++ b/text.py
@@ -272,8 +272,8 @@ class MainExceptionWindow:
class PassphraseEntryWindow:
def __init__(self, screen, device):
self.screen = screen
- self.txt = _("Partition %s is encrypted. In order to "
- "access the partition's contents during "
+ self.txt = _("Device %s is encrypted. In order to "
+ "access the device's contents during "
"installation you must enter the device's "
"passphrase below.") % (device,)
self.rc = None