Fix missing translations

This commit is contained in:
Xabi Spacebiker 2017-09-27 10:13:51 +02:00
parent 2e47b00453
commit cda9f17163

View file

@ -21,8 +21,8 @@ class Application_Form_AddShowWhen extends Zend_Form_SubForm
$startNow->setRequired(false)
->setLabel(_('Start Time:'))
->addMultiOptions(array(
'now' => 'Now',
'future' => 'In the Future:'
'now' => _('Now'),
'future' => _('In the Future:')
))
->setValue('future')
->setDecorators(array('ViewHelper'));