1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

add language to startup wizard

This commit is contained in:
Luke Pulverenti 2014-04-27 00:35:04 -04:00
parent 28ea06a627
commit 57eb18290f
4 changed files with 81 additions and 12 deletions

View file

@ -9,16 +9,31 @@
<div data-role="content">
<div class="ui-corner-all ui-shadow wizardContent">
<h2>
<img src="css/images/mblogoicon.png" />${WelcomeToMediaBrowser}</h2>
<form class="wizardStartForm">
<h2>
<img src="css/images/mblogoicon.png" />${WelcomeToMediaBrowser}</h2>
<p>${ThisWizardWillGuideYou}</p>
<div class="wizardNavigation">
<button type="button" data-iconpos="right" data-icon="arrow-r" data-inline="true" onclick="WizardStartPage.gotoNextPage();">${LabelNext}</button>
</div>
<p>${ThisWizardWillGuideYou}</p>
<ul data-role="listview" class="ulForm">
<li>
<label for="selectLocalizationLanguage">${LabelPreferredDisplayLanguage}</label>
<select id="selectLocalizationLanguage" data-mini="true">
</select>
</li>
</ul>
<div class="wizardNavigation">
<button type="submit" data-iconpos="right" data-icon="arrow-r" data-inline="true">${LabelNext}</button>
</div>
</form>
</div>
</div>
<script type="text/javascript">
$('.wizardStartForm').off('submit', WizardStartPage.onSubmit).on('submit', WizardStartPage.onSubmit);
</script>
</div>
</body>
</html>