X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/7725f7f3f752fce60f4a5dff7ef68e59557ad613..9de1e6638edc6d3432dff45f3a82fe2fc11deceb:/lib/python/Components/NimManager.py diff --git a/lib/python/Components/NimManager.py b/lib/python/Components/NimManager.py index f6362545..55b644f6 100644 --- a/lib/python/Components/NimManager.py +++ b/lib/python/Components/NimManager.py @@ -214,9 +214,9 @@ class NimManager: def nimList(self): list = [ ] for slot in self.nimslots: - nimText = "Socket " + ("A", "B", "C", "D")[slot.slotid] + ": " + nimText = _("Socket ") + ("A", "B", "C", "D")[slot.slotid] + ": " if slot.nimType == -1: - nimText += "empty/unknown" + nimText += _("empty/unknown") else: nimText += slot.name + " (" nimText += ("DVB-S", "DVB-C", "DVB-T")[slot.nimType] + ")"