jellyfin-web/dashboard-ui/metadataadvanced.html

162 lines
9.0 KiB
HTML
Raw Normal View History

2013-12-17 21:39:44 -07:00
<!DOCTYPE html>
<html>
<head>
2014-04-05 08:02:50 -07:00
<title>${TitleMetadata}</title>
2013-12-17 21:39:44 -07:00
</head>
<body>
2015-12-14 08:43:03 -07:00
<div id="advancedMetadataConfigurationPage" data-role="page" class="page type-interior metadataConfigurationPage" data-require="scripts/metadataadvanced,paper-checkbox,paper-input">
2013-12-17 21:39:44 -07:00
<div data-role="content">
<div class="content-primary">
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
2014-04-05 08:02:50 -07:00
<a href="metadata.html" data-role="button">${TabBasics}</a>
<a href="metadataimages.html" data-role="button">${TabServices}</a>
2014-05-07 11:38:50 -07:00
<a href="metadatasubtitles.html" data-role="button">${TabSubtitles}</a>
<a href="metadatanfo.html" data-role="button">${TabNfo}</a>
<a href="#" data-role="button" class="ui-btn-active">${TabAdvanced}</a>
2013-12-17 21:39:44 -07:00
</div>
2015-05-19 12:15:40 -07:00
<form class="advancedMetadataConfigurationForm">
2014-05-04 21:36:45 -07:00
2014-07-19 21:46:29 -07:00
<ul data-role="listview" class="ulForm">
<li>
2015-09-20 10:56:26 -07:00
<paper-input id="txtMetadataPath" label="${LabelMetadataPath}" style="width:85%;display:inline-block;"></paper-input>
<paper-icon-button id="btnSelectMetadataPath" icon="search"></paper-icon-button>
2014-07-19 21:46:29 -07:00
<div class="fieldDescription">${LabelMetadataPathHelp}</div>
2015-09-20 10:56:26 -07:00
<br />
2014-07-19 21:46:29 -07:00
</li>
<li>
<label for="chkSaveMetadataHidden">${OptionSaveMetadataAsHidden}</label>
<input type="checkbox" id="chkSaveMetadataHidden" data-mini="true" />
</li>
2014-10-09 15:22:04 -07:00
<li>
<label for="selectDateAdded">${LabelDateAddedBehavior}</label>
2014-10-23 21:54:35 -07:00
<select id="selectDateAdded" data-mini="true">
2014-10-09 15:22:04 -07:00
<option value="0">${OptionDateAddedImportTime}</option>
<option value="1">${OptionDateAddedFileTime}</option>
</select>
<div class="fieldDescription">${LabelDateAddedBehaviorHelp}</div>
</li>
2014-07-19 21:46:29 -07:00
</ul>
2015-11-12 09:22:50 -07:00
<div data-role="collapsible" style="display:none;">
2014-07-21 18:29:06 -07:00
<h2>${HeaderAutomaticUpdates}</h2>
<div>
<ul data-role="listview" class="ulForm">
<li>
2015-01-17 22:45:10 -07:00
<input type="checkbox" id="chkEnableTmdbUpdates" data-mini="true" />
<label for="chkEnableTmdbUpdates">${LabelAutomaticUpdatesTmdb}</label>
2014-07-21 18:29:06 -07:00
<div class="fieldDescription">${LabelAutomaticUpdatesTmdbHelp}</div>
</li>
<li>
<input type="checkbox" id="chkEnableTvdbUpdates" data-mini="true" />
<label for="chkEnableTvdbUpdates">${LabelAutomaticUpdatesTvdb}</label>
<div class="fieldDescription">${LabelAutomaticUpdatesTvdbHelp}</div>
</li>
</ul>
</div>
</div>
<div data-role="collapsible">
<h2>${HeaderChapters}</h2>
<div>
2014-08-14 06:24:30 -07:00
<br />
2014-09-08 18:15:31 -07:00
<ul data-role="listview" class="ulForm" style="margin-bottom:0!important;">
2014-07-21 18:29:06 -07:00
<li>
<label>${HeaderExtractChapterImagesFor}</label>
<div data-role="controlgroup">
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkChaptersMovies" />
2014-07-21 18:29:06 -07:00
<label for="chkChaptersMovies">${OptionMovies}</label>
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkChaptersEpisodes" />
2014-07-21 18:29:06 -07:00
<label for="chkChaptersEpisodes">${OptionEpisodes}</label>
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkChaptersOtherVideos" />
2014-07-21 18:29:06 -07:00
<label for="chkChaptersOtherVideos">${OptionOtherVideos}</label>
</div>
<div class="fieldDescription">${ExtractChapterImagesHelp}</div>
2014-07-21 18:29:06 -07:00
</li>
</ul>
<br />
2014-09-08 18:15:31 -07:00
<div>
<label for="chkExtractChaptersDuringLibraryScan">${LabelExtractChaptersDuringLibraryScan}</label>
<input type="checkbox" id="chkExtractChaptersDuringLibraryScan" />
<div class="fieldDescription">${LabelExtractChaptersDuringLibraryScanHelp}</div>
</div>
<br />
2014-07-21 18:29:06 -07:00
</div>
</div>
2014-08-14 06:24:30 -07:00
<div data-role="collapsible">
<h2>Fanart.tv</h2>
<div>
<br />
<ul data-role="listview" class="ulForm">
<li>
<label for="txtFanartApiKey">${LabelFanartApiKey}</label>
<input type="text" id="txtFanartApiKey" />
<div class="fieldDescription">${LabelFanartApiKeyHelp}</div>
2015-01-20 13:19:54 -07:00
<div class="fieldDescription"><a href="https://fanart.tv/2015/01/personal-api-keys" target="_blank">${ButtonLearnMore}</a></div>
</li>
2015-11-12 09:22:50 -07:00
<li style="display:none;">
<input type="checkbox" id="chkEnableFanartUpdates" data-mini="true" />
<label for="chkEnableFanartUpdates">${LabelAutomaticUpdates}</label>
<div class="fieldDescription">${LabelAutomaticUpdatesFanartHelp}</div>
</li>
</ul>
</div>
</div>
2014-08-14 06:24:30 -07:00
<div data-role="collapsible">
<h2>${HeaderPeople}</h2>
<div>
<br />
<ul data-role="listview" class="ulForm">
<li>
<label>${HeaderDownloadPeopleMetadataFor}</label>
<div data-role="controlgroup">
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkPeopleActors" />
2014-08-14 06:24:30 -07:00
<label for="chkPeopleActors">${OptionActors}</label>
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkPeopleComposers" />
2014-08-14 06:24:30 -07:00
<label for="chkPeopleComposers">${OptionComposers}</label>
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkPeopleDirectors" />
2014-08-14 06:24:30 -07:00
<label for="chkPeopleDirectors">${OptionDirectors}</label>
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkPeopleGuestStars" />
2014-08-14 06:24:30 -07:00
<label for="chkPeopleGuestStars">${OptionGuestStars}</label>
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkPeopleProducers" />
2014-08-14 06:24:30 -07:00
<label for="chkPeopleProducers">${OptionProducers}</label>
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkPeopleWriters" />
2014-08-14 06:24:30 -07:00
<label for="chkPeopleWriters">${OptionWriters}</label>
2014-08-18 19:49:16 -07:00
<input type="checkbox" id="chkPeopleOthers" />
2014-08-14 06:24:30 -07:00
<label for="chkPeopleOthers">${OptionOthers}</label>
</div>
2014-09-08 18:15:31 -07:00
<div class="fieldDescription">${HeaderDownloadPeopleMetadataForHelp}</div>
2014-08-14 06:24:30 -07:00
</li>
</ul>
</div>
</div>
2014-09-22 14:56:54 -07:00
2014-08-14 06:24:30 -07:00
<br /><br />
2013-12-25 23:17:19 -07:00
<ul data-role="listview" class="ulForm">
2013-12-17 21:39:44 -07:00
<li>
2015-06-22 08:43:19 -07:00
<button type="submit" data-role="none" class="clearButton">
<paper-button raised class="submit block"><iron-icon icon="check"></iron-icon><span>${ButtonSave}</span></paper-button>
2013-12-17 21:39:44 -07:00
</button>
2015-06-22 08:43:19 -07:00
<paper-button raised class="cancel block btnCancel" onclick="history.back();"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
2013-12-17 21:39:44 -07:00
</li>
</ul>
</form>
</div>
</div>
</div>
</body>
2015-09-20 10:56:26 -07:00
</html>