From 369a59c564ad1212360acfc85053eeaedf6f0bbf Mon Sep 17 00:00:00 2001 From: drigato Date: Thu, 2 Apr 2015 15:13:34 -0400 Subject: [PATCH] Changed mobile option text on streams page --- airtime_mvc/application/forms/StreamSettingSubForm.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/forms/StreamSettingSubForm.php b/airtime_mvc/application/forms/StreamSettingSubForm.php index b84adf63d..8d1f96f43 100644 --- a/airtime_mvc/application/forms/StreamSettingSubForm.php +++ b/airtime_mvc/application/forms/StreamSettingSubForm.php @@ -54,7 +54,7 @@ class Application_Form_StreamSettingSubForm extends Zend_Form_SubForm $this->addElement($enable); $mobile = new Zend_Form_Element_Checkbox('mobile'); - $mobile->setLabel(_('Good for mobile?')); + $mobile->setLabel(_('Mobile:')); $mobile->setValue($setting[$prefix.'_mobile']); $mobile->setDecorators(array('ViewHelper')); $this->addElement($mobile);