fixes #1178 - Emby (stable) does not see changes when switching to dev

This commit is contained in:
Luke Pulverenti 2015-09-13 19:16:33 -04:00
parent aec9b913a9
commit 9412b4af1d
4 changed files with 5 additions and 2 deletions

View file

@ -42,7 +42,7 @@
</div> </div>
</li> </li>
<li> <li>
<label for="selectAutomaticUpdateLevel">${LabelAutomaticUpdateLevel}</label> <label class="lnlAutomaticUpdateLevel" for="selectAutomaticUpdateLevel"></label>
<select name="selectAutomaticUpdateLevel" id="selectAutomaticUpdateLevel"> <select name="selectAutomaticUpdateLevel" id="selectAutomaticUpdateLevel">
<option value="Release">${OptionRelease}</option> <option value="Release">${OptionRelease}</option>
<option value="Beta">${OptionBeta}</option> <option value="Beta">${OptionBeta}</option>

View file

@ -18,8 +18,10 @@
if (systemInfo.CanSelfUpdate) { if (systemInfo.CanSelfUpdate) {
$('.fldAutomaticUpdates', page).show(); $('.fldAutomaticUpdates', page).show();
$('.lnlAutomaticUpdateLevel', page).html(Globalize.translate('LabelAutomaticUpdateLevel'));
} else { } else {
$('.fldAutomaticUpdates', page).hide(); $('.fldAutomaticUpdates', page).hide();
$('.lnlAutomaticUpdateLevel', page).html(Globalize.translate('LabelAutomaticUpdateLevelForPlugins'));
} }
$('#chkEnableAutomaticServerUpdates', page).checked(config.EnableAutoUpdate).checkboxradio("refresh"); $('#chkEnableAutomaticServerUpdates', page).checked(config.EnableAutoUpdate).checkboxradio("refresh");

View file

@ -333,7 +333,6 @@
"TabServer": "Server", "TabServer": "Server",
"TabTranscoding": "Transcoding", "TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced", "TitleAdvanced": "Advanced",
"LabelAutomaticUpdateLevel": "Automatic update level:",
"OptionRelease": "Official Release", "OptionRelease": "Official Release",
"OptionBeta": "Beta", "OptionBeta": "Beta",
"OptionDev": "Dev (Unstable)", "OptionDev": "Dev (Unstable)",

View file

@ -45,6 +45,8 @@
"ButtonDonate": "Donate", "ButtonDonate": "Donate",
"LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.",
"HeaderMyMedia": "My Media", "HeaderMyMedia": "My Media",
"LabelAutomaticUpdateLevel": "Automatic update level:",
"LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
"TitleNotifications": "Notifications", "TitleNotifications": "Notifications",
"ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.",
"MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", "MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.",