aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
authorFelix Domke <tmbinc@elitedvb.net>2006-02-24 13:54:53 +0000
committerFelix Domke <tmbinc@elitedvb.net>2006-02-24 13:54:53 +0000
commit00baaebc6c9a408dcde721da3fed8b03a90fd28e (patch)
tree41445106955f3fbd964d96a5fc8eabd27e48231b /lib/python/Screens
parent4bdcb60d1ef2ea45e00241ceaf14dc6bcc0900fe (diff)
downloadenigma2-00baaebc6c9a408dcde721da3fed8b03a90fd28e.tar.gz
enigma2-00baaebc6c9a408dcde721da3fed8b03a90fd28e.zip
beautify about (HDD)
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/About.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py
index 7e93aa0a..bed02759 100644
--- a/lib/python/Screens/About.py
+++ b/lib/python/Screens/About.py
@@ -33,7 +33,7 @@ class About(Screen):
self["hdd"] = Label(_("Detected HDD:"))
hdd = Harddisk(0)
if hdd.model() != "":
- self["hddA"] = Label(_("%s (%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free()))
+ self["hddA"] = Label(_("%s\n(%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free()))
else:
self["hddA"] = Label(_("none"))