mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update translations
This commit is contained in:
parent
bcb7bc1bf0
commit
bb5f0a002b
10 changed files with 168 additions and 24 deletions
|
@ -82,6 +82,12 @@
|
|||
$('#btnEditSubtitles', page).hide();
|
||||
}
|
||||
|
||||
if (item.MediaType == "Video" && item.Type != "Episode") {
|
||||
$('#fldShortOverview', page).show();
|
||||
} else {
|
||||
$('#fldShortOverview', page).hide();
|
||||
}
|
||||
|
||||
Dashboard.getCurrentUser().done(function (user) {
|
||||
|
||||
if (user.Configuration.EnableContentDeletion &&
|
||||
|
@ -451,6 +457,7 @@
|
|||
$('#txtPath', page).val(item.Path || '');
|
||||
$('#txtName', page).val(item.Name || "");
|
||||
$('#txtOverview', page).val(item.Overview || "");
|
||||
$('#txtShortOverview', page).val(item.ShortOverview || "");
|
||||
$('#txtSortName', page).val(item.ForcedSortName || "");
|
||||
$('#txtDisplayMediaType', page).val(item.DisplayMediaType || "");
|
||||
$('#txtCommunityRating', page).val(item.CommunityRating || "");
|
||||
|
@ -858,6 +865,7 @@
|
|||
Metascore: $('#txtMetascore', form).val(),
|
||||
AwardSummary: $('#txtAwardSummary', form).val(),
|
||||
Overview: $('#txtOverview', form).val(),
|
||||
ShortOverview: $('#txtShortOverview', form).val(),
|
||||
Status: $('#selectStatus', form).val(),
|
||||
AirDays: getSelectedAirDays(form),
|
||||
AirTime: convertTo12HourFormat($('#txtAirTime', form).val()),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue