diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-02-24 13:54:53 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-02-24 13:54:53 +0000 |
| commit | 00baaebc6c9a408dcde721da3fed8b03a90fd28e (patch) | |
| tree | 41445106955f3fbd964d96a5fc8eabd27e48231b /lib/python | |
| parent | 4bdcb60d1ef2ea45e00241ceaf14dc6bcc0900fe (diff) | |
| download | enigma2-00baaebc6c9a408dcde721da3fed8b03a90fd28e.tar.gz enigma2-00baaebc6c9a408dcde721da3fed8b03a90fd28e.zip | |
beautify about (HDD)
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/About.py | 2 |
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")) |
