mirror of
https://github.com/jellyfin/jellyfin-web
synced 2025-03-30 19:56:21 +00:00
update components
This commit is contained in:
parent
c7b2fa8dc1
commit
087c2139c6
17 changed files with 442 additions and 381 deletions
|
@ -14,12 +14,12 @@
|
||||||
},
|
},
|
||||||
"devDependencies": {},
|
"devDependencies": {},
|
||||||
"ignore": [],
|
"ignore": [],
|
||||||
"version": "1.4.348",
|
"version": "1.4.351",
|
||||||
"_release": "1.4.348",
|
"_release": "1.4.351",
|
||||||
"_resolution": {
|
"_resolution": {
|
||||||
"type": "version",
|
"type": "version",
|
||||||
"tag": "1.4.348",
|
"tag": "1.4.351",
|
||||||
"commit": "d2faa01cf34ba1e52308619e3b703c2b13361b08"
|
"commit": "0369e11308d178da80ef85d261cc75b84a273f13"
|
||||||
},
|
},
|
||||||
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
"_source": "https://github.com/MediaBrowser/emby-webcomponents.git",
|
||||||
"_target": "^1.2.1",
|
"_target": "^1.2.1",
|
||||||
|
|
|
@ -52,7 +52,7 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
var onAnimationComplete = function () {
|
var onAnimationComplete = function () {
|
||||||
dom.removeEventListener(backdropImage, 'animationend', onAnimationComplete, {
|
dom.removeEventListener(backdropImage, dom.whichAnimationEvent(), onAnimationComplete, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
if (backdropImage === currentAnimatingElement) {
|
if (backdropImage === currentAnimatingElement) {
|
||||||
|
@ -63,7 +63,7 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
dom.addEventListener(backdropImage, 'animationend', onAnimationComplete, {
|
dom.addEventListener(backdropImage, dom.whichAnimationEvent(), onAnimationComplete, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -393,7 +393,7 @@ define(['browser'], function (browser) {
|
||||||
|
|
||||||
profile.TranscodingProfiles = [];
|
profile.TranscodingProfiles = [];
|
||||||
|
|
||||||
['opus', 'mp3', 'aac'].filter(canPlayAudioFormat).forEach(function (audioFormat) {
|
['opus', 'mp3', 'aac', 'wav'].filter(canPlayAudioFormat).forEach(function (audioFormat) {
|
||||||
|
|
||||||
profile.TranscodingProfiles.push({
|
profile.TranscodingProfiles.push({
|
||||||
Container: audioFormat,
|
Container: audioFormat,
|
||||||
|
|
|
@ -246,12 +246,12 @@
|
||||||
if (enableAnimation()) {
|
if (enableAnimation()) {
|
||||||
|
|
||||||
var onFinish = function () {
|
var onFinish = function () {
|
||||||
dom.removeEventListener(dlg, 'animationend', onFinish, {
|
dom.removeEventListener(dlg, dom.whichAnimationEvent(), onFinish, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
onAnimationFinish();
|
onAnimationFinish();
|
||||||
};
|
};
|
||||||
dom.addEventListener(dlg, 'animationend', onFinish, {
|
dom.addEventListener(dlg, dom.whichAnimationEvent(), onFinish, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
return;
|
return;
|
||||||
|
@ -281,12 +281,12 @@
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
var onFinish = function () {
|
var onFinish = function () {
|
||||||
dom.removeEventListener(dlg, 'animationend', onFinish, {
|
dom.removeEventListener(dlg, dom.whichAnimationEvent(), onFinish, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
onAnimationFinish();
|
onAnimationFinish();
|
||||||
};
|
};
|
||||||
dom.addEventListener(dlg, 'animationend', onFinish, {
|
dom.addEventListener(dlg, dom.whichAnimationEvent(), onFinish, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -94,12 +94,65 @@ define([], function () {
|
||||||
return windowSize;
|
return windowSize;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
var _animationEvent;
|
||||||
|
function whichAnimationEvent() {
|
||||||
|
|
||||||
|
if (_animationEvent) {
|
||||||
|
return _animationEvent;
|
||||||
|
}
|
||||||
|
|
||||||
|
var t,
|
||||||
|
el = document.createElement("fakeelement");
|
||||||
|
var animations = {
|
||||||
|
"animation": "animationend",
|
||||||
|
"OAnimation": "oAnimationEnd",
|
||||||
|
"MozAnimation": "animationend",
|
||||||
|
"WebkitAnimation": "webkitAnimationEnd"
|
||||||
|
};
|
||||||
|
for (t in animations) {
|
||||||
|
if (el.style[t] !== undefined) {
|
||||||
|
_animationEvent = animations[t];
|
||||||
|
return animations[t];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_animationEvent = 'animationend';
|
||||||
|
return _animationEvent;
|
||||||
|
}
|
||||||
|
|
||||||
|
var _transitionEvent;
|
||||||
|
function whichTransitionEvent() {
|
||||||
|
if (_transitionEvent) {
|
||||||
|
return _transitionEvent;
|
||||||
|
}
|
||||||
|
|
||||||
|
var t,
|
||||||
|
el = document.createElement("fakeelement");
|
||||||
|
var transitions = {
|
||||||
|
"transition": "transitionend",
|
||||||
|
"OTransition": "oTransitionEnd",
|
||||||
|
"MozTransition": "transitionend",
|
||||||
|
"WebkitTransition": "webkitTransitionEnd"
|
||||||
|
};
|
||||||
|
for (t in transitions) {
|
||||||
|
if (el.style[t] !== undefined) {
|
||||||
|
_transitionEvent = transitions[t];
|
||||||
|
return transitions[t];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
_transitionEvent = 'transitionend';
|
||||||
|
return _transitionEvent;
|
||||||
|
}
|
||||||
|
|
||||||
return {
|
return {
|
||||||
parentWithAttribute: parentWithAttribute,
|
parentWithAttribute: parentWithAttribute,
|
||||||
parentWithClass: parentWithClass,
|
parentWithClass: parentWithClass,
|
||||||
parentWithTag: parentWithTag,
|
parentWithTag: parentWithTag,
|
||||||
addEventListener: addEventListenerWithOptions,
|
addEventListener: addEventListenerWithOptions,
|
||||||
removeEventListener: removeEventListenerWithOptions,
|
removeEventListener: removeEventListenerWithOptions,
|
||||||
getWindowSize: getWindowSize
|
getWindowSize: getWindowSize,
|
||||||
|
whichTransitionEvent: whichTransitionEvent,
|
||||||
|
whichAnimationEvent: whichAnimationEvent
|
||||||
};
|
};
|
||||||
});
|
});
|
|
@ -26,7 +26,7 @@
|
||||||
btn.appendChild(div);
|
btn.appendChild(div);
|
||||||
}
|
}
|
||||||
|
|
||||||
div.addEventListener("animationend", function () {
|
div.addEventListener(dom.whichAnimationEvent(), function () {
|
||||||
div.parentNode.removeChild(div);
|
div.parentNode.removeChild(div);
|
||||||
}, false);
|
}, false);
|
||||||
}
|
}
|
||||||
|
|
|
@ -29,7 +29,7 @@
|
||||||
|
|
||||||
btn.appendChild(div);
|
btn.appendChild(div);
|
||||||
|
|
||||||
div.addEventListener("animationend", function () {
|
div.addEventListener(dom.whichAnimationEvent(), function () {
|
||||||
div.parentNode.removeChild(div);
|
div.parentNode.removeChild(div);
|
||||||
}, false);
|
}, false);
|
||||||
}
|
}
|
||||||
|
|
|
@ -26,6 +26,7 @@ _:-ms-input-placeholder, :root .mdl-slider {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
/* Disable webkit tap highlighting */
|
/* Disable webkit tap highlighting */
|
||||||
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
-webkit-tap-highlight-color: rgba(0,0,0,0);
|
||||||
|
display: block;
|
||||||
/**************************** Tracks ****************************/
|
/**************************** Tracks ****************************/
|
||||||
/**************************** Thumbs ****************************/
|
/**************************** Thumbs ****************************/
|
||||||
/**************************** 0-value ****************************/
|
/**************************** 0-value ****************************/
|
||||||
|
@ -79,9 +80,7 @@ _:-ms-input-placeholder, :root .mdl-slider {
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background: #52B54B;
|
background: #52B54B;
|
||||||
border: none;
|
border: none;
|
||||||
transition: border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
|
|
||||||
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
|
||||||
transition: transform 0.18s cubic-bezier(0.4, 0, 0.2, 1), border 0.18s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.18s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), -webkit-transform 0.18s cubic-bezier(0.4, 0, 0.2, 1);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.mdl-slider::-moz-range-thumb {
|
.mdl-slider::-moz-range-thumb {
|
||||||
|
|
|
@ -23,6 +23,13 @@
|
||||||
if (backgroundLower) {
|
if (backgroundLower) {
|
||||||
var fraction = (value - range.min) / (range.max - range.min);
|
var fraction = (value - range.min) / (range.max - range.min);
|
||||||
|
|
||||||
|
if (browser.noFlex) {
|
||||||
|
backgroundLower.style['-webkit-flex'] = fraction;
|
||||||
|
backgroundUpper.style['-webkit-flex'] = 1 - fraction;
|
||||||
|
backgroundLower.style['-webkit-box-flex'] = fraction;
|
||||||
|
backgroundUpper.style['-webkit-box-flex'] = 1 - fraction;
|
||||||
|
}
|
||||||
|
|
||||||
backgroundLower.style.flex = fraction;
|
backgroundLower.style.flex = fraction;
|
||||||
backgroundUpper.style.flex = 1 - fraction;
|
backgroundUpper.style.flex = 1 - fraction;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,37 +1,37 @@
|
||||||
{
|
{
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Odemknout tuto funkci pomoc\u00ed jednor\u00e1zov\u00e9 platby, nebo pomoc\u00ed aktivace p\u0159edplatn\u00e9ho Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Odemknout tuto funkci pomoc\u00ed aktivn\u00edho p\u0159edplatn\u00e9ho Emby Premiere.",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "Pokud m\u00e1te aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere, ujist\u011bte se, \u017ee m\u00e1te nastaven Emby Premiere v panelu Nastaven\u00ed pod N\u00e1pov\u011bda -> Emby Premiere.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Speci\u00e1l - {0}",
|
||||||
"Share": "Share",
|
"Share": "Sd\u00edlet",
|
||||||
"Add": "P\u0159idat",
|
"Add": "P\u0159idat",
|
||||||
"ServerUpdateNeeded": "Tento Emby Server je t\u0159eba aktualizovat. Chcete-li st\u00e1hnout nejnov\u011bj\u0161\u00ed verzi, nav\u0161tivte pros\u00edm {0}",
|
"ServerUpdateNeeded": "Tento Emby Server je t\u0159eba aktualizovat. Chcete-li st\u00e1hnout nejnov\u011bj\u0161\u00ed verzi, nav\u0161tivte pros\u00edm {0}",
|
||||||
"LiveTvGuideRequiresUnlock": "Live TV programov\u00fd pr\u016fvodce je v sou\u010dasn\u00e9 dob\u011b omezen na {0} kan\u00e1l\u016f. Odemknut\u00edm se m\u016f\u017eete nau\u010dit jak si u\u017e\u00edt tuto funkci.",
|
"LiveTvGuideRequiresUnlock": "Live TV programov\u00fd pr\u016fvodce je v sou\u010dasn\u00e9 dob\u011b omezen na {0} kan\u00e1l\u016f. Odemknut\u00edm se m\u016f\u017eete nau\u010dit jak si u\u017e\u00edt tuto funkci.",
|
||||||
"AttributeNew": "New",
|
"AttributeNew": "Nov\u00e9",
|
||||||
"Premiere": "Premiere",
|
"Premiere": "Premi\u00e9ra",
|
||||||
"Live": "Live",
|
"Live": "\u017div\u011b",
|
||||||
"Repeat": "Opakovat",
|
"Repeat": "Opakovat",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} stop",
|
||||||
"ItemCount": "{0} polo\u017eek",
|
"ItemCount": "{0} polo\u017eek",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
"ReleaseYearValue": "Rok vyd\u00e1n\u00ed: {0}",
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Datum vys\u00edl\u00e1n\u00ed origin\u00e1lu: {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Kon\u010d\u00ed v {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Ned",
|
||||||
"OptionMondayShort": "Mon",
|
"OptionMondayShort": "Pon",
|
||||||
"OptionTuesdayShort": "Tue",
|
"OptionTuesdayShort": "\u00date",
|
||||||
"OptionWednesdayShort": "Wed",
|
"OptionWednesdayShort": "St\u0159",
|
||||||
"OptionThursdayShort": "Thu",
|
"OptionThursdayShort": "\u010ctv",
|
||||||
"OptionFridayShort": "Fri",
|
"OptionFridayShort": "P\u00e1t",
|
||||||
"OptionSaturdayShort": "Sat",
|
"OptionSaturdayShort": "Sob",
|
||||||
"HeaderSelectDate": "Vyber datum",
|
"HeaderSelectDate": "Vyber datum",
|
||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Zru\u0161it",
|
"ButtonCancel": "Zru\u0161it",
|
||||||
"ButtonGotIt": "M\u00e1m to",
|
"ButtonGotIt": "M\u00e1m to",
|
||||||
"ButtonRestart": "Restart",
|
"ButtonRestart": "Restart",
|
||||||
"RecordingCancelled": "Nahr\u00e1v\u00e1n\u00ed zru\u0161eno.",
|
"RecordingCancelled": "Nahr\u00e1v\u00e1n\u00ed zru\u0161eno.",
|
||||||
"SeriesCancelled": "Series cancelled.",
|
"SeriesCancelled": "S\u00e9rie zru\u0161ena.",
|
||||||
"RecordingScheduled": "Pl\u00e1n nahr\u00e1v\u00e1n\u00ed.",
|
"RecordingScheduled": "Pl\u00e1n nahr\u00e1v\u00e1n\u00ed.",
|
||||||
"SeriesRecordingScheduled": "Series recording scheduled.",
|
"SeriesRecordingScheduled": "Pl\u00e1n nahr\u00e1v\u00e1n\u00ed seri\u00e1lu.",
|
||||||
"HeaderNewRecording": "Nov\u00fd z\u00e1znam",
|
"HeaderNewRecording": "Nov\u00fd z\u00e1znam",
|
||||||
"Sunday": "Ned\u011ble",
|
"Sunday": "Ned\u011ble",
|
||||||
"Monday": "Pond\u011bl\u00ed",
|
"Monday": "Pond\u011bl\u00ed",
|
||||||
|
@ -41,23 +41,23 @@
|
||||||
"Friday": "P\u00e1tek",
|
"Friday": "P\u00e1tek",
|
||||||
"Saturday": "Sobota",
|
"Saturday": "Sobota",
|
||||||
"Days": "Dny",
|
"Days": "Dny",
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Nahr\u00e1t s\u00e9rie",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Cinema M\u00f3d",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Synchronizace s Cloudem",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Offline m\u00e9dia",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "St\u00e1hnout m\u00e9dia do va\u0161eho za\u0159\u00edzen\u00ed pro snadn\u00e9 pou\u017eit\u00ed offline.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Synchronizujte va\u0161e m\u00e9dia na cloud pro jednodu\u0161\u0161\u00ed z\u00e1lohov\u00e1n\u00ed, archivaci a konverzi.",
|
||||||
"CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.",
|
"CoverArtFeatureDescription": "Cover Art vytv\u00e1\u0159\u00ed z\u00e1bavn\u00e9 obaly a dal\u0161\u00ed mo\u017enosti \u00faprav, kter\u00e9 v\u00e1m pomohou p\u0159izp\u016fsobit va\u0161e medi\u00e1ln\u00ed obr\u00e1zky.",
|
||||||
"CoverArt": "Cover Art",
|
"CoverArt": "Obal",
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "S re\u017eimem Kino z\u00edskate funkci, kter\u00e1 p\u0159ed hlavn\u00edm programem p\u0159ehraje trailery a u\u017eivatelsk\u00e1 intra.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Emby Apps zdarma",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "U\u017eijte si v\u00fdb\u011br Emby aplikac\u00ed zdarma pro va\u0161e za\u0159\u00edzen\u00ed.",
|
||||||
"HeaderBecomeProjectSupporter": "Z\u00edskat Emby Premiere",
|
"HeaderBecomeProjectSupporter": "Z\u00edskat Emby Premiere",
|
||||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere je zapot\u0159eb\u00ed pro vytvo\u0159en\u00ed automatick\u00e9ho nahr\u00e1v\u00e1n\u00ed \u0159ad.",
|
"MessageActiveSubscriptionRequiredSeriesRecordings": "Aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere je zapot\u0159eb\u00ed pro vytvo\u0159en\u00ed automatick\u00e9ho nahr\u00e1v\u00e1n\u00ed \u0159ad.",
|
||||||
"LabelEmailAddress": "E-mail address:",
|
"LabelEmailAddress": "E-mailov\u00e1 adresa:",
|
||||||
"PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.",
|
"PromoConvertRecordingsToStreamingFormat": "Automaticky konvertovat nahr\u00e1vky do dopore\u010den\u00e9ho streamovac\u00edho form\u00e1tu s Emby Premiere. Nahr\u00e1vky budou p\u0159ehr\u00e1v\u00e1n\u00ed konvertov\u00e1ny do MP4 nebo MKV - dle nastaven\u00ed Emby server.",
|
||||||
"FeatureRequiresEmbyPremiere": "Tato funkce vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.",
|
"FeatureRequiresEmbyPremiere": "Tato funkce vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.",
|
||||||
"HeaderConvertYourRecordings": "Convert Your Recordings",
|
"HeaderConvertYourRecordings": "Konverze va\u0161ich nahr\u00e1vek",
|
||||||
"Record": "Nahr\u00e1vat",
|
"Record": "Nahr\u00e1vat",
|
||||||
"Save": "Ulo\u017eit",
|
"Save": "Ulo\u017eit",
|
||||||
"Edit": "Upravit",
|
"Edit": "Upravit",
|
||||||
|
@ -67,38 +67,38 @@
|
||||||
"HeaderDeleteItem": "Smazat polo\u017eku",
|
"HeaderDeleteItem": "Smazat polo\u017eku",
|
||||||
"ConfirmDeleteItem": "Smaz\u00e1n\u00edm polo\u017eky odstran\u00edte soubor jak z knihovny m\u00e9di\u00ed tak ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
"ConfirmDeleteItem": "Smaz\u00e1n\u00edm polo\u017eky odstran\u00edte soubor jak z knihovny m\u00e9di\u00ed tak ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
||||||
"Refresh": "Obnovit",
|
"Refresh": "Obnovit",
|
||||||
"RefreshQueued": "Refresh queued.",
|
"RefreshQueued": "Obnoven\u00ed za\u0159azeno.",
|
||||||
"AddToCollection": "Add to collection",
|
"AddToCollection": "P\u0159idat do kolekce",
|
||||||
"HeaderAddToCollection": "P\u0159idat do Kolekce",
|
"HeaderAddToCollection": "P\u0159idat do Kolekce",
|
||||||
"NewCollection": "Nov\u00e1 kolekce",
|
"NewCollection": "Nov\u00e1 kolekce",
|
||||||
"LabelCollection": "Collection:",
|
"LabelCollection": "Kolekce:",
|
||||||
"Help": "N\u00e1pov\u011bda",
|
"Help": "N\u00e1pov\u011bda",
|
||||||
"NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"NewCollectionHelp": "Kolekce dovol\u00ed vytvo\u0159it personalizovan\u00e9 seskupen\u00ed film\u016f a dal\u0161\u00edho obsahu knihoven.",
|
||||||
"SearchForCollectionInternetMetadata": "Vyhledat metadata a obr\u00e1zky na Internetu.",
|
"SearchForCollectionInternetMetadata": "Vyhledat metadata a obr\u00e1zky na Internetu.",
|
||||||
"LabelName": "Jm\u00e9no:",
|
"LabelName": "Jm\u00e9no:",
|
||||||
"NewCollectionNameExample": "P\u0159\u00edklad: Kolekce Star Wars",
|
"NewCollectionNameExample": "P\u0159\u00edklad: Kolekce Star Wars",
|
||||||
"MessageItemsAdded": "Items added.",
|
"MessageItemsAdded": "Polo\u017eka p\u0159id\u00e1na.",
|
||||||
"OptionNew": "Nov\u00fd...",
|
"OptionNew": "Nov\u00fd...",
|
||||||
"LabelPlaylist": "Playlist:",
|
"LabelPlaylist": "Playlist:",
|
||||||
"AddToPlaylist": "P\u0159idat do playlistu",
|
"AddToPlaylist": "P\u0159idat do playlistu",
|
||||||
"HeaderAddToPlaylist": "P\u0159idat do playlistu",
|
"HeaderAddToPlaylist": "P\u0159idat do playlistu",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "Titulky",
|
||||||
"SearchForSubtitles": "Vyhledat titulky",
|
"SearchForSubtitles": "Vyhledat titulky",
|
||||||
"LabelLanguage": "Jazyk:",
|
"LabelLanguage": "Jazyk:",
|
||||||
"Search": "Vyhled\u00e1v\u00e1n\u00ed",
|
"Search": "Vyhled\u00e1v\u00e1n\u00ed",
|
||||||
"NoSubtitleSearchResultsFound": "No results found.",
|
"NoSubtitleSearchResultsFound": "\u017d\u00e1dn\u00e9 v\u00fdsledky.",
|
||||||
"File": "Soubor",
|
"File": "Soubor",
|
||||||
"MessageAreYouSureDeleteSubtitles": "Jste si jisti, \u017ee chcete smazat tyto titulky?",
|
"MessageAreYouSureDeleteSubtitles": "Jste si jisti, \u017ee chcete smazat tyto titulky?",
|
||||||
"ConfirmDeletion": "Potvrdit smaz\u00e1n\u00ed",
|
"ConfirmDeletion": "Potvrdit smaz\u00e1n\u00ed",
|
||||||
"MySubtitles": "My Subtitles",
|
"MySubtitles": "M\u00e9 titulky",
|
||||||
"MessageDownloadQueued": "Download queued.",
|
"MessageDownloadQueued": "Sta\u017een\u00ed za\u0159azeno.",
|
||||||
"EditSubtitles": "Editovat titulky",
|
"EditSubtitles": "Editovat titulky",
|
||||||
"UnlockGuide": "Pr\u016fvodce pro odem\u010den\u00ed",
|
"UnlockGuide": "Pr\u016fvodce pro odem\u010den\u00ed",
|
||||||
"RefreshMetadata": "Obnovit Metadata",
|
"RefreshMetadata": "Obnovit Metadata",
|
||||||
"ReplaceExistingImages": "Nahradit existuj\u00edc\u00ed obr\u00e1zky",
|
"ReplaceExistingImages": "Nahradit existuj\u00edc\u00ed obr\u00e1zky",
|
||||||
"ReplaceAllMetadata": "Replace all metadata",
|
"ReplaceAllMetadata": "P\u0159epsat v\u0161echna metadata",
|
||||||
"SearchForMissingMetadata": "Search for missing metadata",
|
"SearchForMissingMetadata": "Hled\u00e1n\u00ed chyb\u011bj\u00edc\u00edch metadat",
|
||||||
"LabelRefreshMode": "Refresh mode:",
|
"LabelRefreshMode": "M\u00f3d obnovy:",
|
||||||
"NoItemsFound": "Nenalezeny \u017e\u00e1dn\u00e9 polo\u017eky.",
|
"NoItemsFound": "Nenalezeny \u017e\u00e1dn\u00e9 polo\u017eky.",
|
||||||
"HeaderSaySomethingLike": "Vyslovte n\u011bco jako...",
|
"HeaderSaySomethingLike": "Vyslovte n\u011bco jako...",
|
||||||
"ButtonTryAgain": "Zkusit znovu",
|
"ButtonTryAgain": "Zkusit znovu",
|
||||||
|
@ -110,35 +110,35 @@
|
||||||
"Favorite": "Obl\u00edben\u00e9",
|
"Favorite": "Obl\u00edben\u00e9",
|
||||||
"Like": "M\u00e1m r\u00e1d",
|
"Like": "M\u00e1m r\u00e1d",
|
||||||
"Dislike": "Nem\u00e1m r\u00e1d",
|
"Dislike": "Nem\u00e1m r\u00e1d",
|
||||||
"RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.",
|
"RefreshDialogHelp": "Metadata se aktualizuj\u00ed na z\u00e1klad\u011b nastaven\u00ed a internetov\u00fdch slu\u017eeb, kter\u00e9 jsou povoleny v nastaven\u00ed Emby Server.",
|
||||||
"Open": "Otev\u0159\u00edt",
|
"Open": "Otev\u0159\u00edt",
|
||||||
"Play": "P\u0159ehr\u00e1t",
|
"Play": "P\u0159ehr\u00e1t",
|
||||||
"Queue": "Fronta",
|
"Queue": "Fronta",
|
||||||
"Shuffle": "N\u00e1hodn\u011b",
|
"Shuffle": "N\u00e1hodn\u011b",
|
||||||
"Identify": "Identifikuj",
|
"Identify": "Identifikuj",
|
||||||
"EditImages": "Editace obr\u00e1zk\u016f",
|
"EditImages": "Editace obr\u00e1zk\u016f",
|
||||||
"EditInfo": "Edit info",
|
"EditInfo": "Editace info",
|
||||||
"Sync": "Sync",
|
"Sync": "Synchronizace",
|
||||||
"InstantMix": "Okam\u017eit\u00e9 m\u00edch\u00e1n\u00ed",
|
"InstantMix": "Okam\u017eit\u00e9 m\u00edch\u00e1n\u00ed",
|
||||||
"ViewAlbum": "Zobrazit album",
|
"ViewAlbum": "Zobrazit album",
|
||||||
"ViewArtist": "Zobrazit \u00fam\u011blce",
|
"ViewArtist": "Zobrazit \u00fam\u011blce",
|
||||||
"QueueAllFromHere": "Za\u0159adit v\u0161e do fronty",
|
"QueueAllFromHere": "Za\u0159adit v\u0161e do fronty",
|
||||||
"PlayAllFromHere": "P\u0159ehr\u00e1t v\u0161e odsud",
|
"PlayAllFromHere": "P\u0159ehr\u00e1t v\u0161e odsud",
|
||||||
"PlayFromBeginning": "Play from beginning",
|
"PlayFromBeginning": "P\u0159ehr\u00e1t od za\u010d\u00e1tku",
|
||||||
"ResumeAt": "Resume from {0}",
|
"ResumeAt": "Obnovit p\u0159ehr\u00e1v\u00e1n\u00ed od {0}",
|
||||||
"RemoveFromPlaylist": "Odebrat z playlistu",
|
"RemoveFromPlaylist": "Odebrat z playlistu",
|
||||||
"RemoveFromCollection": "Remove from collection",
|
"RemoveFromCollection": "Odebrat z kolekce",
|
||||||
"Trailer": "Uk\u00e1zka\/trailer",
|
"Trailer": "Uk\u00e1zka\/trailer",
|
||||||
"MarkPlayed": "Ozna\u010dit p\u0159ehran\u00e9",
|
"MarkPlayed": "Ozna\u010dit p\u0159ehran\u00e9",
|
||||||
"MarkUnplayed": "Ozna\u010dit nep\u0159ehran\u00e9",
|
"MarkUnplayed": "Ozna\u010dit nep\u0159ehran\u00e9",
|
||||||
"GroupVersions": "Group versions",
|
"GroupVersions": "Skupinov\u00e9 verze",
|
||||||
"PleaseSelectTwoItems": "Vyberte nejm\u00e9n\u011b dv\u011b polo\u017eky pros\u00edm.",
|
"PleaseSelectTwoItems": "Vyberte nejm\u00e9n\u011b dv\u011b polo\u017eky pros\u00edm.",
|
||||||
"TryMultiSelect": "Vyzkou\u0161ej multi-v\u00fdb\u011br",
|
"TryMultiSelect": "Vyzkou\u0161ej multi-v\u00fdb\u011br",
|
||||||
"TryMultiSelectMessage": "Chcete-li upravit v\u00edce medi\u00e1ln\u00edch polo\u017eek, sta\u010d\u00ed kliknout a podr\u017eet na kter\u00e9mkoliv plak\u00e1tu. Pot\u00e9 m\u016f\u017eete vybrat v\u00edce polo\u017eek, kter\u00e9 chcete spravovat. Zkus to!",
|
"TryMultiSelectMessage": "Chcete-li upravit v\u00edce medi\u00e1ln\u00edch polo\u017eek, sta\u010d\u00ed kliknout a podr\u017eet na kter\u00e9mkoliv plak\u00e1tu. Pot\u00e9 m\u016f\u017eete vybrat v\u00edce polo\u017eek, kter\u00e9 chcete spravovat. Zkus to!",
|
||||||
"HeaderConfirmRecordingCancellation": "Potvrzen\u00ed zru\u0161en\u00ed nahr\u00e1v\u00e1n\u00ed",
|
"HeaderConfirmRecordingCancellation": "Potvrzen\u00ed zru\u0161en\u00ed nahr\u00e1v\u00e1n\u00ed",
|
||||||
"MessageConfirmRecordingCancellation": "Jste si jisti, \u017ee chcete zru\u0161it tuto nahr\u00e1vku?",
|
"MessageConfirmRecordingCancellation": "Jste si jisti, \u017ee chcete zru\u0161it tuto nahr\u00e1vku?",
|
||||||
"Error": "Chyba",
|
"Error": "Chyba",
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Hlasov\u00fd vstup",
|
||||||
"LabelContentType": "Typ obsahu:",
|
"LabelContentType": "Typ obsahu:",
|
||||||
"LabelPath": "Cesta k souboru:",
|
"LabelPath": "Cesta k souboru:",
|
||||||
"LabelTitle": "N\u00e1zev:",
|
"LabelTitle": "N\u00e1zev:",
|
||||||
|
@ -183,16 +183,16 @@
|
||||||
"LabelAirsAfterSeason": "Vys\u00edl\u00e1no po sez\u00f3n\u011b:",
|
"LabelAirsAfterSeason": "Vys\u00edl\u00e1no po sez\u00f3n\u011b:",
|
||||||
"LabelAirsBeforeEpisode": "Vys\u00edl\u00e1no p\u0159ed epizodou:",
|
"LabelAirsBeforeEpisode": "Vys\u00edl\u00e1no p\u0159ed epizodou:",
|
||||||
"HeaderExternalIds": "Extern\u00ed Id:",
|
"HeaderExternalIds": "Extern\u00ed Id:",
|
||||||
"HeaderDisplaySettings": "Display Settings",
|
"HeaderDisplaySettings": "Nastaven\u00ed zobrazen\u00ed",
|
||||||
"LabelTreatImageAs": "Pova\u017eovat obr\u00e1zek za:",
|
"LabelTreatImageAs": "Pova\u017eovat obr\u00e1zek za:",
|
||||||
"LabelDisplayOrder": "Po\u0159ad\u00ed zobrazen\u00ed:",
|
"LabelDisplayOrder": "Po\u0159ad\u00ed zobrazen\u00ed:",
|
||||||
"Countries": "Countries",
|
"Countries": "Zem\u011b",
|
||||||
"Genres": "Genres",
|
"Genres": "\u017d\u00e1nry",
|
||||||
"HeaderPlotKeywords": "Kl\u00ed\u010dov\u00e1 slova obsahu",
|
"HeaderPlotKeywords": "Kl\u00ed\u010dov\u00e1 slova obsahu",
|
||||||
"Studios": "Studios",
|
"Studios": "Studia",
|
||||||
"Tags": "Tagy",
|
"Tags": "Tagy",
|
||||||
"HeaderMetadataSettings": "Nastaven\u00ed metadat",
|
"HeaderMetadataSettings": "Nastaven\u00ed metadat",
|
||||||
"People": "People",
|
"People": "Lid\u00e9",
|
||||||
"LabelMetadataDownloadLanguage": "Preferovan\u00fd jazyk:",
|
"LabelMetadataDownloadLanguage": "Preferovan\u00fd jazyk:",
|
||||||
"LabelLockItemToPreventChanges": "Uzamknout polo\u017eku pro z\u00e1branu budouc\u00edch zm\u011bn",
|
"LabelLockItemToPreventChanges": "Uzamknout polo\u017eku pro z\u00e1branu budouc\u00edch zm\u011bn",
|
||||||
"MessageLeaveEmptyToInherit": "P\u0159i ponech\u00e1n\u00ed pr\u00e1zdn\u00e9 polo\u017eky bude zd\u011bd\u011bno nastaven\u00ed z polo\u017eky p\u0159edka nebo z glob\u00e1ln\u00ed defaultn\u00ed hodnoty.",
|
"MessageLeaveEmptyToInherit": "P\u0159i ponech\u00e1n\u00ed pr\u00e1zdn\u00e9 polo\u017eky bude zd\u011bd\u011bno nastaven\u00ed z polo\u017eky p\u0159edka nebo z glob\u00e1ln\u00ed defaultn\u00ed hodnoty.",
|
||||||
|
@ -202,14 +202,14 @@
|
||||||
"LabelBirthDate": "Datum narozen\u00ed:",
|
"LabelBirthDate": "Datum narozen\u00ed:",
|
||||||
"LabelDeathDate": "Datum \u00famrt\u00ed:",
|
"LabelDeathDate": "Datum \u00famrt\u00ed:",
|
||||||
"LabelEndDate": "Datum ukon\u010den\u00ed:",
|
"LabelEndDate": "Datum ukon\u010den\u00ed:",
|
||||||
"LabelSeasonNumber": "Season number:",
|
"LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny:",
|
||||||
"LabelEpisodeNumber": "Episode number:",
|
"LabelEpisodeNumber": "\u010c\u00edslo epizody:",
|
||||||
"LabelTrackNumber": "\u010c\u00edslo stopy:",
|
"LabelTrackNumber": "\u010c\u00edslo stopy:",
|
||||||
"LabelNumber": "\u010c\u00edslo:",
|
"LabelNumber": "\u010c\u00edslo:",
|
||||||
"LabelDiscNumber": "\u010c\u00edslo disku",
|
"LabelDiscNumber": "\u010c\u00edslo disku",
|
||||||
"LabelParentNumber": "\u010c\u00edslo p\u0159edch\u016fdce",
|
"LabelParentNumber": "\u010c\u00edslo p\u0159edch\u016fdce",
|
||||||
"SortName": "Set\u0159\u00eddit dle n\u00e1zvu",
|
"SortName": "Set\u0159\u00eddit dle n\u00e1zvu",
|
||||||
"ReleaseDate": "Release date",
|
"ReleaseDate": "Datum vyd\u00e1n\u00ed",
|
||||||
"Continuing": "Pokra\u010dov\u00e1n\u00ed",
|
"Continuing": "Pokra\u010dov\u00e1n\u00ed",
|
||||||
"Ended": "Ukon\u010deno",
|
"Ended": "Ukon\u010deno",
|
||||||
"HeaderEnabledFields": "Povolen\u00e9 pole",
|
"HeaderEnabledFields": "Povolen\u00e9 pole",
|
||||||
|
@ -217,19 +217,19 @@
|
||||||
"Backdrops": "Pozad\u00ed",
|
"Backdrops": "Pozad\u00ed",
|
||||||
"Images": "Obr\u00e1zky",
|
"Images": "Obr\u00e1zky",
|
||||||
"Keywords": "Kl\u00ed\u010dov\u00e1 slova",
|
"Keywords": "Kl\u00ed\u010dov\u00e1 slova",
|
||||||
"Runtime": "Runtime",
|
"Runtime": "D\u00e9lka",
|
||||||
"ProductionLocations": "Production locations",
|
"ProductionLocations": "M\u00edsto v\u00fdroby",
|
||||||
"BirthLocation": "Birth location",
|
"BirthLocation": "M\u00edsto narozen\u00ed",
|
||||||
"ParentalRating": "Rodi\u010dovsk\u00e9 hodnocen\u00ed",
|
"ParentalRating": "Rodi\u010dovsk\u00e9 hodnocen\u00ed",
|
||||||
"Name": "Name",
|
"Name": "N\u00e1zev",
|
||||||
"Overview": "Overview",
|
"Overview": "P\u0159ehled\/Obsah",
|
||||||
"LabelType": "Typ:",
|
"LabelType": "Typ:",
|
||||||
"LabelPersonRole": "Role:",
|
"LabelPersonRole": "Role:",
|
||||||
"LabelPersonRoleHelp": "Example: Ice cream truck driver",
|
"LabelPersonRoleHelp": "P\u0159\u00edklad: \u0158idi\u010d kami\u00f3nu se zmrzlinou",
|
||||||
"Actor": "Herec",
|
"Actor": "Herec",
|
||||||
"Composer": "Skladatel",
|
"Composer": "Skladatel",
|
||||||
"Director": "Re\u017eis\u00e9r",
|
"Director": "Re\u017eis\u00e9r",
|
||||||
"GuestStar": "Guest star",
|
"GuestStar": "Hostuj\u00edc\u00ed hv\u011bzda",
|
||||||
"Producer": "Producent",
|
"Producer": "Producent",
|
||||||
"Writer": "Napsal",
|
"Writer": "Napsal",
|
||||||
"InstallingPackage": "Instalace {0}",
|
"InstallingPackage": "Instalace {0}",
|
||||||
|
@ -255,20 +255,20 @@
|
||||||
"HeaderIdentifyItemHelp": "Zadejte jedno nebo v\u00edce vyhled\u00e1vac\u00edch krit\u00e9ri\u00ed. Odstra\u0148te krit\u00e9ria pro vyhled\u00e1n\u00ed v\u00edce v\u00fdsledk\u016f.",
|
"HeaderIdentifyItemHelp": "Zadejte jedno nebo v\u00edce vyhled\u00e1vac\u00edch krit\u00e9ri\u00ed. Odstra\u0148te krit\u00e9ria pro vyhled\u00e1n\u00ed v\u00edce v\u00fdsledk\u016f.",
|
||||||
"PleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.",
|
"PleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.",
|
||||||
"MessageItemSaved": "Polo\u017eka ulo\u017eena.",
|
"MessageItemSaved": "Polo\u017eka ulo\u017eena.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed",
|
||||||
"SyncToOtherDevice": "Sync to other device",
|
"SyncToOtherDevice": "Synchronizovat na dal\u0161\u00ed za\u0159\u00edzen\u00ed",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Zp\u0159\u00edstupnit offline",
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} je restartov\u00e1n.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} je vyp\u00edn\u00e1n.",
|
||||||
"HeaderDeleteItems": "Odstranit polo\u017eky",
|
"HeaderDeleteItems": "Odstranit polo\u017eky",
|
||||||
"ConfirmDeleteItems": "Odstran\u011bn\u00edm t\u011bchto polo\u017eek odstran\u00edte va\u0161e m\u00e9dia jak z knihovny m\u00e9di\u00ed, tak i ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
"ConfirmDeleteItems": "Odstran\u011bn\u00edm t\u011bchto polo\u017eek odstran\u00edte va\u0161e m\u00e9dia jak z knihovny m\u00e9di\u00ed, tak i ze souborov\u00e9ho syst\u00e9mu. Jste si jisti, \u017ee chcete pokra\u010dovat?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Pros\u00edm, restartujte Emby Server - {0}.",
|
||||||
"SyncJobCreated": "\u00daloha Sync vytvo\u0159ena",
|
"SyncJobCreated": "\u00daloha Sync vytvo\u0159ena",
|
||||||
"LabelSyncTo": "Sync do:",
|
"LabelSyncTo": "Sync do:",
|
||||||
"LabelSyncJobName": "N\u00e1zev Sync \u00falohy:",
|
"LabelSyncJobName": "N\u00e1zev Sync \u00falohy:",
|
||||||
"LabelQuality": "Kvalita:",
|
"LabelQuality": "Kvalita:",
|
||||||
"LabelSyncNoTargetsHelp": "Vypad\u00e1 to, \u017ee v sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e9 aplikace, kter\u00e9 podporuj\u00ed synchronizaci.",
|
"LabelSyncNoTargetsHelp": "Vypad\u00e1 to, \u017ee v sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e9 aplikace, kter\u00e9 podporuj\u00ed synchronizaci.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadScheduled": "Sta\u017een\u00ed napl\u00e1nov\u00e1no",
|
||||||
"LearnMore": "Zjistit v\u00edce",
|
"LearnMore": "Zjistit v\u00edce",
|
||||||
"LabelProfile": "Profil:",
|
"LabelProfile": "Profil:",
|
||||||
"LabelBitrateMbps": "Datov\u00fd tok (Mbps):",
|
"LabelBitrateMbps": "Datov\u00fd tok (Mbps):",
|
||||||
|
@ -279,77 +279,77 @@
|
||||||
"LabelItemLimit": "Limit polo\u017eek:",
|
"LabelItemLimit": "Limit polo\u017eek:",
|
||||||
"LabelItemLimitHelp": "Voliteln\u00e9. Nastaven\u00ed limitu k po\u010dtu polo\u017eek, kter\u00e9 budou synchronizovan\u00e9.",
|
"LabelItemLimitHelp": "Voliteln\u00e9. Nastaven\u00ed limitu k po\u010dtu polo\u017eek, kter\u00e9 budou synchronizovan\u00e9.",
|
||||||
"PleaseSelectDeviceToSyncTo": "Vyberte za\u0159\u00edzen\u00ed k synchronizaci.",
|
"PleaseSelectDeviceToSyncTo": "Vyberte za\u0159\u00edzen\u00ed k synchronizaci.",
|
||||||
"Screenshots": "Screenshots",
|
"Screenshots": "Sn\u00edmky obrazovky",
|
||||||
"MoveRight": "Move right",
|
"MoveRight": "Posunout vpravo",
|
||||||
"MoveLeft": "Move left",
|
"MoveLeft": "Posunout vlevo",
|
||||||
"ConfirmDeleteImage": "Delete image?",
|
"ConfirmDeleteImage": "Odstranit obr\u00e1zek?",
|
||||||
"HeaderEditImages": "Edit Images",
|
"HeaderEditImages": "Editace obr\u00e1zk\u016f",
|
||||||
"Settings": "Nastaven\u00ed",
|
"Settings": "Nastaven\u00ed",
|
||||||
"ShowIndicatorsFor": "Show indicators for:",
|
"ShowIndicatorsFor": "Zobrazit indik\u00e1tor pro:",
|
||||||
"NewEpisodes": "New episodes",
|
"NewEpisodes": "Nov\u00e9 episody",
|
||||||
"HDPrograms": "HD programs",
|
"HDPrograms": "HD programy",
|
||||||
"LiveBroadcasts": "Live broadcasts",
|
"LiveBroadcasts": "P\u0159\u00edm\u00e9 p\u0159enosy",
|
||||||
"Premieres": "Premieres",
|
"Premieres": "Premi\u00e9ry",
|
||||||
"RepeatEpisodes": "Repeat episodes",
|
"RepeatEpisodes": "Opakovan\u00ed epizod",
|
||||||
"DvrSubscriptionRequired": "Emby DVR requires an active Emby Premiere subscription.",
|
"DvrSubscriptionRequired": "Emby DVR vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.",
|
||||||
"HeaderCancelRecording": "Cancel Recording",
|
"HeaderCancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed",
|
||||||
"CancelRecording": "Cancel recording",
|
"CancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed",
|
||||||
"HeaderKeepRecording": "Keep Recording",
|
"HeaderKeepRecording": "Udr\u017eet nahr\u00e1v\u00e1n\u00ed",
|
||||||
"HeaderCancelSeries": "Cancel Series",
|
"HeaderCancelSeries": "Ukon\u010dit Seri\u00e1l",
|
||||||
"HeaderKeepSeries": "Keep Series",
|
"HeaderKeepSeries": "Udr\u017eet seri\u00e1l",
|
||||||
"HeaderLearnMore": "Learn More",
|
"HeaderLearnMore": "Zjistit v\u00edce",
|
||||||
"DeleteMedia": "Delete media",
|
"DeleteMedia": "Odstranit m\u00e9dia",
|
||||||
"SeriesSettings": "Series settings",
|
"SeriesSettings": "Nastaven\u00ed seri\u00e1lu",
|
||||||
"HeaderRecordingOptions": "Recording Options",
|
"HeaderRecordingOptions": "Nastaven\u00ed nahr\u00e1v\u00e1n\u00ed",
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Ukon\u010dit Seri\u00e1l",
|
||||||
"DoNotRecord": "Do not record",
|
"DoNotRecord": "Nenahr\u00e1vat",
|
||||||
"HeaderSeriesOptions": "Series Options",
|
"HeaderSeriesOptions": "Nastaven\u00ed seri\u00e1lu",
|
||||||
"LabelChannels": "Channels:",
|
"LabelChannels": "Kan\u00e1ly:",
|
||||||
"ChannelNameOnly": "Channel {0} only",
|
"ChannelNameOnly": "Kan\u00e1l {0} jen",
|
||||||
"Anytime": "Anytime",
|
"Anytime": "Kdykoliv",
|
||||||
"AroundTime": "Around {0}",
|
"AroundTime": "Okolo {0}",
|
||||||
"LabelAirtime": "Airtime:",
|
"LabelAirtime": "\u010cas vys\u00edl\u00e1n\u00ed:",
|
||||||
"AllChannels": "All channels",
|
"AllChannels": "V\u0161echny kan\u00e1ly",
|
||||||
"LabelRecord": "Record:",
|
"LabelRecord": "Z\u00e1znam:",
|
||||||
"NewEpisodesOnly": "New episodes only",
|
"NewEpisodesOnly": "Jen nov\u00e9 epizody",
|
||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "V\u0161echny epizody",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Za\u010d\u00edt jakmile je to mo\u017en\u00e9:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Zastavit jakmile je to mo\u017en\u00e9:",
|
||||||
"MinutesBefore": "minutes before",
|
"MinutesBefore": "minut p\u0159edem",
|
||||||
"MinutesAfter": "minutes after",
|
"MinutesAfter": "minut po",
|
||||||
"SkipEpisodesAlreadyInMyLibrary": "Skip episodes that are already in my library",
|
"SkipEpisodesAlreadyInMyLibrary": "P\u0159esko\u010dit epizody, kter\u00e9 jsou u\u017e v m\u00e9 knihovn\u011b",
|
||||||
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Epizody budou porovn\u00e1v\u00e1ny s pou\u017eit\u00edm obdob\u00ed a \u010d\u00edsla epizody, pokud jsou k dispozici.",
|
||||||
"LabelKeepUpTo": "Keep up to:",
|
"LabelKeepUpTo": "Aktualizovat k:",
|
||||||
"AsManyAsPossible": "As many as possible",
|
"AsManyAsPossible": "Tolikr\u00e1t jak je mo\u017en\u00e9",
|
||||||
"DefaultErrorMessage": "Do\u0161lo k chyb\u011b p\u0159i zpracov\u00e1n\u00ed po\u017eadavku. Pros\u00edm zkuste to znovu pozd\u011bji.",
|
"DefaultErrorMessage": "Do\u0161lo k chyb\u011b p\u0159i zpracov\u00e1n\u00ed po\u017eadavku. Pros\u00edm zkuste to znovu pozd\u011bji.",
|
||||||
"LabelKeep:": "Keep:",
|
"LabelKeep:": "Udr\u017eet:",
|
||||||
"UntilIDelete": "Until I delete",
|
"UntilIDelete": "Dokud nesma\u017eu",
|
||||||
"UntilSpaceNeeded": "Until space needed",
|
"UntilSpaceNeeded": "Do pot\u0159ebn\u00e9ho prostoru",
|
||||||
"Categories": "Categories",
|
"Categories": "Kategorie",
|
||||||
"Sports": "Sports",
|
"Sports": "Sport",
|
||||||
"News": "News",
|
"News": "Zpravodajstv\u00ed",
|
||||||
"Movies": "Movies",
|
"Movies": "Filmy",
|
||||||
"Kids": "Kids",
|
"Kids": "D\u011btsk\u00e9",
|
||||||
"EnableColorCodedBackgrounds": "Enable color coded backgrounds",
|
"EnableColorCodedBackgrounds": "Aktivovat barevn\u011b ozna\u010den\u00e9 pozad\u00ed",
|
||||||
"SortChannelsBy": "Sort channels by:",
|
"SortChannelsBy": "T\u0159\u00eddit kan\u00e1ly dle:",
|
||||||
"RecentlyWatched": "Recently watched",
|
"RecentlyWatched": "Ned\u00e1vno shl\u00e9dnut\u00e9",
|
||||||
"ChannelNumber": "Channel number",
|
"ChannelNumber": "\u010c\u00edslo kan\u00e1lu",
|
||||||
"HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere",
|
"HeaderBenefitsEmbyPremiere": "V\u00fdhody Emby Premiere",
|
||||||
"ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.",
|
"ThankYouForTryingEnjoyOneMinute": "Pros\u00edm u\u017eijte si jednu minutu p\u0159ehr\u00e1v\u00e1n\u00ed. D\u011bkujeme v\u00e1m za vyzkou\u0161en\u00ed Emby.",
|
||||||
"HeaderTryPlayback": "Try Playback",
|
"HeaderTryPlayback": "Zkusit playback",
|
||||||
"HowDidYouPay": "How did you pay?",
|
"HowDidYouPay": "Jak chcete platit?",
|
||||||
"IHaveEmbyPremiere": "I have Emby Premiere",
|
"IHaveEmbyPremiere": "Ji\u017e m\u00e1m Emby Premiere",
|
||||||
"IPurchasedThisApp": "I purchased this app",
|
"IPurchasedThisApp": "Tuto aplikaci m\u00e1m ji\u017e zaplacenu",
|
||||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
"ButtonRestorePreviousPurchase": "Obnovit n\u00e1kup",
|
||||||
"ButtonUnlockWithPurchase": "Unlock with Purchase",
|
"ButtonUnlockWithPurchase": "Odemkn\u011bte pomoc\u00ed koup\u011b",
|
||||||
"ButtonUnlockPrice": "Unlock {0}",
|
"ButtonUnlockPrice": "Odemknout {0}",
|
||||||
"ButtonAlreadyPaid": "Already Paid?",
|
"ButtonAlreadyPaid": "U\u017e jste provedli platbu?",
|
||||||
"ButtonPlayOneMinute": "Play One Minute",
|
"ButtonPlayOneMinute": "P\u0159ehr\u00e1t jednu minutu",
|
||||||
"PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning",
|
"PlaceFavoriteChannelsAtBeginning": "Um\u00edstit obl\u00edben\u00e9 kan\u00e1ly na za\u010d\u00e1tek",
|
||||||
"HeaderUnlockFeature": "Unlock Feature",
|
"HeaderUnlockFeature": "Odemknout funkci",
|
||||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
"MessageDidYouKnowCinemaMode": "V\u00edte, \u017ee s Emby Premiere m\u016f\u017eete zlep\u0161it sv\u00e9 z\u00e1\u017eitky ze sledov\u00e1n\u00ed pomoc\u00ed funkce jako Cinema M\u00f3d?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "S re\u017eimem Kino budou p\u0159ed hlavn\u00edm programem p\u0159ehr\u00e1ny upout\u00e1vky a u\u017eivatelsk\u00e1 intra.",
|
||||||
"HeaderPlayMyMedia": "Play my Media",
|
"HeaderPlayMyMedia": "P\u0159ehr\u00e1t moje M\u00e9dia",
|
||||||
"HeaderDiscoverEmbyPremiere": "Discover Emby Premiere",
|
"HeaderDiscoverEmbyPremiere": "Objevte v\u00fdhody Emby Premiere",
|
||||||
"OneChannel": "One channel"
|
"OneChannel": "Jeden kan\u00e1l"
|
||||||
}
|
}
|
|
@ -7,7 +7,7 @@
|
||||||
"Add": "Hozz\u00e1ad",
|
"Add": "Hozz\u00e1ad",
|
||||||
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
|
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
|
||||||
"LiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.",
|
"LiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.",
|
||||||
"AttributeNew": "New",
|
"AttributeNew": "\u00daj",
|
||||||
"Premiere": "Premiere",
|
"Premiere": "Premiere",
|
||||||
"Live": "Live",
|
"Live": "Live",
|
||||||
"Repeat": "Ism\u00e9tl\u00e9s",
|
"Repeat": "Ism\u00e9tl\u00e9s",
|
||||||
|
@ -32,7 +32,7 @@
|
||||||
"SeriesCancelled": "Series cancelled.",
|
"SeriesCancelled": "Series cancelled.",
|
||||||
"RecordingScheduled": "Recording scheduled.",
|
"RecordingScheduled": "Recording scheduled.",
|
||||||
"SeriesRecordingScheduled": "Series recording scheduled.",
|
"SeriesRecordingScheduled": "Series recording scheduled.",
|
||||||
"HeaderNewRecording": "New Recording",
|
"HeaderNewRecording": "\u00daj Felv\u00e9tel",
|
||||||
"Sunday": "Vas\u00e1rnap",
|
"Sunday": "Vas\u00e1rnap",
|
||||||
"Monday": "H\u00e9tf\u0151",
|
"Monday": "H\u00e9tf\u0151",
|
||||||
"Tuesday": "Kedd",
|
"Tuesday": "Kedd",
|
||||||
|
@ -117,13 +117,13 @@
|
||||||
"Shuffle": "Kever\u00e9s",
|
"Shuffle": "Kever\u00e9s",
|
||||||
"Identify": "Azonos\u00edt\u00e1s",
|
"Identify": "Azonos\u00edt\u00e1s",
|
||||||
"EditImages": "K\u00e9pek szerkeszt\u00e9se",
|
"EditImages": "K\u00e9pek szerkeszt\u00e9se",
|
||||||
"EditInfo": "Edit info",
|
"EditInfo": "Adatok szerkeszt\u00e9se",
|
||||||
"Sync": "Sync",
|
"Sync": "Sync",
|
||||||
"InstantMix": "Instant mix",
|
"InstantMix": "Instant mix",
|
||||||
"ViewAlbum": "View album",
|
"ViewAlbum": "View album",
|
||||||
"ViewArtist": "View artist",
|
"ViewArtist": "View artist",
|
||||||
"QueueAllFromHere": "Queue all from here",
|
"QueueAllFromHere": "Queue all from here",
|
||||||
"PlayAllFromHere": "Play all from here",
|
"PlayAllFromHere": "\u00d6sszes vet\u00edt\u00e9se innen",
|
||||||
"PlayFromBeginning": "Play from beginning",
|
"PlayFromBeginning": "Play from beginning",
|
||||||
"ResumeAt": "Resume from {0}",
|
"ResumeAt": "Resume from {0}",
|
||||||
"RemoveFromPlaylist": "Remove from playlist",
|
"RemoveFromPlaylist": "Remove from playlist",
|
||||||
|
@ -286,7 +286,7 @@
|
||||||
"HeaderEditImages": "Edit Images",
|
"HeaderEditImages": "Edit Images",
|
||||||
"Settings": "Be\u00e1ll\u00edt\u00e1sok",
|
"Settings": "Be\u00e1ll\u00edt\u00e1sok",
|
||||||
"ShowIndicatorsFor": "Show indicators for:",
|
"ShowIndicatorsFor": "Show indicators for:",
|
||||||
"NewEpisodes": "New episodes",
|
"NewEpisodes": "\u00daj epiz\u00f3dok",
|
||||||
"HDPrograms": "HD programs",
|
"HDPrograms": "HD programs",
|
||||||
"LiveBroadcasts": "Live broadcasts",
|
"LiveBroadcasts": "Live broadcasts",
|
||||||
"Premieres": "Premieres",
|
"Premieres": "Premieres",
|
||||||
|
@ -311,7 +311,7 @@
|
||||||
"LabelAirtime": "Airtime:",
|
"LabelAirtime": "Airtime:",
|
||||||
"AllChannels": "All channels",
|
"AllChannels": "All channels",
|
||||||
"LabelRecord": "Record:",
|
"LabelRecord": "Record:",
|
||||||
"NewEpisodesOnly": "New episodes only",
|
"NewEpisodesOnly": "Csak \u00faj epiz\u00f3dok",
|
||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "All episodes",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
|
|
|
@ -1,38 +1,38 @@
|
||||||
{
|
{
|
||||||
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithPurchaseOrSupporter": "Sblocca questa funzionalit\u00e0 con un piccolo acquisto singolo, o con un abbonamento Emby Premiere.",
|
||||||
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
|
"MessageUnlockAppWithSupporter": "Sblocca questa funzionalit\u00e0 con un abbonamento Emby Premiere",
|
||||||
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
"MessageToValidateSupporter": "If you have an active Emby Premiere subscription, ensure you've setup Emby Premiere in your Emby Server Dashboard, which you can access by clicking Emby Premiere within the main menu.",
|
||||||
"ValueSpecialEpisodeName": "Special - {0}",
|
"ValueSpecialEpisodeName": "Speciali - {0}",
|
||||||
"Share": "Share",
|
"Share": "Condividi",
|
||||||
"Add": "Aggiungi",
|
"Add": "Aggiungi",
|
||||||
"ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}",
|
"ServerUpdateNeeded": "Questo server Emby ha bisogno di essere aggiornato. Per scaricare l'ultima versione vai su {0}",
|
||||||
"LiveTvGuideRequiresUnlock": "La Guida TV \u00e8 attualmente limitata a {0} canali. Premi il tasto di sblocco per imparare come goderti una piena esperienza.",
|
"LiveTvGuideRequiresUnlock": "La Guida TV \u00e8 attualmente limitata a {0} canali. Premi il tasto di sblocco per imparare come goderti una piena esperienza.",
|
||||||
"AttributeNew": "New",
|
"AttributeNew": "Nuovo",
|
||||||
"Premiere": "Premiere",
|
"Premiere": "Prima visione",
|
||||||
"Live": "Live",
|
"Live": "In diretta",
|
||||||
"Repeat": "Ripeti",
|
"Repeat": "Ripeti",
|
||||||
"TrackCount": "{0} tracks",
|
"TrackCount": "{0} tracce",
|
||||||
"ItemCount": "{0} elementi",
|
"ItemCount": "{0} elementi",
|
||||||
"ReleaseYearValue": "Release year: {0}",
|
"ReleaseYearValue": "Anno di uscita: {0}",
|
||||||
"OriginalAirDateValue": "Original air date: {0}",
|
"OriginalAirDateValue": "Prima messa in onda (originale): {0}",
|
||||||
"EndsAtValue": "Ends at {0}",
|
"EndsAtValue": "Ends at {0}",
|
||||||
"OptionSundayShort": "Sun",
|
"OptionSundayShort": "Dom",
|
||||||
"OptionMondayShort": "Mon",
|
"OptionMondayShort": "Lun",
|
||||||
"OptionTuesdayShort": "Tue",
|
"OptionTuesdayShort": "Mar",
|
||||||
"OptionWednesdayShort": "Wed",
|
"OptionWednesdayShort": "Mer",
|
||||||
"OptionThursdayShort": "Thu",
|
"OptionThursdayShort": "Gio",
|
||||||
"OptionFridayShort": "Fri",
|
"OptionFridayShort": "Ven",
|
||||||
"OptionSaturdayShort": "Sat",
|
"OptionSaturdayShort": "Sab",
|
||||||
"HeaderSelectDate": "Seleziona la data",
|
"HeaderSelectDate": "Seleziona la data",
|
||||||
"ButtonOk": "Ok",
|
"ButtonOk": "Ok",
|
||||||
"ButtonCancel": "Annulla",
|
"ButtonCancel": "Annulla",
|
||||||
"ButtonGotIt": "Got It",
|
"ButtonGotIt": "Ho capito",
|
||||||
"ButtonRestart": "Riavvia",
|
"ButtonRestart": "Riavvia",
|
||||||
"RecordingCancelled": "Registrazione eliminata.",
|
"RecordingCancelled": "Registrazione eliminata.",
|
||||||
"SeriesCancelled": "Series cancelled.",
|
"SeriesCancelled": "Series cancelled.",
|
||||||
"RecordingScheduled": "Recording scheduled.",
|
"RecordingScheduled": "Registrazione pianificata.",
|
||||||
"SeriesRecordingScheduled": "Series recording scheduled.",
|
"SeriesRecordingScheduled": "Registrazione serie TV pianificata.",
|
||||||
"HeaderNewRecording": "New Recording",
|
"HeaderNewRecording": "Nuova Registrazione",
|
||||||
"Sunday": "Domenica",
|
"Sunday": "Domenica",
|
||||||
"Monday": "Luned\u00ec",
|
"Monday": "Luned\u00ec",
|
||||||
"Tuesday": "Marted\u00ec",
|
"Tuesday": "Marted\u00ec",
|
||||||
|
@ -41,124 +41,124 @@
|
||||||
"Friday": "Venerd\u00ec",
|
"Friday": "Venerd\u00ec",
|
||||||
"Saturday": "Sabato",
|
"Saturday": "Sabato",
|
||||||
"Days": "Giorni",
|
"Days": "Giorni",
|
||||||
"RecordSeries": "Record series",
|
"RecordSeries": "Registra Serie",
|
||||||
"HeaderCinemaMode": "Cinema Mode",
|
"HeaderCinemaMode": "Modalit\u00e0 Cinema",
|
||||||
"HeaderCloudSync": "Cloud Sync",
|
"HeaderCloudSync": "Sinc. Cloud",
|
||||||
"HeaderOfflineDownloads": "Offline Media",
|
"HeaderOfflineDownloads": "Media Offline",
|
||||||
"HeaderOfflineDownloadsDescription": "Download media to your devices for easy offline use.",
|
"HeaderOfflineDownloadsDescription": "Scarica facilmente i media sui tuoi dispositivi per l'uso offline.",
|
||||||
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
"CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.",
|
||||||
"CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.",
|
"CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.",
|
||||||
"CoverArt": "Cover Art",
|
"CoverArt": "Copertine",
|
||||||
"CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.",
|
"CinemaModeFeatureDescription": "Modalit\u00e0 Cinema ti d\u00e0 la vera esperienza del cinema con trailer ed intro personalizzate prima del contenuto principale.",
|
||||||
"HeaderFreeApps": "Free Emby Apps",
|
"HeaderFreeApps": "Free Emby Apps",
|
||||||
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
"FreeAppsFeatureDescription": "Enjoy free access to Emby apps for your devices.",
|
||||||
"HeaderBecomeProjectSupporter": "Ottieni Emby Premiere",
|
"HeaderBecomeProjectSupporter": "Ottieni Emby Premiere",
|
||||||
"MessageActiveSubscriptionRequiredSeriesRecordings": "Un abbonamento a Emby Premiere \u00e8 necessario per creare registrazioni personalizzate delle serie tv",
|
"MessageActiveSubscriptionRequiredSeriesRecordings": "Un abbonamento a Emby Premiere \u00e8 necessario per creare registrazioni personalizzate delle serie tv",
|
||||||
"LabelEmailAddress": "E-mail address:",
|
"LabelEmailAddress": "Indirizzo e-Mail:",
|
||||||
"PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.",
|
"PromoConvertRecordingsToStreamingFormat": "Automatically convert recordings to a streaming friendly format with Emby Premiere. Recordings will be converted on the fly to MP4 or MKV, based on Emby server settings.",
|
||||||
"FeatureRequiresEmbyPremiere": "This feature requires an active Emby Premiere subscription.",
|
"FeatureRequiresEmbyPremiere": "Questa funzionalit\u00e0 richiede un abbonamento ad Emby Premiere.",
|
||||||
"HeaderConvertYourRecordings": "Convert Your Recordings",
|
"HeaderConvertYourRecordings": "Converti le tue Registrazioni",
|
||||||
"Record": "Registra",
|
"Record": "Registra",
|
||||||
"Save": "Salva",
|
"Save": "Salva",
|
||||||
"Edit": "Modifica",
|
"Edit": "Modifica",
|
||||||
"Download": "Download",
|
"Download": "Scarica",
|
||||||
"Advanced": "Advanced",
|
"Advanced": "Avanzate",
|
||||||
"Delete": "Elimina",
|
"Delete": "Elimina",
|
||||||
"HeaderDeleteItem": "Elimina elemento",
|
"HeaderDeleteItem": "Elimina Elemento",
|
||||||
"ConfirmDeleteItem": "L'eliminazione di questo articolo sar\u00e0 eliminarlo sia dal file system e la vostra libreria multimediale. Sei sicuro di voler continuare?",
|
"ConfirmDeleteItem": "L'eliminazione di questo articolo lo canceller\u00e0 sia dal disco che dalla libreria multimediale. Sei sicuro di voler continuare?",
|
||||||
"Refresh": "Aggiorna",
|
"Refresh": "Aggiorna",
|
||||||
"RefreshQueued": "Refresh queued.",
|
"RefreshQueued": "Aggiornamento programmato.",
|
||||||
"AddToCollection": "Add to collection",
|
"AddToCollection": "Aggiungi ad una collezione",
|
||||||
"HeaderAddToCollection": "Aggiungi alla collezione",
|
"HeaderAddToCollection": "Aggiungi ad una Collezione",
|
||||||
"NewCollection": "Nuova collezione",
|
"NewCollection": "Nuova Collezione",
|
||||||
"LabelCollection": "Collection:",
|
"LabelCollection": "Collezione:",
|
||||||
"Help": "Aiuto",
|
"Help": "Aiuto",
|
||||||
"NewCollectionHelp": "Collections allow you to create personalized groupings of movies and other library content.",
|
"NewCollectionHelp": "Le collezioni ti permettono di creare raccolte personalizzate di film ed altri contenuti della libreria.",
|
||||||
"SearchForCollectionInternetMetadata": "Cerca su internet le immagini e i metadati",
|
"SearchForCollectionInternetMetadata": "Cerca su internet le immagini e i metadati",
|
||||||
"LabelName": "Nome:",
|
"LabelName": "Nome:",
|
||||||
"NewCollectionNameExample": "Esempio: Collezione Star wars",
|
"NewCollectionNameExample": "Esempio: Collezione Star wars",
|
||||||
"MessageItemsAdded": "Items added.",
|
"MessageItemsAdded": "Elementi aggiunti.",
|
||||||
"OptionNew": "Nuovo...",
|
"OptionNew": "Nuovo...",
|
||||||
"LabelPlaylist": "Playlist:",
|
"LabelPlaylist": "Playlist:",
|
||||||
"AddToPlaylist": "Aggiungi alla playlist",
|
"AddToPlaylist": "Aggiungi alla playlist",
|
||||||
"HeaderAddToPlaylist": "Aggiungi alla playlist",
|
"HeaderAddToPlaylist": "Aggiungi alla Playlist",
|
||||||
"Subtitles": "Subtitles",
|
"Subtitles": "Sottotitoli",
|
||||||
"SearchForSubtitles": "Ricerca per sottotitoli",
|
"SearchForSubtitles": "Cerca Sottotitoli",
|
||||||
"LabelLanguage": "Lingua:",
|
"LabelLanguage": "Lingua:",
|
||||||
"Search": "Ricerca",
|
"Search": "Cerca",
|
||||||
"NoSubtitleSearchResultsFound": "No results found.",
|
"NoSubtitleSearchResultsFound": "Nessun risultato.",
|
||||||
"File": "File",
|
"File": "File",
|
||||||
"MessageAreYouSureDeleteSubtitles": "Sei sicuro di voler cancellare questo file dei sottotitoli?",
|
"MessageAreYouSureDeleteSubtitles": "Sei sicuro di voler eliminare questo file di sottotitoli?",
|
||||||
"ConfirmDeletion": "Conferma Cancellazione",
|
"ConfirmDeletion": "Conferma Eliminazione",
|
||||||
"MySubtitles": "My Subtitles",
|
"MySubtitles": "I miei Sottotitoli",
|
||||||
"MessageDownloadQueued": "Download queued.",
|
"MessageDownloadQueued": "Scaricamento programmato.",
|
||||||
"EditSubtitles": "modificare i sottotitoli",
|
"EditSubtitles": "Modifica i sottotitoli",
|
||||||
"UnlockGuide": "Sblocca Guida",
|
"UnlockGuide": "Sblocca Guida",
|
||||||
"RefreshMetadata": "Aggiorna metadati",
|
"RefreshMetadata": "Aggiorna i Metadati",
|
||||||
"ReplaceExistingImages": "Sovrascrivi immagini esistenti",
|
"ReplaceExistingImages": "Sovrascrivi immagini esistenti",
|
||||||
"ReplaceAllMetadata": "Replace all metadata",
|
"ReplaceAllMetadata": "Sostituisci tutti i metadati",
|
||||||
"SearchForMissingMetadata": "Search for missing metadata",
|
"SearchForMissingMetadata": "Cerca metadati mancanti",
|
||||||
"LabelRefreshMode": "Refresh mode:",
|
"LabelRefreshMode": "Modalit\u00e0 di aggiornamento:",
|
||||||
"NoItemsFound": "Nessun elemento trovato.",
|
"NoItemsFound": "Nessun elemento trovato.",
|
||||||
"HeaderSaySomethingLike": "Dire qualcosa di simile ...",
|
"HeaderSaySomethingLike": "Dire qualcosa di simile ...",
|
||||||
"ButtonTryAgain": "Riprova ancora",
|
"ButtonTryAgain": "Riprova ancora",
|
||||||
"HeaderYouSaid": "Hai detto...",
|
"HeaderYouSaid": "Hai detto...",
|
||||||
"MessageWeDidntRecognizeCommand": "Ci dispiace, non riconosciamo il comando.",
|
"MessageWeDidntRecognizeCommand": "Ci dispiace, non riconosciamo il comando.",
|
||||||
"MessageIfYouBlockedVoice": "Se tu hai negato l'accesso all app avrai bisogno di reconfigurarlo prima di riprovarci.",
|
"MessageIfYouBlockedVoice": "Se hai negato l'accesso vocale all'app dovrai riconfigurarlo prima di riprovare di nuovo.",
|
||||||
"ValueDiscNumber": "Disco {0}",
|
"ValueDiscNumber": "Disco {0}",
|
||||||
"Unrated": "Non votato",
|
"Unrated": "Non votato",
|
||||||
"Favorite": "Preferito",
|
"Favorite": "Preferito",
|
||||||
"Like": "Bello",
|
"Like": "Mi piace",
|
||||||
"Dislike": "Brutto",
|
"Dislike": "Non mi piace",
|
||||||
"RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.",
|
"RefreshDialogHelp": "Metadata is refreshed based on settings and internet services that are enabled in the Emby Server dashboard.",
|
||||||
"Open": "Apri",
|
"Open": "Apri",
|
||||||
"Play": "Riproduci",
|
"Play": "Riproduci",
|
||||||
"Queue": "In coda",
|
"Queue": "In coda",
|
||||||
"Shuffle": "A caso",
|
"Shuffle": "Riproduzione casuale",
|
||||||
"Identify": "Identifica",
|
"Identify": "Identifica",
|
||||||
"EditImages": "Edit images",
|
"EditImages": "Modifica immagini",
|
||||||
"EditInfo": "Edit info",
|
"EditInfo": "Modifica Info",
|
||||||
"Sync": "Sync",
|
"Sync": "Sincronizza",
|
||||||
"InstantMix": "Mix istantaneo",
|
"InstantMix": "Mix istantaneo",
|
||||||
"ViewAlbum": "Visualizza album",
|
"ViewAlbum": "Visualizza album",
|
||||||
"ViewArtist": "Visualizza artista",
|
"ViewArtist": "Visualizza artista",
|
||||||
"QueueAllFromHere": "Coda tutto da qui",
|
"QueueAllFromHere": "In coda tutto da qui in poi",
|
||||||
"PlayAllFromHere": "play tutto da qui",
|
"PlayAllFromHere": "Riproduci tutto da qui in poi",
|
||||||
"PlayFromBeginning": "Play from beginning",
|
"PlayFromBeginning": "Riproduci dall'inizio",
|
||||||
"ResumeAt": "Resume from {0}",
|
"ResumeAt": "Riprendi da {0}",
|
||||||
"RemoveFromPlaylist": "Rimuovi dalla playlist",
|
"RemoveFromPlaylist": "Rimuovi dalla playlist",
|
||||||
"RemoveFromCollection": "Remove from collection",
|
"RemoveFromCollection": "Rimuovi dalla collezione",
|
||||||
"Trailer": "Trailer",
|
"Trailer": "Trailer",
|
||||||
"MarkPlayed": "Mark played",
|
"MarkPlayed": "Segna visto",
|
||||||
"MarkUnplayed": "Mark unplayed",
|
"MarkUnplayed": "Segna non visto",
|
||||||
"GroupVersions": "Group versions",
|
"GroupVersions": "Raggruppa versioni",
|
||||||
"PleaseSelectTwoItems": "Seleziona almeno due elementi.",
|
"PleaseSelectTwoItems": "Seleziona almeno due elementi.",
|
||||||
"TryMultiSelect": "Prova la selezione multipla",
|
"TryMultiSelect": "Prova la selezione multipla",
|
||||||
"TryMultiSelectMessage": "Per modificare pi\u00f9 elementi, clicca e tieni premuto so un poster, e seleziona gli elementi che vuoi gestire. Prova!",
|
"TryMultiSelectMessage": "Per modificare pi\u00f9 elementi, clicca e tieni premuto su un poster e seleziona gli elementi che vuoi gestire. Prova!",
|
||||||
"HeaderConfirmRecordingCancellation": "Conferma eliminazione registrazione",
|
"HeaderConfirmRecordingCancellation": "Conferma Eliminazione Registrazione",
|
||||||
"MessageConfirmRecordingCancellation": "Sei sicuro di voler cancellare questa registrazione?",
|
"MessageConfirmRecordingCancellation": "Sei sicuro di voler eliminare questa registrazione?",
|
||||||
"Error": "Errore",
|
"Error": "Errore",
|
||||||
"VoiceInput": "Voice Input",
|
"VoiceInput": "Comandi Vocali",
|
||||||
"LabelContentType": "Tipo di contenuto:",
|
"LabelContentType": "Tipo di contenuto:",
|
||||||
"LabelPath": "Percorso:",
|
"LabelPath": "Percorso:",
|
||||||
"LabelTitle": "Title:",
|
"LabelTitle": "Titolo:",
|
||||||
"LabelOriginalTitle": "Original title:",
|
"LabelOriginalTitle": "Titolo originale:",
|
||||||
"LabelSortTitle": "Sort title:",
|
"LabelSortTitle": "Titolo per ordinamento:",
|
||||||
"LabelDateAdded": "Aggiunto il",
|
"LabelDateAdded": "Aggiunto il:",
|
||||||
"ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
|
"ConfigureDateAdded": "Configure how date added is determined in the Emby Server dashboard under Library settings",
|
||||||
"LabelStatus": "Stato:",
|
"LabelStatus": "Stato:",
|
||||||
"LabelArtists": "Cantanti",
|
"LabelArtists": "Artisti:",
|
||||||
"LabelArtistsHelp": "Separazione multipla utilizzando ;",
|
"LabelArtistsHelp": "Separa valori multipli usando ;",
|
||||||
"LabelAlbumArtists": "Artisti:",
|
"LabelAlbumArtists": "Artisti album:",
|
||||||
"LabelAlbum": "Album:",
|
"LabelAlbum": "Album:",
|
||||||
"LabelCommunityRating": "Voto Comunit\u00e0:",
|
"LabelCommunityRating": "Voto Comunit\u00e0:",
|
||||||
"LabelVoteCount": "Totale Voti:",
|
"LabelVoteCount": "Numero voti:",
|
||||||
"LabelMetascore": "Punteggio:",
|
"LabelMetascore": "Punteggio:",
|
||||||
"LabelCriticRating": "Voto dei critici:",
|
"LabelCriticRating": "Voto della critica:",
|
||||||
"LabelCriticRatingSummary": "Critico sintesi valutazione:",
|
"LabelCriticRatingSummary": "Sintesi voto della Critica:",
|
||||||
"LabelAwardSummary": "Sintesi Premio:",
|
"LabelAwardSummary": "Sintesi Premi:",
|
||||||
"LabelWebsite": "Sito web:",
|
"LabelWebsite": "Sito Web:",
|
||||||
"LabelTagline": "Messaggio pers:",
|
"LabelTagline": "Slogan:",
|
||||||
"LabelOverview": "Trama:",
|
"LabelOverview": "Trama:",
|
||||||
"LabelShortOverview": "Trama breve:",
|
"LabelShortOverview": "Trama breve:",
|
||||||
"LabelReleaseDate": "Data di rilascio:",
|
"LabelReleaseDate": "Data di rilascio:",
|
||||||
|
@ -172,77 +172,77 @@
|
||||||
"LabelBudget": "Budget",
|
"LabelBudget": "Budget",
|
||||||
"LabelRevenue": "Fatturato ($):",
|
"LabelRevenue": "Fatturato ($):",
|
||||||
"LabelOriginalAspectRatio": "Aspetto originale:",
|
"LabelOriginalAspectRatio": "Aspetto originale:",
|
||||||
"LabelPlayers": "Giocatori",
|
"LabelPlayers": "Riproduttori:",
|
||||||
"Label3DFormat": "Formato 3D:",
|
"Label3DFormat": "Formato 3D:",
|
||||||
"HeaderAlternateEpisodeNumbers": "Numeri Episode alternativi",
|
"HeaderAlternateEpisodeNumbers": "Numeri Episodio Alternativi",
|
||||||
"LabelDvdSeasonNumber": "Dvd stagione:",
|
"LabelDvdSeasonNumber": "Numero stagione DVD:",
|
||||||
"LabelDvdEpisodeNumber": "Numero episodio Dvd:",
|
"LabelDvdEpisodeNumber": "Numero episodio DVD:",
|
||||||
"LabelAbsoluteEpisodeNumber": "Absolute Numero episodio:",
|
"LabelAbsoluteEpisodeNumber": "Numero episodio assoluto:",
|
||||||
"HeaderSpecialEpisodeInfo": "Episodio Speciale Info",
|
"HeaderSpecialEpisodeInfo": "Informazioni Episodio Speciale",
|
||||||
"LabelAirsBeforeSeason": "tempo prima della stagione:",
|
"LabelAirsBeforeSeason": "In onda prima della stagione:",
|
||||||
"LabelAirsAfterSeason": "tempo dopo della stagione:",
|
"LabelAirsAfterSeason": "In onda dopo la stagione:",
|
||||||
"LabelAirsBeforeEpisode": "tempo prima episodio:",
|
"LabelAirsBeforeEpisode": "In onda prima dell'episodio:",
|
||||||
"HeaderExternalIds": "Esterno Id di :",
|
"HeaderExternalIds": "Id esterni:",
|
||||||
"HeaderDisplaySettings": "Display Settings",
|
"HeaderDisplaySettings": "Impostazioni Video",
|
||||||
"LabelTreatImageAs": "Trattare come immagine:",
|
"LabelTreatImageAs": "Gestisci immagine come:",
|
||||||
"LabelDisplayOrder": "Ordine visualizzazione:",
|
"LabelDisplayOrder": "Ordine di visualizzazione:",
|
||||||
"Countries": "Countries",
|
"Countries": "Paesi",
|
||||||
"Genres": "Genres",
|
"Genres": "Generi",
|
||||||
"HeaderPlotKeywords": "Trama",
|
"HeaderPlotKeywords": "Parole Chiave Trama",
|
||||||
"Studios": "Studios",
|
"Studios": "Studios",
|
||||||
"Tags": "Tags",
|
"Tags": "Tag",
|
||||||
"HeaderMetadataSettings": "Impostazioni metadati",
|
"HeaderMetadataSettings": "Impostazioni Metadati",
|
||||||
"People": "People",
|
"People": "Attori",
|
||||||
"LabelMetadataDownloadLanguage": "Lingua preferita per il download:",
|
"LabelMetadataDownloadLanguage": "Lingua preferita per il download:",
|
||||||
"LabelLockItemToPreventChanges": "Bloccare questa voce per impedire modifiche future",
|
"LabelLockItemToPreventChanges": "Blocca questo elemento per impedire modifiche future",
|
||||||
"MessageLeaveEmptyToInherit": "Lasciare vuoto per ereditare le impostazioni da un elemento principale, o il valore predefinito globale.",
|
"MessageLeaveEmptyToInherit": "Lascia vuoto per ereditare le impostazioni dall'elemento principale, o il valore predefinito globale.",
|
||||||
"LabelCountry": "Nazione:",
|
"LabelCountry": "Nazione:",
|
||||||
"LabelDynamicExternalId": "{0} Id:",
|
"LabelDynamicExternalId": "{0} Id:",
|
||||||
"LabelBirthYear": "Anno nascita:",
|
"LabelBirthYear": "Anno di nascita:",
|
||||||
"LabelBirthDate": "Data nascita:",
|
"LabelBirthDate": "Data di nascita:",
|
||||||
"LabelDeathDate": "Anno morte:",
|
"LabelDeathDate": "Anno di morte:",
|
||||||
"LabelEndDate": "Fine data:",
|
"LabelEndDate": "Data di fine:",
|
||||||
"LabelSeasonNumber": "Season number:",
|
"LabelSeasonNumber": "Numero stagione:",
|
||||||
"LabelEpisodeNumber": "Episode number:",
|
"LabelEpisodeNumber": "Numero espisodio:",
|
||||||
"LabelTrackNumber": "Traccia numero:",
|
"LabelTrackNumber": "Numero traccia:",
|
||||||
"LabelNumber": "Numero:",
|
"LabelNumber": "Numero:",
|
||||||
"LabelDiscNumber": "Disco numero",
|
"LabelDiscNumber": "Numero disco",
|
||||||
"LabelParentNumber": "Numero superiore",
|
"LabelParentNumber": "Numero superiore",
|
||||||
"SortName": "Nome ordinato",
|
"SortName": "Nome ordinamento",
|
||||||
"ReleaseDate": "Release date",
|
"ReleaseDate": "Data di rilascio",
|
||||||
"Continuing": "In corso",
|
"Continuing": "In corso",
|
||||||
"Ended": "Finito",
|
"Ended": "Finito",
|
||||||
"HeaderEnabledFields": "campi abilitati",
|
"HeaderEnabledFields": "Campi Abilitati",
|
||||||
"HeaderEnabledFieldsHelp": "Deselezionare un campo per bloccarlo e impedirgli di dati venga modificata.",
|
"HeaderEnabledFieldsHelp": "Deseleziona un campo per bloccarlo ed impedire che venga modificato.",
|
||||||
"Backdrops": "Sfondi",
|
"Backdrops": "Sfondi",
|
||||||
"Images": "Immagini",
|
"Images": "Immagini",
|
||||||
"Keywords": "Parole",
|
"Keywords": "Parole chiave",
|
||||||
"Runtime": "Runtime",
|
"Runtime": "Durata",
|
||||||
"ProductionLocations": "Production locations",
|
"ProductionLocations": "Sedi di produzione",
|
||||||
"BirthLocation": "Birth location",
|
"BirthLocation": "Luogo di nascita",
|
||||||
"ParentalRating": "Valutazione parentale",
|
"ParentalRating": "Voto genitori",
|
||||||
"Name": "Name",
|
"Name": "Nome",
|
||||||
"Overview": "Overview",
|
"Overview": "Trama",
|
||||||
"LabelType": "Tipo:",
|
"LabelType": "Tipo:",
|
||||||
"LabelPersonRole": "Ruolo:",
|
"LabelPersonRole": "Ruolo:",
|
||||||
"LabelPersonRoleHelp": "Example: Ice cream truck driver",
|
"LabelPersonRoleHelp": "Esempio: Autista di chiosco dei gelati",
|
||||||
"Actor": "Attore",
|
"Actor": "Attore",
|
||||||
"Composer": "Compositore",
|
"Composer": "Compositore",
|
||||||
"Director": "Regista",
|
"Director": "Regista",
|
||||||
"GuestStar": "Guest star",
|
"GuestStar": "Personaggi famosi",
|
||||||
"Producer": "Produttore",
|
"Producer": "Produttore",
|
||||||
"Writer": "Scrittore",
|
"Writer": "Scrittore",
|
||||||
"InstallingPackage": "Installazione di {0}",
|
"InstallingPackage": "Installazione di {0}",
|
||||||
"PackageInstallCompleted": "{0} completamento dell'installazione.",
|
"PackageInstallCompleted": "{0} completamento dell'installazione.",
|
||||||
"PackageInstallFailed": "{0} installazione non \u00e8 riuscita.",
|
"PackageInstallFailed": "{0} installazione fallita.",
|
||||||
"PackageInstallCancelled": "{0} installazione annullata.",
|
"PackageInstallCancelled": "{0} installazione annullata.",
|
||||||
"SeriesYearToPresent": "{0}-Presenti",
|
"SeriesYearToPresent": "{0} - Presente",
|
||||||
"ValueOneSong": "1 canzone",
|
"ValueOneSong": "1 brano",
|
||||||
"ValueSongCount": "{0} Canzoni",
|
"ValueSongCount": "{0} brani",
|
||||||
"ValueOneMovie": "1 film",
|
"ValueOneMovie": "1 film",
|
||||||
"ValueMovieCount": "{0} film",
|
"ValueMovieCount": "{0} film",
|
||||||
"ValueOneSeries": "1 serie",
|
"ValueOneSeries": "1 serie TV",
|
||||||
"ValueSeriesCount": "{0} serie",
|
"ValueSeriesCount": "{0} serie TV",
|
||||||
"ValueOneEpisode": "1 episodio",
|
"ValueOneEpisode": "1 episodio",
|
||||||
"ValueEpisodeCount": "{0} episodi",
|
"ValueEpisodeCount": "{0} episodi",
|
||||||
"ValueOneGame": "1 gioco",
|
"ValueOneGame": "1 gioco",
|
||||||
|
@ -252,71 +252,71 @@
|
||||||
"ValueOneMusicVideo": "1 video musicale",
|
"ValueOneMusicVideo": "1 video musicale",
|
||||||
"ValueMusicVideoCount": "{0} video musicali",
|
"ValueMusicVideoCount": "{0} video musicali",
|
||||||
"ValueMinutes": "{0} min",
|
"ValueMinutes": "{0} min",
|
||||||
"HeaderIdentifyItemHelp": "Inserisci uno o pi\u00f9 criteri di ricerca. Rimuovi criteri di aumentare i risultati di ricerca.",
|
"HeaderIdentifyItemHelp": "Inserisci uno o pi\u00f9 criteri di ricerca. Rimuovi criteri per aumentare il numero di risultati.",
|
||||||
"PleaseEnterNameOrId": "Inserisci il nome o id esterno.",
|
"PleaseEnterNameOrId": "Per favore inserisci un nome o un id esterno.",
|
||||||
"MessageItemSaved": "Elemento salvato.",
|
"MessageItemSaved": "Elemento salvato.",
|
||||||
"SearchResults": "Search Results",
|
"SearchResults": "Risultati della Ricerca",
|
||||||
"SyncToOtherDevice": "Sync to other device",
|
"SyncToOtherDevice": "Sinc. ad altro dispositivo",
|
||||||
"MakeAvailableOffline": "Make available offline",
|
"MakeAvailableOffline": "Rendi disponibile offline",
|
||||||
"ServerNameIsRestarting": "Emby Server - {0} is restarting.",
|
"ServerNameIsRestarting": "Emby Server - {0} si sta riavviando.",
|
||||||
"ServerNameIsShuttingDown": "Emby Server - {0} is shutting down.",
|
"ServerNameIsShuttingDown": "Emby Server - {0} si sta arrestando.",
|
||||||
"HeaderDeleteItems": "Delete Items",
|
"HeaderDeleteItems": "Elimina Elementi",
|
||||||
"ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?",
|
"ConfirmDeleteItems": "L'eliminazione di questi elementi li canceller\u00e0 sia dal disco che dalla tua libreria multimediale. Sei sicuro di voler continuare?",
|
||||||
"PleaseRestartServerName": "Please restart Emby Server - {0}.",
|
"PleaseRestartServerName": "Per favore riavvia Emby Server - {0}.",
|
||||||
"SyncJobCreated": "Attivit\u00e0 di Sincronizz. Creata",
|
"SyncJobCreated": "Attivit\u00e0 di Sinc. creata",
|
||||||
"LabelSyncTo": "Sincronizza su:",
|
"LabelSyncTo": "Sincronizza su:",
|
||||||
"LabelSyncJobName": "Nome Attivit\u00e0 di Sincroniz.:",
|
"LabelSyncJobName": "Nome Attivit\u00e0 di Sinc.:",
|
||||||
"LabelQuality": "Qualit\u00e0:",
|
"LabelQuality": "Qualit\u00e0:",
|
||||||
"LabelSyncNoTargetsHelp": "Sembra che al momento non avete applicazioni che supportano la sincronizzazione.",
|
"LabelSyncNoTargetsHelp": "Al momento non hai applicazioni che supportino la sincronizzazione.",
|
||||||
"DownloadScheduled": "Download scheduled",
|
"DownloadScheduled": "Scaricamento pianificato",
|
||||||
"LearnMore": "saperne di pi\u00f9",
|
"LearnMore": "saperne di pi\u00f9",
|
||||||
"LabelProfile": "Profilo:",
|
"LabelProfile": "Profilo:",
|
||||||
"LabelBitrateMbps": "Bitrate (Mbps):",
|
"LabelBitrateMbps": "Bitrate (Mbps):",
|
||||||
"SyncUnwatchedVideosOnly": "Sincronizza solo i video non visti",
|
"SyncUnwatchedVideosOnly": "Sincronizza solo i video non visti",
|
||||||
"SyncUnwatchedVideosOnlyHelp": "Solo i video non visti saranno sincronizzati, e video saranno rimossi dal dispositivo in cui sono guardato.",
|
"SyncUnwatchedVideosOnlyHelp": "Solo i video non visti saranno sincronizzati, e video saranno rimossi dal dispositivo in cui sono guardato.",
|
||||||
"AutomaticallySyncNewContent": "Sincronizza automaticamente nuovi contenuti",
|
"AutomaticallySyncNewContent": "Sincronizza automaticamente i nuovi contenuti",
|
||||||
"AutomaticallySyncNewContentHelp": "Nuovi contenuti aggiunto verranno sincronizzati automaticamente al dispositivo.",
|
"AutomaticallySyncNewContentHelp": "I nuovi contenuti aggiunti verranno sincronizzati automaticamente al dispositivo.",
|
||||||
"LabelItemLimit": "limite elementi:",
|
"LabelItemLimit": "Limite elementi:",
|
||||||
"LabelItemLimitHelp": "Opzionale. Impostare un limite al numero di elementi che verranno sincronizzati.",
|
"LabelItemLimitHelp": "Opzionale. Imposta un limite al numero di elementi che verranno sincronizzati.",
|
||||||
"PleaseSelectDeviceToSyncTo": "Selezionare un dispositivo per la sincronizzazione",
|
"PleaseSelectDeviceToSyncTo": "Seleziona un dispositivo per sincronizzare.",
|
||||||
"Screenshots": "Screenshots",
|
"Screenshots": "Screenshot",
|
||||||
"MoveRight": "Move right",
|
"MoveRight": "Sposta a destra",
|
||||||
"MoveLeft": "Move left",
|
"MoveLeft": "Sposta a sinistra",
|
||||||
"ConfirmDeleteImage": "Delete image?",
|
"ConfirmDeleteImage": "Elimina immagine?",
|
||||||
"HeaderEditImages": "Edit Images",
|
"HeaderEditImages": "Modifica Immagini",
|
||||||
"Settings": "Configurazione",
|
"Settings": "Configurazione",
|
||||||
"ShowIndicatorsFor": "Show indicators for:",
|
"ShowIndicatorsFor": "Mostra indicatori per:",
|
||||||
"NewEpisodes": "New episodes",
|
"NewEpisodes": "Nuovi episodi",
|
||||||
"HDPrograms": "HD programs",
|
"HDPrograms": "Programmi HD",
|
||||||
"LiveBroadcasts": "Live broadcasts",
|
"LiveBroadcasts": "Live broadcasts",
|
||||||
"Premieres": "Premieres",
|
"Premieres": "Prime Visioni",
|
||||||
"RepeatEpisodes": "Repeat episodes",
|
"RepeatEpisodes": "Repeat episodes",
|
||||||
"DvrSubscriptionRequired": "Emby DVR requires an active Emby Premiere subscription.",
|
"DvrSubscriptionRequired": "Emby DVR richiede un abbonamento ad Emby Premiere.",
|
||||||
"HeaderCancelRecording": "Cancel Recording",
|
"HeaderCancelRecording": "Annulla la Registrazione",
|
||||||
"CancelRecording": "Cancel recording",
|
"CancelRecording": "Annulla la registrazione",
|
||||||
"HeaderKeepRecording": "Keep Recording",
|
"HeaderKeepRecording": "Keep Recording",
|
||||||
"HeaderCancelSeries": "Cancel Series",
|
"HeaderCancelSeries": "Cancel Series",
|
||||||
"HeaderKeepSeries": "Keep Series",
|
"HeaderKeepSeries": "Keep Series",
|
||||||
"HeaderLearnMore": "Learn More",
|
"HeaderLearnMore": "Saperne di pi\u00f9",
|
||||||
"DeleteMedia": "Delete media",
|
"DeleteMedia": "Elimina media",
|
||||||
"SeriesSettings": "Series settings",
|
"SeriesSettings": "Series settings",
|
||||||
"HeaderRecordingOptions": "Recording Options",
|
"HeaderRecordingOptions": "Opzioni di Registrazione",
|
||||||
"CancelSeries": "Cancel series",
|
"CancelSeries": "Cancel series",
|
||||||
"DoNotRecord": "Do not record",
|
"DoNotRecord": "Non registrare",
|
||||||
"HeaderSeriesOptions": "Series Options",
|
"HeaderSeriesOptions": "Series Options",
|
||||||
"LabelChannels": "Channels:",
|
"LabelChannels": "Canali:",
|
||||||
"ChannelNameOnly": "Channel {0} only",
|
"ChannelNameOnly": "Channel {0} only",
|
||||||
"Anytime": "Anytime",
|
"Anytime": "Anytime",
|
||||||
"AroundTime": "Around {0}",
|
"AroundTime": "Around {0}",
|
||||||
"LabelAirtime": "Airtime:",
|
"LabelAirtime": "Messa in onda:",
|
||||||
"AllChannels": "All channels",
|
"AllChannels": "Tutti i canali",
|
||||||
"LabelRecord": "Record:",
|
"LabelRecord": "Registra:",
|
||||||
"NewEpisodesOnly": "New episodes only",
|
"NewEpisodesOnly": "New episodes only",
|
||||||
"AllEpisodes": "All episodes",
|
"AllEpisodes": "Tutti gli episodi",
|
||||||
"LabelStartWhenPossible": "Start when possible:",
|
"LabelStartWhenPossible": "Start when possible:",
|
||||||
"LabelStopWhenPossible": "Stop when possible:",
|
"LabelStopWhenPossible": "Stop when possible:",
|
||||||
"MinutesBefore": "minutes before",
|
"MinutesBefore": "minuti prima",
|
||||||
"MinutesAfter": "minutes after",
|
"MinutesAfter": "minuti dopo",
|
||||||
"SkipEpisodesAlreadyInMyLibrary": "Skip episodes that are already in my library",
|
"SkipEpisodesAlreadyInMyLibrary": "Skip episodes that are already in my library",
|
||||||
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
"SkipEpisodesAlreadyInMyLibraryHelp": "Episodes will be compared using season and episode numbers, when available.",
|
||||||
"LabelKeepUpTo": "Keep up to:",
|
"LabelKeepUpTo": "Keep up to:",
|
||||||
|
@ -325,31 +325,31 @@
|
||||||
"LabelKeep:": "Keep:",
|
"LabelKeep:": "Keep:",
|
||||||
"UntilIDelete": "Until I delete",
|
"UntilIDelete": "Until I delete",
|
||||||
"UntilSpaceNeeded": "Until space needed",
|
"UntilSpaceNeeded": "Until space needed",
|
||||||
"Categories": "Categories",
|
"Categories": "Categorie",
|
||||||
"Sports": "Sports",
|
"Sports": "Sport",
|
||||||
"News": "News",
|
"News": "Notizie",
|
||||||
"Movies": "Movies",
|
"Movies": "Film",
|
||||||
"Kids": "Kids",
|
"Kids": "Bambini",
|
||||||
"EnableColorCodedBackgrounds": "Enable color coded backgrounds",
|
"EnableColorCodedBackgrounds": "Enable color coded backgrounds",
|
||||||
"SortChannelsBy": "Sort channels by:",
|
"SortChannelsBy": "Ordina canali per:",
|
||||||
"RecentlyWatched": "Recently watched",
|
"RecentlyWatched": "Visti di recente",
|
||||||
"ChannelNumber": "Channel number",
|
"ChannelNumber": "Numero canale",
|
||||||
"HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere",
|
"HeaderBenefitsEmbyPremiere": "Benefici di Emby Premiere",
|
||||||
"ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.",
|
"ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.",
|
||||||
"HeaderTryPlayback": "Try Playback",
|
"HeaderTryPlayback": "Try Playback",
|
||||||
"HowDidYouPay": "How did you pay?",
|
"HowDidYouPay": "How did you pay?",
|
||||||
"IHaveEmbyPremiere": "I have Emby Premiere",
|
"IHaveEmbyPremiere": "Sono abbonato a Emby Premiere",
|
||||||
"IPurchasedThisApp": "I purchased this app",
|
"IPurchasedThisApp": "Ho acquistato questa app",
|
||||||
"ButtonRestorePreviousPurchase": "Restore Purchase",
|
"ButtonRestorePreviousPurchase": "Ripristina Acquisto",
|
||||||
"ButtonUnlockWithPurchase": "Unlock with Purchase",
|
"ButtonUnlockWithPurchase": "Sblocca con l'Acquisto",
|
||||||
"ButtonUnlockPrice": "Unlock {0}",
|
"ButtonUnlockPrice": "Sblocca {0}",
|
||||||
"ButtonAlreadyPaid": "Already Paid?",
|
"ButtonAlreadyPaid": "Already Paid?",
|
||||||
"ButtonPlayOneMinute": "Play One Minute",
|
"ButtonPlayOneMinute": "Play One Minute",
|
||||||
"PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning",
|
"PlaceFavoriteChannelsAtBeginning": "Place favorite channels at the beginning",
|
||||||
"HeaderUnlockFeature": "Unlock Feature",
|
"HeaderUnlockFeature": "Sblocca Funzionalit\u00e0",
|
||||||
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
"MessageDidYouKnowCinemaMode": "Did you know that with Emby Premiere, you can enhance your experience with features like Cinema Mode?",
|
||||||
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
"MessageDidYouKnowCinemaMode2": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the main feature.",
|
||||||
"HeaderPlayMyMedia": "Play my Media",
|
"HeaderPlayMyMedia": "Riproduci i miei Media",
|
||||||
"HeaderDiscoverEmbyPremiere": "Discover Emby Premiere",
|
"HeaderDiscoverEmbyPremiere": "Scopri Emby Premiere",
|
||||||
"OneChannel": "One channel"
|
"OneChannel": "Un canale"
|
||||||
}
|
}
|
|
@ -184,7 +184,7 @@
|
||||||
"LabelAirsBeforeEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434 airs_before:",
|
"LabelAirsBeforeEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434 airs_before:",
|
||||||
"HeaderExternalIds": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b:",
|
"HeaderExternalIds": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0438\u0434\u0435\u043d\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u043e\u0440\u044b:",
|
||||||
"HeaderDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
"HeaderDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
|
||||||
"LabelTreatImageAs": "\u0422\u0440\u0430\u043a\u0442\u043e\u0432\u0430\u0442\u044c \u043e\u0431\u0440\u0430\u0437 \u043a\u0430\u043a:",
|
"LabelTreatImageAs": "\u0420\u0430\u0441\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c ISO-\u043e\u0431\u0440\u0430\u0437 \u043a\u0430\u043a (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, dvd, hddvd \u0438 \u0442.\u043f.):",
|
||||||
"LabelDisplayOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f:",
|
"LabelDisplayOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f:",
|
||||||
"Countries": "\u0421\u0442\u0440\u0430\u043d\u044b",
|
"Countries": "\u0421\u0442\u0440\u0430\u043d\u044b",
|
||||||
"Genres": "\u0416\u0430\u043d\u0440\u044b",
|
"Genres": "\u0416\u0430\u043d\u0440\u044b",
|
||||||
|
@ -315,8 +315,8 @@
|
||||||
"AllEpisodes": "\u0412\u0441\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
|
"AllEpisodes": "\u0412\u0441\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
|
||||||
"LabelStartWhenPossible": "\u041d\u0430\u0447\u0430\u0442\u044c \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:",
|
"LabelStartWhenPossible": "\u041d\u0430\u0447\u0430\u0442\u044c \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:",
|
||||||
"LabelStopWhenPossible": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:",
|
"LabelStopWhenPossible": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e:",
|
||||||
"MinutesBefore": "\u043c\u0438\u043d\u0443\u0442\u044b \u0434\u043e",
|
"MinutesBefore": "\u043c\u0438\u043d\u0443\u0442(\u044b) \u0434\u043e",
|
||||||
"MinutesAfter": "\u043c\u0438\u043d\u0443\u0442\u044b \u043f\u043e\u0441\u043b\u0435",
|
"MinutesAfter": "\u043c\u0438\u043d\u0443\u0442(\u044b) \u043f\u043e\u0441\u043b\u0435",
|
||||||
"SkipEpisodesAlreadyInMyLibrary": "\u041f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u044d\u043f\u0438\u0437\u043e\u0434\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0443\u0436\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u043c\u043e\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435",
|
"SkipEpisodesAlreadyInMyLibrary": "\u041f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u044d\u043f\u0438\u0437\u043e\u0434\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0443\u0436\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u043c\u043e\u0435\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435",
|
||||||
"SkipEpisodesAlreadyInMyLibraryHelp": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b \u0431\u0443\u0434\u0443\u0442 \u0441\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043d\u043e\u043c\u0435\u0440\u043e\u0432 \u0441\u0435\u0437\u043e\u043d\u043e\u0432 \u0438 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432, \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e.",
|
"SkipEpisodesAlreadyInMyLibraryHelp": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b \u0431\u0443\u0434\u0443\u0442 \u0441\u0440\u0430\u0432\u043d\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043d\u043e\u043c\u0435\u0440\u043e\u0432 \u0441\u0435\u0437\u043e\u043d\u043e\u0432 \u0438 \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432, \u043a\u043e\u0433\u0434\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e.",
|
||||||
"LabelKeepUpTo": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u0434\u043e:",
|
"LabelKeepUpTo": "\u0421\u0431\u0435\u0440\u0435\u0433\u0430\u0442\u044c \u0434\u043e:",
|
||||||
|
|
|
@ -141,13 +141,13 @@ define(['browser', 'dom', 'css!./viewcontainer-lite'], function (browser, dom) {
|
||||||
currentAnimations = animations;
|
currentAnimations = animations;
|
||||||
|
|
||||||
var onAnimationComplete = function () {
|
var onAnimationComplete = function () {
|
||||||
dom.removeEventListener(newAnimatedPage, 'animationend', onAnimationComplete, {
|
dom.removeEventListener(newAnimatedPage, dom.whichAnimationEvent(), onAnimationComplete, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
resolve();
|
resolve();
|
||||||
};
|
};
|
||||||
|
|
||||||
dom.addEventListener(newAnimatedPage, 'animationend', onAnimationComplete, {
|
dom.addEventListener(newAnimatedPage, dom.whichAnimationEvent(), onAnimationComplete, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -171,13 +171,13 @@ define(['browser', 'dom', 'css!./viewcontainer-lite'], function (browser, dom) {
|
||||||
currentAnimations = animations;
|
currentAnimations = animations;
|
||||||
|
|
||||||
var onAnimationComplete = function () {
|
var onAnimationComplete = function () {
|
||||||
dom.removeEventListener(newAnimatedPage, 'animationend', onAnimationComplete, {
|
dom.removeEventListener(newAnimatedPage, dom.whichAnimationEvent(), onAnimationComplete, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
resolve();
|
resolve();
|
||||||
};
|
};
|
||||||
|
|
||||||
dom.addEventListener(newAnimatedPage, 'animationend', onAnimationComplete, {
|
dom.addEventListener(newAnimatedPage, dom.whichAnimationEvent(), onAnimationComplete, {
|
||||||
once: true
|
once: true
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
define(['layoutManager', 'cardBuilder', 'datetime', 'mediaInfo', 'backdrop', 'listView', 'itemContextMenu', 'itemHelper', 'userdataButtons', 'dom', 'indicators', 'apphost', 'imageLoader', 'scrollStyles', 'emby-itemscontainer', 'emby-checkbox'], function (layoutManager, cardBuilder, datetime, mediaInfo, backdrop, listView, itemContextMenu, itemHelper, userdataButtons, dom, indicators, appHost, imageLoader) {
|
define(['layoutManager', 'cardBuilder', 'datetime', 'mediaInfo', 'backdrop', 'listView', 'itemContextMenu', 'itemHelper', 'userdataButtons', 'dom', 'indicators', 'apphost', 'imageLoader', 'libraryMenu', 'scrollStyles', 'emby-itemscontainer', 'emby-checkbox'], function (layoutManager, cardBuilder, datetime, mediaInfo, backdrop, listView, itemContextMenu, itemHelper, userdataButtons, dom, indicators, appHost, imageLoader, libraryMenu) {
|
||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
var currentItem;
|
var currentItem;
|
||||||
|
@ -104,7 +104,7 @@
|
||||||
|
|
||||||
LibraryBrowser.renderName(item, page.querySelector('.itemName'), false, context);
|
LibraryBrowser.renderName(item, page.querySelector('.itemName'), false, context);
|
||||||
LibraryBrowser.renderParentName(item, page.querySelector('.parentName'), context);
|
LibraryBrowser.renderParentName(item, page.querySelector('.parentName'), context);
|
||||||
LibraryMenu.setTitle('');
|
libraryMenu.setTitle('');
|
||||||
|
|
||||||
Dashboard.getCurrentUser().then(function (user) {
|
Dashboard.getCurrentUser().then(function (user) {
|
||||||
|
|
||||||
|
@ -131,7 +131,7 @@
|
||||||
|
|
||||||
var transparentHeader = hasBackdrop && page.classList.contains('noSecondaryNavPage');
|
var transparentHeader = hasBackdrop && page.classList.contains('noSecondaryNavPage');
|
||||||
|
|
||||||
LibraryMenu.setTransparentMenu(transparentHeader);
|
libraryMenu.setTransparentMenu(transparentHeader);
|
||||||
|
|
||||||
var canPlay = false;
|
var canPlay = false;
|
||||||
|
|
||||||
|
@ -2282,7 +2282,7 @@
|
||||||
currentRecordingFields = null;
|
currentRecordingFields = null;
|
||||||
|
|
||||||
Events.off(ApiClient, 'websocketmessage', onWebSocketMessage);
|
Events.off(ApiClient, 'websocketmessage', onWebSocketMessage);
|
||||||
LibraryMenu.setTransparentMenu(false);
|
libraryMenu.setTransparentMenu(false);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
});
|
});
|
|
@ -1055,4 +1055,6 @@
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return LibraryMenu;
|
||||||
});
|
});
|
Loading…
Add table
Add a link
Reference in a new issue