diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-17 21:43:50 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-11-17 21:43:50 +0000 |
| commit | 2fcfe7e7703ce61ccb532939b6e2132b8423b7c3 (patch) | |
| tree | 2c1806b464aa6831b4dbf1c5ba302d8f4fb2b06c /lib/python/Screens/About.py | |
| parent | 746b9083adb6a9b67a91476c11de6982b824b21c (diff) | |
| download | enigma2-2fcfe7e7703ce61ccb532939b6e2132b8423b7c3.tar.gz enigma2-2fcfe7e7703ce61ccb532939b6e2132b8423b7c3.zip | |
translations
Diffstat (limited to 'lib/python/Screens/About.py')
| -rw-r--r-- | lib/python/Screens/About.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/python/Screens/About.py b/lib/python/Screens/About.py index 5359b26b..2e267a07 100644 --- a/lib/python/Screens/About.py +++ b/lib/python/Screens/About.py @@ -11,7 +11,7 @@ class About(Screen): self["text"] = Label("Enigma v2.0b") - self["tuner"] = Label("Detected NIMs:") + self["tuner"] = Label(_("Detected NIMs:")) nims = nimmanager.nimList() count = 0 @@ -19,12 +19,12 @@ class About(Screen): self["tuner" + str(count)] = Label(i[0]) count += 1 - self["hdd"] = Label("Detected HDD:") + 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 (%s, %d MB free)") % (hdd.model(), hdd.capacity(),hdd.free())) else: - self["hddA"] = Label("none") + self["hddA"] = Label(_("none")) self["actions"] = ActionMap(["SetupActions"], { |
