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

update default library options

This commit is contained in:
Luke Pulverenti 2017-09-30 13:41:14 -04:00
parent 31c567f8c0
commit ce39e7cc0c
10 changed files with 72 additions and 70 deletions

View file

@ -0,0 +1 @@
define(["events"],function(events){"use strict";function isValidIpAddress(address){var links=LinkParser.parse(address);return 1==links.length}function isLocalIpAddress(address){return address=address.toLowerCase(),address.indexOf("127.0.0.1")!==-1||address.indexOf("localhost")!==-1}function getServerAddress(apiClient){var serverAddress=apiClient.serverAddress();if(isValidIpAddress(serverAddress)&&!isLocalIpAddress(serverAddress))return Promise.resolve(serverAddress);var cachedValue=getCachedValue(serverAddress);return cachedValue?Promise.resolve(cachedValue):apiClient.getEndpointInfo().then(function(endpoint){return endpoint.IsInNetwork?apiClient.getPublicSystemInfo().then(function(info){return addToCache(serverAddress,info.LocalAddress),info.LocalAddress}):(addToCache(serverAddress,serverAddress),serverAddress)})}function clearCache(){cache={}}function addToCache(key,value){cache[key]={value:value,time:(new Date).getTime()}}function getCachedValue(key){var obj=cache[key];return obj&&(new Date).getTime()-obj.time<18e4?obj.value:null}!function(){function ensureProtocol(url){return url.match(protocolRegExp)||(url="http://"+url),url}var protocols="(?:(?:http|https|rtsp|ftp):\\/\\/)",credentials="(?:(?:[a-z0-9\\$\\-\\_\\.\\+\\!\\*\\'\\(\\)\\,\\;\\?\\&\\=]|(?:\\%[a-f0-9]{2})){1,64}(?:\\:(?:[a-z0-9\\$\\-\\_\\.\\+\\!\\*\\'\\(\\)\\,\\;\\?\\&\\=]|(?:\\%[a-f0-9]{2})){1,25})?\\@)",ipv6="((([0-9A-Fa-f]{1,4}:){7}([0-9A-Fa-f]{1,4}|:))|(([0-9A-Fa-f]{1,4}:){6}(:[0-9A-Fa-f]{1,4}|((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){5}(((:[0-9A-Fa-f]{1,4}){1,2})|:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3})|:))|(([0-9A-Fa-f]{1,4}:){4}(((:[0-9A-Fa-f]{1,4}){1,3})|((:[0-9A-Fa-f]{1,4})?:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){3}(((:[0-9A-Fa-f]{1,4}){1,4})|((:[0-9A-Fa-f]{1,4}){0,2}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){2}(((:[0-9A-Fa-f]{1,4}){1,5})|((:[0-9A-Fa-f]{1,4}){0,3}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(([0-9A-Fa-f]{1,4}:){1}(((:[0-9A-Fa-f]{1,4}){1,6})|((:[0-9A-Fa-f]{1,4}){0,4}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:))|(:(((:[0-9A-Fa-f]{1,4}){1,7})|((:[0-9A-Fa-f]{1,4}){0,5}:((25[0-5]|2[0-4]d|1dd|[1-9]?d)(.(25[0-5]|2[0-4]d|1dd|[1-9]?d)){3}))|:)))(%.+)?",ipv4="(?:25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[1-9])\\.(?:25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[1-9]|0)\\.(?:25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[1-9]|0)\\.(?:25[0-5]|2[0-4][0-9]|[0-1][0-9]{2}|[1-9][0-9]|[0-9])",linkRegExpString="(?:"+protocols+"?"+credentials+"?(?:"+ipv6+"|"+ipv4+"))(?:\\:\\d{1,5})?(?:\\/(?:(?:[a-z0-9\\/\\@\\&\\#\\~\\*\\_\\-\\+])|(?:\\%[a-f0-9]{2})|(?:[\\;\\?\\:\\.\\!\\'\\(\\)\\,\\=]+(?=(?:[a-z0-9\\/\\@\\&\\#\\~\\*\\_\\-\\+])|(?:\\%[a-f0-9]{2}))))*|\\b|$)",linkRegExp=RegExp(linkRegExpString,"gi"),protocolRegExp=RegExp("^"+protocols,"i"),LinkParser={parse:function(text){for(var match,links=[];match=linkRegExp.exec(text);){var txt=match[0],pos=match.index,len=txt.length,url=ensureProtocol(text);links.push({pos:pos,text:txt,len:len,url:url})}return links}};window.LinkParser=LinkParser}();var cache={};return events.on(ConnectionManager,"localusersignedin",clearCache),events.on(ConnectionManager,"localusersignedout",clearCache),{getServerAddress:getServerAddress}});

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,10 +1,10 @@
{
"ValueSeconds": "{0} seconds",
"HeaderAudioSettings": "Audio Settings",
"ValueSeconds": "{0} \u0441\u0435\u043a\u0443\u043d\u0434\u0438",
"HeaderAudioSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0437\u0432\u0443\u043a\u0430",
"EnableCinemaMode": "Enable cinema mode",
"PlayNextEpisodeAutomatically": "Play next episode automatically",
"LabelAudioLanguagePreference": "Preferred audio language:",
"HeaderVideoQuality": "Video Quality",
"LabelAudioLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0437\u0432\u0443\u043a\u0430:",
"HeaderVideoQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u043d\u0430 \u0432\u0438\u0434\u0435\u043e\u0442\u043e",
"LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
"CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
"EnableNextVideoInfoOverlay": "Enable next video info during playback",
@ -13,7 +13,7 @@
"LabelSkipBackLength": "Skip back length:",
"LabelSkipForwardLength": "Skip forward length:",
"LabelInternetQuality": "Internet quality:",
"HeaderMusicQuality": "Music Quality",
"HeaderMusicQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u043d\u0430 \u043c\u0443\u0437\u0438\u043a\u0430\u0442\u0430",
"LabelHomeNetworkQuality": "Home network quality:",
"MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.",
"MessageUnlockAppWithSupporter": "Unlock this feature with an active Emby Premiere subscription.",
@ -26,7 +26,7 @@
"AttributeNew": "New",
"Premiere": "\u041f\u0440\u0435\u043c\u0438\u0435\u0440\u0430",
"Live": "\u041d\u0430 \u0436\u0438\u0432\u043e",
"Repeat": "Repeat",
"Repeat": "\u041f\u043e\u0432\u0442\u0430\u0440\u044f\u043d\u0435",
"TrackCount": "{0} tracks",
"ItemCount": "{0} items",
"OriginalAirDateValue": "Original air date: {0}",
@ -135,14 +135,14 @@
"ViewAlbum": "View album",
"ViewArtist": "View artist",
"QueueAllFromHere": "Queue all from here",
"PlayAllFromHere": "Play all from here",
"PlayAllFromHere": "\u041f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 \u0432\u0441\u0438\u0447\u043a\u043e \u043e\u0442 \u0442\u0443\u043a",
"PlayFromBeginning": "Play from beginning",
"ResumeAt": "Resume from {0}",
"RemoveFromPlaylist": "Remove from playlist",
"RemoveFromCollection": "Remove from collection",
"Trailer": "\u0422\u0440\u0435\u0439\u043b\u044a\u0440",
"MarkPlayed": "Mark played",
"MarkUnplayed": "Mark unplayed",
"MarkPlayed": "\u041e\u0442\u0431\u0435\u043b\u044f\u0437\u0432\u0430\u043d\u0435 \u043a\u0430\u0442\u043e \u043f\u0443\u0441\u043a\u0430\u043d\u043e",
"MarkUnplayed": "\u041e\u0442\u0431\u0435\u043b\u044f\u0437\u0432\u0430\u043d\u0435 \u043a\u0430\u0442\u043e \u043d\u0435\u043f\u0443\u0441\u043a\u0430\u043d\u043e",
"GroupVersions": "Group versions",
"PleaseSelectTwoItems": "Please select at least two items.",
"TryMultiSelect": "Try Multi-Select",
@ -219,7 +219,7 @@
"ReleaseDate": "Release date",
"Continuing": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0430\u0432\u0430\u0449\u043e",
"Ended": "\u041f\u0440\u0438\u043a\u043b\u044e\u0447\u0438\u043b\u043e",
"HeaderEnabledFields": "Enabled Fields",
"HeaderEnabledFields": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438 \u043f\u043e\u043b\u0435\u0442\u0430",
"HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.",
"Backdrops": "\u0424\u043e\u043d\u043e\u0432\u0435",
"Images": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
@ -420,10 +420,10 @@
"Up": "Up",
"Down": "Down",
"HeaderHomeScreen": "Home Screen",
"HeaderLatestMedia": "Latest Media",
"HeaderLatestMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u043c\u0435\u0434\u0438\u0438",
"HeaderLatestChannelItems": "Latest Channel Items",
"LabelSelectLastestItemsFolders": "Include items from the following sections in Latest Media",
"HeaderLibraryOrder": "Library Order",
"HeaderLibraryOrder": "\u041f\u043e\u0434\u0440\u0435\u0434\u0431\u0430 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430",
"HideWatchedContentFromLatestMedia": "Hide watched content from latest media",
"HeaderOnNow": "On Now",
"HeaderPlaybackError": "Playback Error",
@ -437,8 +437,8 @@
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
"Shows": "Shows",
"HeaderLibraryFolders": "Library Folders",
"HeaderLandingScreens": "Landing Screens",
"HeaderLibraryFolders": "\u041f\u0430\u043f\u043a\u0438 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430",
"HeaderLandingScreens": "\u0418\u0437\u0433\u043b\u0435\u0434\u0438",
"LandingScreensHelp": "Select the default landing screen when clicking on a library.",
"HeaderTermsOfPurchase": "Terms of Purchase",
"PrivacyPolicy": "Privacy policy",
@ -452,7 +452,7 @@
"LiveTV": "Live TV",
"Schedule": "Schedule",
"Recordings": "Recordings",
"MarkWatched": "Mark watched",
"MarkWatched": "\u041e\u0442\u0431\u0435\u043b\u044f\u0437\u0432\u0430\u043d\u0435 \u043a\u0430\u0442\u043e \u0438\u0437\u0433\u043b\u0435\u0434\u0430\u043d\u043e",
"ScanForNewAndUpdatedFiles": "Scan for new and updated files",
"DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.",
"DirectStreamHelp2": "Direct Streaming a file uses very little processing power without any loss in video quality.",
@ -493,30 +493,30 @@
"HeaderEmbyAccountAdded": "Emby Account Added",
"LabelSubtitlePlaybackMode": "Subtitle mode:",
"ErrorDeletingItem": "There was an error deleting the item from Emby Server. Please check that Emby Server has write access to the media folder and try again.",
"NoSubtitles": "No subtitles",
"Default": "Default",
"Smart": "Smart",
"Small": "Small",
"NoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
"Default": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
"Smart": "\u0423\u043c\u043d\u0438",
"Small": "\u041c\u0430\u043b\u044a\u043a",
"Medium": "Medium",
"Large": "Large",
"ExtraLarge": "Extra large",
"Large": "\u0413\u043e\u043b\u044f\u043c",
"ExtraLarge": "\u041c\u043d\u043e\u0433\u043e \u0433\u043e\u043b\u044f\u043c",
"OnlyForcedSubtitles": "Only forced subtitles",
"AlwaysPlaySubtitles": "Always play subtitles",
"DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
"SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
"HeaderSubtitleSettings": "Subtitle Settings",
"HeaderSubtitleAppearance": "Subtitle Appearance",
"HeaderSubtitleAppearance": "\u041e\u0431\u043b\u0438\u043a \u043d\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438\u0442\u0435",
"OnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
"AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
"NoSubtitlesHelp": "Subtitles will not be loaded by default. They can still be turned on manually during playback.",
"LabelPreferredSubtitleLanguage": "Preferred subtitle language:",
"LabelTextSize": "Text size:",
"LabelTextSize": "\u0420\u0430\u0437\u043c\u0435\u0440 \u043d\u0430 \u0442\u0435\u043a\u0441\u0442\u0430:",
"TheseSettingsAffectSubtitlesOnThisDevice": "These settings affect subtitles on this device",
"LabelDropShadow": "Drop shadow:",
"LabelDropShadow": "\u0421\u044f\u043d\u043a\u0430:",
"LabelTextBackgroundColor": "Text background color:",
"LabelWindowBackgroundColor": "Text background color:",
"LabelFont": "Font:",
"LabelTextColor": "Text color:",
"LabelFont": "\u0428\u0440\u0438\u0444\u0442:",
"LabelTextColor": "\u0426\u0432\u044f\u0442 \u043d\u0430 \u0442\u0435\u043a\u0441\u0442\u0430:",
"Raised": "Raised",
"Depressed": "Depressed",
"Uniform": "Uniform",
@ -525,14 +525,14 @@
"SubtitleAppearanceSettingsDisclaimer": "These settings will not apply to graphical subtitles (PGS, DVD, etc), or subtitles that have their own styles embedded (ASS\/SSA).",
"LabelBurnSubtitles": "Burn subtitles:",
"OnlyImageFormats": "Only image formats (VOBSUB, PGS, SUB\/IDX, etc.)",
"Normal": "Normal",
"Normal": "\u041d\u043e\u0440\u043c\u0430\u043b\u0435\u043d",
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
"AllComplexFormats": "All complex formats (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
"HeaderWaitingForWifi": "Waiting for Wifi",
"WifiRequiredToDownload": "A Wifi connection is required to continue downloading.",
"HeaderDownloadSettings": "Download Settings",
"Hide": "Hide",
"Hide": "\u0421\u043a\u0440\u0438\u0432\u0430\u043d\u0435",
"HeaderStartNow": "Start Now",
"HeaderNextVideoPlayingInValue": "Next Video Playing in {0}",
"HeaderNextEpisodePlayingInValue": "Next Episode Playing in {0}",
@ -547,20 +547,20 @@
"ManageRecording": "Manage recording",
"LabelDropImageHere": "Drop image here, or click to browse.",
"MessageFileReadError": "There was an error reading the file. Please try again.",
"Browse": "Browse",
"HeaderUploadImage": "Upload Image",
"Browse": "\u0420\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u043d\u0435",
"HeaderUploadImage": "\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
"HeaderAddUpdateImage": "Add\/Update Image",
"LabelImageType": "Image type:",
"Upload": "Upload",
"Upload": "\u041a\u0430\u0447\u0432\u0430\u043d\u0435",
"Primary": "Primary",
"Art": "Art",
"Backdrop": "Backdrop",
"Art": "\u041a\u0430\u0440\u0442\u0438\u043d\u0430",
"Backdrop": "\u0424\u043e\u043d",
"Banner": "Banner",
"Box": "Box",
"BoxRear": "Box (rear)",
"Disc": "Disc",
"Logo": "Logo",
"Menu": "Menu",
"Screenshot": "Screenshot",
"Thumb": "Thumb"
"Disc": "\u0414\u0438\u0441\u043a",
"Logo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
"Menu": "\u041c\u0435\u043d\u044e",
"Screenshot": "\u0421\u043d\u0438\u043c\u043a\u0430 \u043d\u0430 \u0435\u043a\u0440\u0430\u043d\u0430",
"Thumb": "\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430"
}

