mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update favorites
This commit is contained in:
parent
fe036d467f
commit
460d0cab8b
2 changed files with 4 additions and 3 deletions
|
@ -40,7 +40,8 @@
|
|||
Recursive: true,
|
||||
Fields: "PrimaryImageAspectRatio,SyncInfo",
|
||||
CollapseBoxSetItems: false,
|
||||
ExcludeLocationTypes: "Virtual"
|
||||
ExcludeLocationTypes: "Virtual",
|
||||
EnableTotalRecordCount: false
|
||||
};
|
||||
|
||||
if (topParentId) {
|
||||
|
@ -73,7 +74,7 @@
|
|||
html += '<div>';
|
||||
html += '<h1 style="display:inline-block; vertical-align:middle;" class="listHeader">' + Globalize.translate(section.name) + '</h1>';
|
||||
|
||||
if (result.TotalRecordCount > result.Items.length) {
|
||||
if (options.Limit && result.Items.length >= options.Limit) {
|
||||
var href = "secondaryitems.html?type=" + section.types + "&filters=IsFavorite&titlekey=" + section.name;
|
||||
|
||||
html += '<a class="clearLink" href="' + href + '" style="margin-left:2em;"><button is="emby-button" type="button" class="raised more mini">' + Globalize.translate('ButtonMore') + '</button></a>';
|
||||
|
|
|
@ -2351,7 +2351,7 @@
|
|||
"LabelTitle": "Title:",
|
||||
"LabelOriginalTitle": "Original title:",
|
||||
"LabelSortTitle": "Sort title:",
|
||||
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings",
|
||||
"OptionConvertRecordingPreserveAudio": "Preserve original audio when converting recordings (when possible)",
|
||||
"OptionConvertRecordingPreserveAudioHelp": "This will provide better audio but may require transcoding during playback on some devices.",
|
||||
"CreateCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
||||
"AddItemToCollectionHelp": "Add items to collections by searching for them and using their right-click or tap menus to add them to a collection.",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue