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

update translations

This commit is contained in:
Luke Pulverenti 2015-01-19 01:42:31 -05:00
parent bed14f4b40
commit a174be36a9
2 changed files with 0 additions and 7 deletions

View file

@ -53,11 +53,6 @@
<input type="number" id="txtPublicHttpsPort" pattern="[0-9]*" required="required" min="1" />
<div class="fieldDescription">${LabelPublicHttpsPortHelp}</div>
</li>
<li>
<label for="txtCertificatePath">${LabelCertificatePath}</label>
<input type="text" id="txtCertificatePath" />
<div class="fieldDescription">${LabelCertificatePathHelp}</div>
</li>
</ul>
<ul data-role="listview" class="ulForm">

View file

@ -8,7 +8,6 @@
$('#chkEnableHttps', page).checked(config.EnableHttps).checkboxradio('refresh');
$('#txtHttpsPort', page).val(config.HttpsPortNumber);
$('#txtCertificatePath', page).val(config.CertificatePath);
$('#txtDdns', page).val(config.WanDdns || '');
@ -48,7 +47,6 @@
config.PublicHttpsPort = $('#txtPublicHttpsPort', form).val();
config.EnableHttps = $('#chkEnableHttps', form).checked();
config.HttpsPortNumber = $('#txtHttpsPort', form).val();
config.CertificatePath = $('#txtCertificatePath', form).val();
config.EnableUPnP = $('#chkEnableUpnp', form).checked();
config.WanDdns = $('#txtDdns', form).val();