View file

@ -3,7 +3,7 @@
"HeaderAudioSettings": "Ustawienia d\u017awi\u0119ku",
"EnableCinemaMode": "W\u0142\u0105cz tryb kinowy",
"PlayNextEpisodeAutomatically": "Odtwarzaj nast\u0119pny odcinek automatycznie",
"LabelAudioLanguagePreference": "Preferowany j\u0119zyk d\u017awi\u0119ku",
"LabelAudioLanguagePreference": "Preferowany j\u0119zyk \u015bcie\u017cki d\u017awi\u0119kowej",
"HeaderVideoQuality": "Jako\u015b\u0107 wideo",
"LabelPlayDefaultAudioTrack": "Okre\u015bla domy\u015blnie odtwarzan\u0105 \u015bcie\u017ck\u0119 d\u017awi\u0119kow\u0105 niezale\u017cnie od j\u0119zyka",
"CinemaModeConfigurationHelp": "Tryb kinowy, wnosi kinowe do\u015bwiadczenia wprost do Twojego salonu, z mo\u017cliwo\u015bci\u0105 odtwarzania zwiastun\u00f3w i niestandardowych prezentacji przez seansem.",
@ -12,9 +12,9 @@
"LabelMaxChromecastBitrate": "Jako\u015b\u0107 transmisji Chromecast:",
"LabelSkipBackLength": "D\u0142ugo\u015b\u0107 skoku wstecz:",
"LabelSkipForwardLength": "D\u0142ugo\u015b\u0107 skoku wprz\u00f3d:",
"LabelInternetQuality": "Jako\u015b\u0107 internetowa:",
"LabelInternetQuality": "Jako\u015b\u0107 dla sieci internetowej:",
"HeaderMusicQuality": "Jako\u015b\u0107 muzyki",
"LabelHomeNetworkQuality": "Jako\u015b\u0107 sieci domowej:",
"LabelHomeNetworkQuality": "Jako\u015b\u0107 dla sieci lokalnej:",
"MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119, za niewielk\u0105 jednorazow\u0105 op\u0142at\u0105 lub przy u\u017cyciu aktywnej subskrypcji Emby Premium.",
"MessageUnlockAppWithSupporter": "Odblokuj t\u0119 funkcj\u0119 przy u\u017cyciu subskrypcji Emby Premium.",
"MessageToValidateSupporter": "Je\u015bli posiadasz aktywn\u0105 subskrypcj\u0119 Emby Premium, upewnij si\u0119, \u017ce j\u0105 poprawnie skonfigurowa\u0142e\u015b przy pomocy Kokpitu serwera Emby, do kt\u00f3rego mo\u017cesz uzyska\u0107 dost\u0119p, klikaj\u0105c na pozycj\u0119 Premium menu startowego.",
@ -106,7 +106,7 @@
"MessageDownloadQueued": "Dodano do kolejki pobierania.",
"EditSubtitles": "Edytuj napisy",
"UnlockGuide": "Odblokuj funkcje przewodnika",
"RefreshMetadata": "Refresh metadata",
"RefreshMetadata": "Od\u015bwie\u017c metadane:",
"ReplaceExistingImages": "Zast\u0119puj istniej\u0105ce obrazy",
"ReplaceAllMetadata": "Zast\u0119puj wszystkie metadane",
"SearchForMissingMetadata": "Wyszukuj brakuj\u0105cych metadanych",
@ -214,7 +214,7 @@
"LabelTrackNumber": "Numer utworu:",
"LabelNumber": "Numer:",
"LabelDiscNumber": "Numer dysku:",
"LabelParentNumber": "Parent number:",
"LabelParentNumber": "Numer nadrz\u0119dny:",
"SortName": "Tytu\u0142 sortowania",
"ReleaseDate": "Data wydania",
"Continuing": "Dalej wy\u015bwietlane",
@ -454,7 +454,7 @@
"Recordings": "Nagrania",
"MarkWatched": "Oznacz jako obejrzane",
"ScanForNewAndUpdatedFiles": "Skanuj w poszukiwaniu nowych lub zaktualizowanych plik\u00f3w",
"DirectStreamHelp1": "The media is compatible with the device regarding resolution and media type (H.264, AC3, etc.), but is in an incompatible file container (.mkv, .avi, .wmv, etc.). The video will be re-packaged on the fly before streaming it to the device.",
"DirectStreamHelp1": "Media s\u0105 kompatybilne z urz\u0105dzeniem w kwestii rozdzielczo\u015bci i typu (H.264, AC3, etc), ale kontener pliku jest niekompatybilny (.mkv, .avi, .wmv, etc). Wideo zostanie przepakowane w locie, przed rozpocz\u0119ciem transmisji do urz\u0105dzenia.",
"DirectStreamHelp2": "Transmisja bezpo\u015brednia pliku u\u017cywa niewiele mocy przetwarzania, bez utraty jako\u015bci wideo.",
"MediaIsBeingConverted": "Media b\u0119d\u0105 konwertowane do formatu kompatybilnego z urz\u0105dzeniem, na kt\u00f3ry b\u0119d\u0105 odtwarzane.",
"StatsForNerds": "Statystyki dla maniak\u00f3w",
@ -476,23 +476,23 @@
"AnamorphicVideoNotSupported": "Nieobs\u0142ugiwane wideo anamorficzne",
"InterlacedVideoNotSupported": "Nieobs\u0142ugiwane wideo z przeplotem",
"SecondaryAudioNotSupported": "Nieobs\u0142ugiwane prze\u0142\u0105czanie \u015bcie\u017cek d\u017awi\u0119kowych",
"ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. Please ensure you have an active internet connection and try again.",
"ErrorRemovingEmbyConnectAccount": "Podczas usuwania konta Emby Connect wyst\u0105pi\u0142 b\u0142\u0105d. Upewnij si\u0119, \u017ce po\u0142\u0105czenie internetowe jest aktywne i spr\u00f3buj ponownie.",
"HeaderEmbyAccountRemoved": "Usuni\u0119to konto Emby",
"MessageEmbyAccontRemoved": "Konto Emby zosta\u0142o usuni\u0119te dla tego u\u017cytkownika.",
"HeaderInvitationSent": "Wys\u0142ano zaproszenie",
"MessageInvitationSentToUser": "Wiadomo\u015b\u0107 pocztowa, z pro\u015bb\u0105 o akceptacj\u0119 zaproszenia wsp\u00f3\u0142u\u017cytkowania, zosta\u0142a wys\u0142ana do {0}.",
"MessageInvitationSentToNewUser": "Wiadomo\u015b\u0107 pocztowa, z pro\u015bb\u0105 o rejestracj\u0119 konta Emby, zosta\u0142a wys\u0142ana do {0}.",
"GuestUserNotFound": "U\u017cytkownik nie istnieje. Upewnij si\u0119, \u017ce nazwa jest poprawna lub spr\u00f3buj wprowadzaj\u0105c adres pocztowy.",
"ErrorReachingEmbyConnect": "There was an error reaching the Emby Connect server. Please ensure you have an active internet connection and try again.",
"ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.",
"ErrorReachingEmbyConnect": "Podczas pr\u00f3by po\u0142\u0105czenia z serwerem Emby Connect wyst\u0105pi\u0142 b\u0142\u0105d. Upewnij si\u0119, \u017ce po\u0142\u0105czenie internetowe jest aktywne i spr\u00f3buj ponownie.",
"ErrorAddingEmbyConnectAccount1": "Podczas dodawania konta Emby Connect wyst\u0105pi\u0142 b\u0142\u0105d. Czy utworzy\u0142e\u015b wcze\u015bniej konto Emby?. Zarejestruj si\u0119 na {0}.",
"ErrorAddingEmbyConnectAccount2": "If you're still having an issue, please send an email to {0} from the email address used with the Emby account.",
"ErrorAddingGuestAccount1": "There was an error adding the Emby Connect account. Has your guest created an Emby account? They can sign up at {0}.",
"ErrorAddingGuestAccount2": "If you're still having an issue, please send an email to {0}, and include your email address as well as theirs.",
"MessageEmbyAccountAdded": "Konto Emby zosta\u0142o dodane do u\u017cytkownika.",
"MessagePendingEmbyAccountAdded": "The Emby account has been added to this user. An email will be sent to the owner of the account. The invitation will need to be confirmed by clicking a link within the email.",
"MessagePendingEmbyAccountAdded": "Konto Emby zosta\u0142o po\u0142\u0105czone z tym u\u017cytkownikiem. Wiadomo\u015b\u0107 pocztowa zosta\u0142a wys\u0142ana do w\u0142a\u015bciciela tego konta. Wymagane b\u0119dzie potwierdzenie zaproszenia, poprzez naci\u015bni\u0119cie na \u0142\u0105cze umieszczone w wiadomo\u015bci.",
"HeaderEmbyAccountAdded": "Dodano konto Emby",
"LabelSubtitlePlaybackMode": "Tryb napis\u00f3w:",
"ErrorDeletingItem": "There was an error deleting the item from Emby Server. Please check that Emby Server has write access to the media folder and try again.",
"ErrorDeletingItem": "Podczas usuwania pozycji z serwera Emby wyst\u0105pi\u0142 b\u0142\u0105d. Upewnij si\u0119, \u017ce serwer ma uprawnienia do zapisu w folderze medi\u00f3w i spr\u00f3buj ponownie.",
"NoSubtitles": "Brak napis\u00f3w",
"Default": "Domy\u015blny",
"Smart": "Inteligentny",
@ -502,33 +502,33 @@
"ExtraLarge": "Wielki",
"OnlyForcedSubtitles": "Tylko wymuszone napisy",
"AlwaysPlaySubtitles": "Zawsze wy\u015bwietlaj napisy",
"DefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.",
"SmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
"DefaultSubtitlesHelp": "Napisy b\u0119d\u0105 wczytywane w oparciu o znaczniki metadanych \u015bcie\u017cek d\u017awi\u0119kowych. Preferencje j\u0119zykowe brane s\u0105 pod uwag\u0119, gdy dost\u0119pnych jest wiele mo\u017cliwo\u015bci.",
"SmartSubtitlesHelp": "W przypadku, gdy \u015bcie\u017cka d\u017awi\u0119kowa jest w j\u0119zyku obcym, zostan\u0105 wczytane napisy w preferowanym j\u0119zyku.",
"HeaderSubtitleSettings": "Ustawienia napis\u00f3w",
"HeaderSubtitleAppearance": "Wygl\u0105d napis\u00f3w",
"OnlyForcedSubtitlesHelp": "Tylko napisy oznaczone jako wymuszone b\u0119d\u0105 wczytywane.",
"AlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
"AlwaysPlaySubtitlesHelp": "Napisy pasuj\u0105ce do preferowanego j\u0119zyka b\u0119d\u0105 wczytywane, niezale\u017cnie od j\u0119zyka \u015bcie\u017cki d\u017awi\u0119kowej.",
"NoSubtitlesHelp": "Domy\u015blnie napisy nie b\u0119d\u0105 wczytywane. Mo\u017cna je ci\u0105gle w\u0142\u0105czy\u0107 r\u0119cznie podczas odtwarzania.",
"LabelPreferredSubtitleLanguage": "Preferowany j\u0119zyk napis\u00f3w:",
"LabelTextSize": "Rozmiar tekstu:",
"TheseSettingsAffectSubtitlesOnThisDevice": "Te ustawienia dotycz\u0105 napis\u00f3w na tym urz\u0105dzeniu",
"LabelDropShadow": "Cie\u0144:",
"LabelDropShadow": "Rzucaj cie\u0144:",
"LabelTextBackgroundColor": "Kolor t\u0142a tekstu:",
"LabelWindowBackgroundColor": "Kolor t\u0142a tekstu:",
"LabelFont": "Czcionka:",
"LabelTextColor": "Kolor tekstu:",
"Raised": "Raised",
"Depressed": "Depressed",
"Uniform": "Uniform",
"DropShadow": "Cie\u0144",
"SmallCaps": "Small caps",
"Raised": "Wypuk\u0142y",
"Depressed": "Wkl\u0119s\u0142y",
"Uniform": "Jednolity",
"DropShadow": "Rozproszony",
"SmallCaps": "Kapitaliki",
"SubtitleAppearanceSettingsDisclaimer": "Te ustawienia nie maj\u0105 zastosowania do napis\u00f3w graficznych (PGS, DVD, etc) lub napis\u00f3w, kt\u00f3re posiadaj\u0105 swoje w\u0142asne wbudowane style (ASS\/SSA).",
"LabelBurnSubtitles": "Wypalaj napisy:",
"OnlyImageFormats": "Tylko formaty graficzne (VOBSUB, PGS, SUB\/IDX, etc.)",
"Normal": "Normal",
"Normal": "Normalny",
"BurnSubtitlesHelp": "Determines if the server should burn in subtitles when converting video depending on the subtitles format. Avoiding burning in subtitles will improve server performance. Select Auto to burn image based formats (e.g. VOBSUB, PGS, SUB\/IDX, etc.) as well as certain ASS\/SSA subtitles",
"AllComplexFormats": "Wszystkie z\u0142o\u017cone formaty (ASS, SSA, VOBSUB, PGS, SUB\/IDX, etc.)",
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "These settings also apply to any Chromecast playback started by this device.",
"SubtitleAppearanceSettingsAlsoPassedToCastDevices": "Powy\u017csze ustawienia dotycz\u0105 tak\u017ce odtwarzania Chromecast rozpocz\u0119tego przez to urz\u0105dzenie.",
"HeaderWaitingForWifi": "Oczekiwanie na sie\u0107 WiFi",
"WifiRequiredToDownload": "Po\u0142\u0105czenie WiFi jest wymagane, aby kontynuowa\u0107 pobieranie.",
"HeaderDownloadSettings": "Ustawienia pobierania",
@ -542,7 +542,7 @@
"VideoFramerateNotSupported": "Nieobs\u0142ugiwana cz\u0119stotliwo\u015b\u0107 od\u015bwie\u017cania wideo",
"VideoBitDepthNotSupported": "Nieobs\u0142ugiwana g\u0142\u0119bia bitowa wideo",
"RefFramesNotSupported": "Nieobs\u0142ugiwana liczba klatek referencyjnych wideo",
"ErrorConnectServerUnreachable": "There was an error performing the requested operation. Your server is unable to contact our Emby Connect Server at {0}. Please ensure your server has an active internet connection and that the communications are being allowed by any firewall or security software you have installed.",
"ErrorConnectServerUnreachable": "Podczas wykonywania \u017c\u0105danej operacji wyst\u0105pi\u0142 b\u0142\u0105d. Po\u0142\u0105czenie z Twojego serwera z serwerem Emby Connect z {0} by\u0142o niemo\u017cliwe. Upewnij si\u0119, \u017ce po\u0142\u0105czenie internetowe na Twoim serwerze jest aktywne i komunikacja jest dozwolona przez zapor\u0119 sieciow\u0105 i zainstalowane oprogramowanie antywirusowe.",
"StopRecording": "Zatrzymaj nagrywanie",
"ManageRecording": "Zarz\u0105dzaj nagrywaniem",
"LabelDropImageHere": "Upu\u015b\u0107 obraz tutaj lub naci\u015bnij przycisk, aby przegl\u0105da\u0107.",

View file

@ -7,8 +7,8 @@
"HeaderVideoQuality": "Video Quality",
"LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
"CinemaModeConfigurationHelp": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.",
"EnableNextVideoInfoOverlay": "Enable next video info during playback",
"EnableNextVideoInfoOverlayHelp": "At the end of a video, display info about the next video coming up in the current playlist.",
"EnableNextVideoInfoOverlay": "Visa info om n\u00e4sta video under uppspelning",
"EnableNextVideoInfoOverlayHelp": "Vid slutet av en video, visa information om n\u00e4stf\u00f6ljande video i spellistan.",
"LabelMaxChromecastBitrate": "Chromecast streaming quality:",
"LabelSkipBackLength": "Skip back length:",
"LabelSkipForwardLength": "Skip forward length:",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long