mirror of
https://github.com/jellyfin/jellyfin-web.git
synced 2024-11-18 11:28:23 -07:00
85 lines
3.9 KiB
HTML
85 lines
3.9 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>${TitleMediaLibrary}</title>
|
|
</head>
|
|
<body>
|
|
<div id="librarySettingsPage" data-role="page" class="page type-interior librarySectionPage" data-require="scripts/librarysettings">
|
|
|
|
<div data-role="content">
|
|
<div class="content-primary">
|
|
<div data-role="controlgroup" data-type="horizontal" class="localnav" data-mini="true">
|
|
<a href="library.html" data-role="button">${TabFolders}</a>
|
|
<a href="librarypathmapping.html" data-role="button">${TabPathSubstitution}</a>
|
|
<a href="#" data-role="button" class="ui-btn-active">${TabAdvanced}</a>
|
|
</div>
|
|
|
|
<form class="librarySettingsForm">
|
|
|
|
<div data-role="collapsible">
|
|
<h2>${HeaderAudio}</h2>
|
|
<div>
|
|
<br />
|
|
<div>
|
|
<label for="chkEnableAudioArchiveFiles">${OptionDetectArchiveFilesAsMedia}</label>
|
|
<input type="checkbox" id="chkEnableAudioArchiveFiles" />
|
|
<div class="fieldDescription">${OptionDetectArchiveFilesAsMediaHelp}</div>
|
|
</div>
|
|
<br />
|
|
</div>
|
|
</div>
|
|
|
|
<div data-role="collapsible">
|
|
<h2>${HeaderVideo}</h2>
|
|
<div>
|
|
<br />
|
|
<div>
|
|
<label for="chkEnableVideoArchiveFiles">${OptionDetectArchiveFilesAsMedia}</label>
|
|
<input type="checkbox" id="chkEnableVideoArchiveFiles" />
|
|
<div class="fieldDescription">${OptionDetectArchiveFilesAsMediaHelp}</div>
|
|
</div>
|
|
<br />
|
|
</div>
|
|
</div>
|
|
|
|
<div data-role="collapsible">
|
|
<h2>${HeaderTV}</h2>
|
|
<div>
|
|
<br />
|
|
<div>
|
|
<label for="txtSeasonZeroName">${LabelSeasonZeroDisplayName}</label>
|
|
<input type="text" id="txtSeasonZeroName" name="txtSeasonZeroName" required="required" />
|
|
</div>
|
|
<br />
|
|
</div>
|
|
</div>
|
|
<br />
|
|
<ul data-role="listview" class="ulForm">
|
|
<li class="fldLibraryMonitor hide">
|
|
<label for="selectEnableRealtimeMonitor">${LabelEnableRealtimeMonitor}</label>
|
|
<select id="selectEnableRealtimeMonitor" data-mini="true">
|
|
<option value="Auto">${OptionAuto}</option>
|
|
<option value="Enabled">${OptionYes}</option>
|
|
<option value="Disabled">${OptionNo}</option>
|
|
</select>
|
|
<div class="fieldDescription">
|
|
${LabelEnableRealtimeMonitorHelp}
|
|
</div>
|
|
</li>
|
|
<li>
|
|
<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>
|
|
</button>
|
|
|
|
<paper-button raised class="cancel block btnCancel" onclick="history.back();"><iron-icon icon="close"></iron-icon><span>${ButtonCancel}</span></paper-button>
|
|
</li>
|
|
</ul>
|
|
|
|
</form>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|