Replace Airtime Pro wording
Let's just call this "default" streaming for now. Fixes #31
This commit is contained in:
parent
e3785e25f9
commit
c4541b7ce7
airtime_mvc/application/forms
|
@ -83,7 +83,7 @@ class Application_Form_StreamSetting extends Zend_Form
|
||||||
$custom = Application_Model_Preference::getUsingCustomStreamSettings();
|
$custom = Application_Model_Preference::getUsingCustomStreamSettings();
|
||||||
$customSettings = new Zend_Form_Element_Radio('customStreamSettings');
|
$customSettings = new Zend_Form_Element_Radio('customStreamSettings');
|
||||||
$customSettings->setLabel(_('Streaming Server:'));
|
$customSettings->setLabel(_('Streaming Server:'));
|
||||||
$customSettings->setMultiOptions(array(_("Airtime Pro Streaming"), _("Custom / 3rd Party Streaming")));
|
$customSettings->setMultiOptions(array(_("Default Streaming"), _("Custom / 3rd Party Streaming")));
|
||||||
$customSettings->setValue(!empty($custom) ? $custom : 0);
|
$customSettings->setValue(!empty($custom) ? $custom : 0);
|
||||||
$this->addElement($customSettings);
|
$this->addElement($customSettings);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue