mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Merge pull request #2937 from oledfish/additional-episode-orders
This commit is contained in:
commit
7649264fc2
2 changed files with 15 additions and 1 deletions
|
@ -697,7 +697,17 @@ import template from './metadataEditor.template.html';
|
||||||
showElement('#fldDisplayOrder', context);
|
showElement('#fldDisplayOrder', context);
|
||||||
showElement('.seriesDisplayOrderDescription', context);
|
showElement('.seriesDisplayOrderDescription', context);
|
||||||
|
|
||||||
context.querySelector('#selectDisplayOrder').innerHTML = '<option value="">' + globalize.translate('Aired') + '</option><option value="absolute">' + globalize.translate('Absolute') + '</option><option value="dvd">Dvd</option>';
|
let html = '';
|
||||||
|
html += '<option value="">' + globalize.translate('Aired') + '</option>';
|
||||||
|
html += '<option value="originalAirDate">' + globalize.translate('OriginalAirDate') + '</option>';
|
||||||
|
html += '<option value="absolute">' + globalize.translate('Absolute') + '</option>';
|
||||||
|
html += '<option value="dvd">DVD</option></option>';
|
||||||
|
html += '<option value="digital">' + globalize.translate('Digital') + '</option>';
|
||||||
|
html += '<option value="storyArc">' + globalize.translate('StoryArc') + '</option>';
|
||||||
|
html += '<option value="production">' + globalize.translate('Production') + '</option>';
|
||||||
|
html += '<option value="tv">TV</option>';
|
||||||
|
|
||||||
|
context.querySelector('#selectDisplayOrder').innerHTML = html;
|
||||||
} else {
|
} else {
|
||||||
context.querySelector('#selectDisplayOrder').innerHTML = '';
|
context.querySelector('#selectDisplayOrder').innerHTML = '';
|
||||||
hideElement('#fldDisplayOrder', context);
|
hideElement('#fldDisplayOrder', context);
|
||||||
|
|
|
@ -186,6 +186,7 @@
|
||||||
"Desktop": "Desktop",
|
"Desktop": "Desktop",
|
||||||
"DetectingDevices": "Detecting devices",
|
"DetectingDevices": "Detecting devices",
|
||||||
"DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
|
"DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
|
||||||
|
"Digital": "Digital",
|
||||||
"Director": "Director",
|
"Director": "Director",
|
||||||
"Directors": "Directors",
|
"Directors": "Directors",
|
||||||
"DirectPlaying": "Direct playing",
|
"DirectPlaying": "Direct playing",
|
||||||
|
@ -1254,6 +1255,7 @@
|
||||||
"OptionWeekdays": "Weekdays",
|
"OptionWeekdays": "Weekdays",
|
||||||
"OptionWeekends": "Weekends",
|
"OptionWeekends": "Weekends",
|
||||||
"OptionWeekly": "Weekly",
|
"OptionWeekly": "Weekly",
|
||||||
|
"OriginalAirDate": "Original Air Date",
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Original air date: {0}",
|
||||||
"Other": "Other",
|
"Other": "Other",
|
||||||
"OtherArtist": "Other Artist",
|
"OtherArtist": "Other Artist",
|
||||||
|
@ -1316,6 +1318,7 @@
|
||||||
"Primary": "Primary",
|
"Primary": "Primary",
|
||||||
"Print": "Print",
|
"Print": "Print",
|
||||||
"Producer": "Producer",
|
"Producer": "Producer",
|
||||||
|
"Production": "Production",
|
||||||
"ProductionLocations": "Production locations",
|
"ProductionLocations": "Production locations",
|
||||||
"Profile": "Profile",
|
"Profile": "Profile",
|
||||||
"Programs": "Programs",
|
"Programs": "Programs",
|
||||||
|
@ -1424,6 +1427,7 @@
|
||||||
"SortName": "Sort name",
|
"SortName": "Sort name",
|
||||||
"SpecialFeatures": "Special Features",
|
"SpecialFeatures": "Special Features",
|
||||||
"Sports": "Sports",
|
"Sports": "Sports",
|
||||||
|
"StoryArc": "Story Arc",
|
||||||
"StopPlayback": "Stop playback",
|
"StopPlayback": "Stop playback",
|
||||||
"StopRecording": "Stop recording",
|
"StopRecording": "Stop recording",
|
||||||
"Studios": "Studios",
|
"Studios": "Studios",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue