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

updated translations

This commit is contained in:
Luke Pulverenti 2014-05-30 15:23:56 -04:00
parent d02d29f33e
commit 9c61eb5dd7
40 changed files with 181 additions and 203 deletions

View file

@ -52,7 +52,7 @@
var currentPlayer;
var currentTargetInfo;
var players = [];
var keys = new bindKeys(self);
$(window).on("keydown", keys.keyBinding);
@ -438,7 +438,7 @@
html += '</fieldset>';
html += '<p class="fieldDescription">All plays will be sent to the selected player.</p>';
html += '<p class="fieldDescription">' + Globalize.translate('LabelAllPlaysSentToPlayer') + '</p>';
checkedHtml = enableMirrorMode ? ' checked="checked"' : '';
html += '<div style="margin-top:1.5em;" class="fldMirrorMode"><label for="chkEnableMirrorMode">Enable display mirroring</label><input type="checkbox" class="chkEnableMirrorMode" id="chkEnableMirrorMode" data-mini="true"' + checkedHtml + ' /></div>';
@ -521,7 +521,7 @@
var self = this;
var keyResult = {};
self.keyBinding = function(e) {
self.keyBinding = function (e) {
if (bypass()) return;
@ -533,7 +533,7 @@
}
};
self.keyPrevent = function(e) {
self.keyPrevent = function (e) {
if (bypass()) return;
@ -544,10 +544,10 @@
}
};
keyResult[32] = function() { // spacebar
keyResult[32] = function () { // spacebar
var player = controller.getCurrentPlayer();
player.getPlayerState().done(function (result) {
var state = result;
@ -562,7 +562,7 @@
});
};
var bypass = function() {
var bypass = function () {
// Get active elem to see what type it is
var active = document.activeElement;
var type = active.type || active.tagName.toLowerCase();