X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/51550aa81c726aedfa7159af0e67f8bcd5fb8a2f..92929c357751afc31f7f1acbe3e724bdf307cf23:/lib/python/Plugins/Extensions/DVDBurn/TitleList.py diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py index 99344e46..1b289322 100644 --- a/lib/python/Plugins/Extensions/DVDBurn/TitleList.py +++ b/lib/python/Plugins/Extensions/DVDBurn/TitleList.py @@ -19,10 +19,10 @@ class TitleList(Screen): - + - + """ def __init__(self, session, project = None): @@ -48,7 +48,7 @@ class TitleList(Screen): self["key_blue"] = StaticText(_("Save")) self["title_label"] = StaticText(_("Table of content to be burned to DVD:")) - self["statusbar"] = StaticText(_("When complete, press Key 0 to burn the collection!")) + self["statusbar"] = StaticText(_("When complete, press record key to burn the collection!")) self["actions"] = ActionMap(["OkCancelActions"], { @@ -79,8 +79,7 @@ class TitleList(Screen): return None t = self.project.addService(source) self.updateTitleList() - - self.editTitle(t) + #self.editTitle(t) def removeCurrentTitle(self): title = self.getCurrentTitle() @@ -94,6 +93,7 @@ class TitleList(Screen): def burnProject(self): print "producing final cue sheet:" cue = self.produceFinalCuesheet() + print str(cue) import Process job = Process.Burn(self.session, cue) print cue