mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 03:18:19 -07:00
85 lines
4.0 KiB
HTML
85 lines
4.0 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleMetadata}</title>
|
|
</head>
|
|
<body>
|
|
<div id="chapterMetadataConfigurationPage" data-role="page" class="page type-interior metadataConfigurationPage">
|
|
|
|
<div data-role="content">
|
|
|
|
<div class="content-primary">
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
<a href="metadata.html" data-role="button">${TabBasics}</a>
|
|
<a href="metadataimages.html" data-role="button">${TabServices}</a>
|
|
<a href="#" data-role="button" class="ui-btn-active">${TabChapters}</a>
|
|
<a href="metadatasubtitles.html" data-role="button">${TabSubtitles}</a>
|
|
<a href="metadataxbmc.html" data-role="button">${TabXbmcMetadata}</a>
|
|
<a href="metadataadvanced.html" data-role="button">${TabAdvanced}</a>
|
|
</div>
|
|
|
|
<form class="metadataChaptersForm">
|
|
|
|
<div style="display: none;">
|
|
<p>${HeaderChapterDownloadingHelp}</p>
|
|
|
|
<div class="chapterDownloadSettings" style="display: none;">
|
|
<fieldset data-role="controlgroup">
|
|
<legend>${HeaderDownloadChaptersFor}</legend>
|
|
<input type="checkbox" data-mini="true" id="chkDownloadChapterMovies" />
|
|
<label for="chkDownloadChapterMovies">${OptionMovies}</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkDownloadChapterEpisodes" />
|
|
<label for="chkDownloadChapterEpisodes">${OptionEpisodes}</label>
|
|
</fieldset>
|
|
<br />
|
|
<div class="chapterFetchers">
|
|
</div>
|
|
<br />
|
|
<br />
|
|
</div>
|
|
<div class="noChapterProviders" style="display: none; color: green;">
|
|
<p>${MessageNoChapterProviders}</p>
|
|
<br />
|
|
</div>
|
|
</div>
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<label>${HeaderExtractChapterImagesFor}</label>
|
|
<div data-role="controlgroup">
|
|
<input type="checkbox" data-mini="true" id="chkChaptersMovies" />
|
|
<label for="chkChaptersMovies">${OptionMovies}</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkChaptersEpisodes" />
|
|
<label for="chkChaptersEpisodes">${OptionEpisodes}</label>
|
|
|
|
<input type="checkbox" data-mini="true" id="chkChaptersOtherVideos" />
|
|
<label for="chkChaptersOtherVideos">${OptionOtherVideos}</label>
|
|
<div class="fieldDescription">${ExtractChapterImagesHelp}</div>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li>
|
|
<button type="submit" data-theme="b" data-icon="check" data-mini="true">
|
|
${ButtonSave}
|
|
</button>
|
|
<button type="button" onclick="Dashboard.navigate('dashboard.html');" data-icon="delete" data-mini="true">
|
|
${ButtonCancel}
|
|
</button>
|
|
</li>
|
|
</ul>
|
|
</form>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script type="text/javascript">
|
|
$('.metadataChaptersForm').off('submit', MetadataChaptersPage.onSubmit).on('submit', MetadataChaptersPage.onSubmit);
|
|
</script>
|
|
</div>
|
|
</body>
|
|
</html>
|