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

update translations

This commit is contained in:
Luke Pulverenti 2015-09-23 12:16:06 -04:00
parent b70aa4926c
commit e334a86a01
97 changed files with 2414 additions and 1218 deletions

View file

@ -121,6 +121,7 @@
},
enableFullPaperTabs: function () {
return true;
return AppInfo.isNativeApp;
},
@ -2633,7 +2634,7 @@
html += '</span>';
}
if (showControls || options.viewButton || options.sortButton || options.addLayoutButton || options.addSelectionButton || options.additionalButtonsHtml) {
if (showControls || options.viewButton || options.sortButton || options.addLayoutButton) {
html += '<div style="display:inline-block;margin-left:10px;">';
@ -2643,12 +2644,6 @@
html += '<paper-icon-button class="btnNextPage" icon="arrow-forward" ' + (startIndex + limit >= totalRecordCount ? 'disabled' : '') + '></paper-icon-button>';
}
html += (options.additionalButtonsHtml || '');
if (options.addSelectionButton) {
html += '<paper-icon-button class="btnToggleSelections" icon="check"></paper-icon-button>';
}
if (options.addLayoutButton) {
html += '<paper-icon-button title="' + Globalize.translate('ButtonSelectView') + '" class="btnChangeLayout" data-layouts="' + (options.layouts || '') + '" onclick="LibraryBrowser.showLayoutMenu(this, \'' + (options.currentLayout || '') + '\');" icon="view-comfy"></paper-icon-button>';