X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/530dcfb355dc35f9258c286f537b855ce9814adc..cbdae9732240da8ae902936fd8819ffbbae2f1cf:/lib/python/Screens/Ci.py diff --git a/lib/python/Screens/Ci.py b/lib/python/Screens/Ci.py index 1ba036bd..79ff34ea 100644 --- a/lib/python/Screens/Ci.py +++ b/lib/python/Screens/Ci.py @@ -81,10 +81,9 @@ class CiMmi(Screen): self.showWait() elif self.tag == "ENQ": print "answer ENQ" - #eDVBCI_UI.getInstance().answerMenu(self.slotid, 0) + eDVBCI_UI.getInstance().answerEnq(self.slotid, str(self.pin[1].parent.value)) self.showWait() - def closeMmi(self): self.Timer.stop() self.close() @@ -223,14 +222,14 @@ class CiMmi(Screen): class CiSelection(Screen): def createMenu(self): self.list = [ ] - self.list.append( ("Reset", 0) ) - self.list.append( ("Init", 1) ) + self.list.append( (_("Reset"), 0) ) + self.list.append( (_("Init"), 1) ) self.state = eDVBCI_UI.getInstance().getState(0) if self.state == 0: #no module - self.list.append( ("no module found", 2) ) + self.list.append( (_("no module found"), 2) ) elif self.state == 1: #module in init - self.list.append( ("init module", 2) ) + self.list.append( (_("init module"), 2) ) elif self.state == 2: #module ready #get appname appname = eDVBCI_UI.getInstance().getAppName(0)