X-Git-Url: http://code.vuplus.com/gitweb/?a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FTimerEntry.py;h=6cbd18ecac1fbad09ca16571732bf17e6a7289dd;hb=2a8ecd871020fdd668cf5500460e5a6e7851b4b0;hp=d11c5c2a766228ce855d851c5bc1269c76f6af87;hpb=ba4c219da50c06c732ea9899d2b4e3679066aecc;p=vuplus_dvbapp diff --git a/lib/python/Screens/TimerEntry.py b/lib/python/Screens/TimerEntry.py index d11c5c2..6cbd18e 100644 --- a/lib/python/Screens/TimerEntry.py +++ b/lib/python/Screens/TimerEntry.py @@ -26,7 +26,7 @@ class TimerEntry(Screen, ConfigListScreen): self["oktext"] = Label(_("OK")) self["canceltext"] = Label(_("Cancel")) - self["locationtext"] = Label(_("Choose Location")) + self["locationtext"] = Label(_("Location")) self["ok"] = Pixmap() self["cancel"] = Pixmap() self["location"] = Pixmap() @@ -150,7 +150,7 @@ class TimerEntry(Screen, ConfigListScreen): if self.timerentry_type.value == "once": self.frequencyEntry = None else: # repeated - self.frequencyEntry = getConfigListEntry(_("Frequency"), self.timerentry_repeated) + self.frequencyEntry = getConfigListEntry(_("Repeats"), self.timerentry_repeated) self.list.append(self.frequencyEntry) self.repeatedbegindateEntry = getConfigListEntry(_("Starting on"), self.timerentry_repeatedbegindate) self.list.append(self.repeatedbegindateEntry)