Skip to content

Commit

Permalink
Merge pull request openatv#263 from hd75hd/patch-2
Browse files Browse the repository at this point in the history
[CronTimer.py] fix for translation
  • Loading branch information
iPkay committed Nov 9, 2015
2 parents c75793b + 93b4d61 commit 9c86695
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/python/Screens/CronTimer.py
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ def createSetup(self):
if config.crontimers.runwhen.value == 'Weekly':
self.list.append(getConfigListEntry(_("What Day of week ?"), config.crontimers.dayofweek))
if config.crontimers.runwhen.value == 'Monthly':
self.list.append(getConfigListEntry(_("What date of month ?"), config.crontimers.dayofmonth))
self.list.append(getConfigListEntry(_("What Day of month ?"), config.crontimers.dayofmonth))
self.list.append(getConfigListEntry(_("Command type"), config.crontimers.commandtype))
if config.crontimers.commandtype.value == 'custom':
self.list.append(getConfigListEntry(_("Command To Run"), config.crontimers.user_command))
Expand Down

0 comments on commit 9c86695

Please sign in to comment.