summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2013-02-21 09:19:52 -0500
committerBrian C. Lane <bcl@redhat.com>2013-02-21 08:52:15 -0800
commitad1425c2db3fda43c66dcd87199891c1a4410955 (patch)
tree30689a319b8f281831ddb2a50c56b611ec82f3d8
parentb7f15b93a1bd8754756fd592c5388d46fd529de0 (diff)
downloadanaconda-ad1425c2db3fda43c66dcd87199891c1a4410955.tar.gz
anaconda-ad1425c2db3fda43c66dcd87199891c1a4410955.tar.xz
anaconda-ad1425c2db3fda43c66dcd87199891c1a4410955.zip
The disk cart summary does not need a mnemonic.
What would it do?
-rw-r--r--pyanaconda/ui/gui/spokes/lib/cart.glade1
-rw-r--r--pyanaconda/ui/gui/spokes/lib/cart.py4
2 files changed, 2 insertions, 3 deletions
diff --git a/pyanaconda/ui/gui/spokes/lib/cart.glade b/pyanaconda/ui/gui/spokes/lib/cart.glade
index 0e234a2da..37f864e11 100644
--- a/pyanaconda/ui/gui/spokes/lib/cart.glade
+++ b/pyanaconda/ui/gui/spokes/lib/cart.glade
@@ -234,7 +234,6 @@
<property name="xalign">0</property>
<property name="label" translatable="yes">Disk summary goes here</property>
<property name="use_markup">True</property>
- <property name="use_underline">True</property>
</object>
<packing>
<property name="expand">False</property>
diff --git a/pyanaconda/ui/gui/spokes/lib/cart.py b/pyanaconda/ui/gui/spokes/lib/cart.py
index 0fe98698f..39d572a9d 100644
--- a/pyanaconda/ui/gui/spokes/lib/cart.py
+++ b/pyanaconda/ui/gui/spokes/lib/cart.py
@@ -135,9 +135,9 @@ class SelectedDisksDialog(GUIObject):
size = str(Size(bytes=long(size))).upper()
free = str(Size(bytes=long(free))).upper()
- text = P_("<b>%d d_isk; %s capacity; %s free space</b> "
+ text = P_("<b>%d disk; %s capacity; %s free space</b> "
"(unpartitioned and in filesystems)",
- "<b>%d d_isks; %s capacity; %s free space</b> "
+ "<b>%d disks; %s capacity; %s free space</b> "
"(unpartitioned and in filesystems)",
count) % (count, size, free)
self._summary_label.set_markup(text)