change album override label to podcast metadata override in preferences page
This commit is contained in:
parent
8427d0a92a
commit
eb349174dd
|
@ -75,7 +75,7 @@ class PodcastManager {
|
||||||
array_push($episodes, $placeholder);
|
array_push($episodes, $placeholder);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return $episodes;
|
return $episodPoes;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
|
@ -102,13 +102,13 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm
|
||||||
|
|
||||||
|
|
||||||
$podcast_album_override = new Zend_Form_Element_Radio('podcastAlbumOverride');
|
$podcast_album_override = new Zend_Form_Element_Radio('podcastAlbumOverride');
|
||||||
$podcast_album_override->setLabel(_('Podcast Album Override'));
|
$podcast_album_override->setLabel(_('Podcast Metadata Override'));
|
||||||
$podcast_album_override->setMultiOptions(array(
|
$podcast_album_override->setMultiOptions(array(
|
||||||
_("Disabled"),
|
_("Disabled"),
|
||||||
_("Enabled"),
|
_("Enabled"),
|
||||||
));
|
));
|
||||||
$podcast_album_override->setValue(Application_Model_Preference::GetPodcastAlbumOverride());
|
$podcast_album_override->setValue(Application_Model_Preference::GetPodcastAlbumOverride());
|
||||||
$podcast_album_override->setDescription(_('Enabling this means that podcast tracks will always contain the podcast name in their album field.'));
|
$podcast_album_override->setDescription(_('Enabling this means that podcast tracks will get their metadata set from the podcast feed values'));
|
||||||
$podcast_album_override->setSeparator(' '); //No <br> between radio buttons
|
$podcast_album_override->setSeparator(' '); //No <br> between radio buttons
|
||||||
$podcast_album_override->addDecorator('HtmlTag', array('tag' => 'dd',
|
$podcast_album_override->addDecorator('HtmlTag', array('tag' => 'dd',
|
||||||
'id'=>"podcastAlbumOverride-element",
|
'id'=>"podcastAlbumOverride-element",
|
||||||
|
|
Loading…
Reference in New Issue