summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Zeuthen <davidz@redhat.com>2009-03-31 17:23:45 -0400
committerDavid Zeuthen <davidz@redhat.com>2009-03-31 17:23:45 -0400
commite2dabdb585a18624f893757fcfaa9d8bd3d0d1ad (patch)
tree9b2859a6585c04ef0d0ecf39c33dc4ef0033c495
parent205ce577f49e5ffeb162063d7a75fe8702922ca3 (diff)
downloadgnome-disk-utility-e2dabdb585a18624f893757fcfaa9d8bd3d0d1ad.tar.gz
gnome-disk-utility-e2dabdb585a18624f893757fcfaa9d8bd3d0d1ad.tar.xz
gnome-disk-utility-e2dabdb585a18624f893757fcfaa9d8bd3d0d1ad.zip
bug 576435 – confusing luks labeling
> the lock/unlock buttons only work on the encrypted partition, not on the child > partition that I get when unlocking. I think that is _slightly_ confusing, > since the child partition is described as "Unlocked Encrypted LUKS Volume", and > I would expect that I can lock something again that is described as "unlocked". We're going to call it "Cleartext LUKS Device" to avoid this confusion. http://bugzilla.gnome.org/show_bug.cgi?id=576435
-rw-r--r--src/palimpsest/gdu-shell.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/palimpsest/gdu-shell.c b/src/palimpsest/gdu-shell.c
index 7f416e9..c5ddb19 100644
--- a/src/palimpsest/gdu-shell.c
+++ b/src/palimpsest/gdu-shell.c
@@ -366,7 +366,7 @@ details_update (GduShell *shell)
if (gdu_device_is_luks_cleartext (device)) {
g_ptr_array_add (details,
- g_strdup (_("Unlocked Encrypted LUKS Volume")));
+ g_strdup (_("Cleartext LUKS Device")));
} else {
if (gdu_device_is_partition (device)) {
char *part_desc;