check for running jobs before shutting down/rebooting
[enigma2.git] / lib / python / Components / Task.py
index 9a9d9fb72f5bff1a4d74f96cc49ccdface97bf44..659660e82c56a0b351033828226d7dc7898f2b1b 100644 (file)
@@ -37,6 +37,9 @@ class Job(object):
 
        progress = property(getProgress)
 
 
        progress = property(getProgress)
 
+       def getStatustext(self):
+               return { self.NOT_STARTED: _("Waiting"), self.IN_PROGRESS: _("In Progress"), self.FINISHED: _("Finished"), self.FAILED: _("Failed") }[self.status]
+
        def task_progress_changed_CB(self):
                self.state_changed()
 
        def task_progress_changed_CB(self):
                self.state_changed()