mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
Add all TMDB episode orders
This commit is contained in:
parent
30a03f06ad
commit
d15c7c8e29
3 changed files with 18 additions and 2 deletions
|
@ -696,7 +696,17 @@ import template from './metadataEditor.template.html';
|
|||
showElement('#fldDisplayOrder', 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>' + '</option><option value="production">' + globalize.translate('Production') + '</option><option value="tv">TV</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 {
|
||||
context.querySelector('#selectDisplayOrder').innerHTML = '';
|
||||
hideElement('#fldDisplayOrder', context);
|
||||
|
|
|
@ -178,6 +178,7 @@
|
|||
"Desktop": "Desktop",
|
||||
"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.",
|
||||
"Digital": "Digital",
|
||||
"Director": "Director",
|
||||
"Directors": "Directors",
|
||||
"DirectPlaying": "Direct playing",
|
||||
|
@ -1240,6 +1241,7 @@
|
|||
"OptionWeekdays": "Weekdays",
|
||||
"OptionWeekends": "Weekends",
|
||||
"OptionWeekly": "Weekly",
|
||||
"OriginalAirDate": "Original Air Date",
|
||||
"OriginalAirDateValue": "Original air date: {0}",
|
||||
"Other": "Other",
|
||||
"OtherArtist": "Other Artist",
|
||||
|
@ -1404,6 +1406,7 @@
|
|||
"SortName": "Sort name",
|
||||
"SpecialFeatures": "Special Features",
|
||||
"Sports": "Sports",
|
||||
"StoryArc": "Story Arc",
|
||||
"StopPlayback": "Stop playback",
|
||||
"StopRecording": "Stop recording",
|
||||
"Studios": "Studios",
|
||||
|
|
|
@ -1601,5 +1601,8 @@
|
|||
"ReleaseGroup": "Grupo de lanzamiento",
|
||||
"LabelSyncPlaySettingsSyncCorrectionHelp": "Activar la sincronización activa de la reproducción acelerando o moviéndose a la posición estimada. Desactivar esto en caso de cortes frecuentes en la reproducción.",
|
||||
"Cursive": "Cursiva",
|
||||
"Production": "Producción"
|
||||
"Production": "Producción",
|
||||
"OriginalAirDate": "Fecha de emisión original",
|
||||
"Digital": "Digital",
|
||||
"StoryArc": "Arco argumental"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue