1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

rework localization

This commit is contained in:
Luke Pulverenti 2015-07-27 14:18:10 -04:00
parent b1f6f8486a
commit 043f8b7889
82 changed files with 83316 additions and 96 deletions

View file

@ -160,7 +160,6 @@
function loadForm(page, user, displayPreferences) {
$('#chkDisplayCollectionView', page).checked(user.Configuration.DisplayCollectionsView || false).checkboxradio("refresh");
$('#chkDisplayFolderView', page).checked(user.Configuration.DisplayFoldersView || false).checkboxradio("refresh");
$('#chkHidePlayedFromLatest', page).checked(user.Configuration.HidePlayedInLatest || false).checkboxradio("refresh");
@ -195,7 +194,6 @@
function saveUser(page, user, displayPreferences) {
user.Configuration.DisplayCollectionsView = $('#chkDisplayCollectionView', page).checked();
user.Configuration.DisplayFoldersView = $('#chkDisplayFolderView', page).checked();
user.Configuration.HidePlayedInLatest = $('#chkHidePlayedFromLatest', page).checked();