jellyfin-web/dashboard-ui/wizardsettings.html

45 lines
2.2 KiB
HTML
Raw Normal View History

2016-09-13 10:49:13 -07:00
<div id="wizardSettingsPage" data-role="page" class="page standalonePage wizardPage" data-require="scripts/wizardsettings,emby-checkbox,emby-button,emby-select">
2013-09-05 10:05:39 -07:00
2016-03-15 22:33:31 -07:00
<div data-role="content">
2013-09-05 10:05:39 -07:00
2016-03-15 22:33:31 -07:00
<div class="ui-corner-all ui-shadow wizardContent">
<form class="wizardSettingsForm">
<h1>
${LabelConfigureSettings}
</h1>
2016-09-13 10:49:13 -07:00
<br/>
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" class="chkEnableInternetProviders" />
<span>${LabelDownloadInternetMetadata}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${LabelDownloadInternetMetadataHelp}</div>
2016-03-15 22:33:31 -07:00
</div>
2016-09-13 10:49:13 -07:00
<div class="checkboxContainer checkboxContainer-withDescription">
<label>
<input type="checkbox" is="emby-checkbox" class="chkSaveLocalMetadata" />
<span>${LabelSaveLocalMetadata}</span>
</label>
<div class="fieldDescription checkboxFieldDescription">${LabelSaveLocalMetadataHelp}</div>
2016-03-15 22:33:31 -07:00
</div>
2013-12-22 20:46:03 -07:00
2016-09-13 10:49:13 -07:00
<h1 style="margin:2em 0 1.5em;">${HeaderPreferredMetadataLanguage}</h1>
2013-12-22 20:46:03 -07:00
2016-09-13 10:49:13 -07:00
<div class="selectContainer">
<select is="emby-select" id="selectLanguage" required="required" label="${LabelLanguage}"></select>
2016-03-15 22:33:31 -07:00
</div>
2013-12-22 20:46:03 -07:00
2016-09-13 10:49:13 -07:00
<div class="selectContainer">
<select is="emby-select" id="selectCountry" required="required" label="${LabelCountry}"></select>
2016-03-15 22:33:31 -07:00
</div>
2016-09-13 10:49:13 -07:00
<br />
2013-09-05 10:05:39 -07:00
2016-03-15 22:33:31 -07:00
<div class="wizardNavigation">
2016-09-09 09:58:08 -07:00
<button is="emby-button" type="button" class="raised button-cancel" onclick="history.back();"><i class="md-icon">arrow_back</i><span>${LabelPrevious}</span></button>
<button is="emby-button" type="submit" class="raised button-submit"><span>${LabelNext}</span><i class="md-icon">arrow_forward</i></button>
2016-03-15 22:33:31 -07:00
</div>
</form>
2013-09-05 10:05:39 -07:00
</div>
2016-03-15 22:33:31 -07:00
2013-09-05 10:05:39 -07:00
</div>
2016-03-15 22:33:31 -07:00
</div>