AutoTimer: add "Fast Scan" support
[vuplus_dvbapp-plugin] / autotimer / src / AutoTimerEditor.py
index dec90bc..0d623de 100644 (file)
@@ -471,7 +471,7 @@ class AutoTimerEditor(Screen, ConfigListScreen, AutoTimerEditorBase):
                        self.offsetend: _("Time in minutes to append to recording."),
                        self.duration: _("Should this AutoTimer only match up to a certain event duration?"),
                        self.durationlength: _("Maximum event duration to match. If an event is longer than this ammount of time (without offset) it won't be matched."),
-                       self.afterevent: _("Power state to change to after recordings. Select \"standard\" to not change the default behaviour of enigma2 or values changed by yourself."),
+                       self.afterevent: _("Power state to change to after recordings. Select \"standard\" to not change the default behavior of enigma2 or values changed by yourself."),
                        self.afterevent_timespan: _("Restrict \"after event\" to a certain timespan?"),
                        self.afterevent_timespanbegin: _("Lower bound of timespan."),
                        self.afterevent_timespanend: _("Upper bound of timespan."),
@@ -1142,7 +1142,7 @@ class AutoTimerServiceEditor(Screen, ConfigListScreen):
                ))
 
 def addAutotimerFromSearchString(session, match):
-       from AutoTimerComponent import AutoTimerComponent
+       from AutoTimerComponent import preferredAutoTimerComponent
        from AutoTimerImporter import AutoTimerImporter
        from plugin import autotimer
 
@@ -1155,7 +1155,7 @@ def addAutotimerFromSearchString(session, match):
        session.openWithCallback(
                importerCallback,
                AutoTimerImporter,
-               AutoTimerComponent(
+               preferredAutoTimerComponent(
                        autotimer.getUniqueId(),
                        match,
                        '',             # Match
@@ -1173,7 +1173,7 @@ def addAutotimerFromSearchString(session, match):
        )
 
 def addAutotimerFromEvent(session, evt = None, service = None):
-       from AutoTimerComponent import AutoTimerComponent
+       from AutoTimerComponent import preferredAutoTimerComponent
        from AutoTimerImporter import AutoTimerImporter
        from plugin import autotimer
 
@@ -1210,7 +1210,7 @@ def addAutotimerFromEvent(session, evt = None, service = None):
        session.openWithCallback(
                importerCallback,
                AutoTimerImporter,
-               AutoTimerComponent(
+               preferredAutoTimerComponent(
                        autotimer.getUniqueId(),
                        name,
                        '',             # Match
@@ -1228,7 +1228,7 @@ def addAutotimerFromEvent(session, evt = None, service = None):
        )
 
 def addAutotimerFromService(session, service = None):
-       from AutoTimerComponent import AutoTimerComponent
+       from AutoTimerComponent import preferredAutoTimerComponent
        from AutoTimerImporter import AutoTimerImporter
        from plugin import autotimer
 
@@ -1272,7 +1272,7 @@ def addAutotimerFromService(session, service = None):
        session.openWithCallback(
                importerCallback,
                AutoTimerImporter,
-               AutoTimerComponent(
+               preferredAutoTimerComponent(
                        autotimer.getUniqueId(),
                        name,
                        '',             # Match