diff --git a/dashboard-ui/scripts/globalize.js b/dashboard-ui/scripts/globalize.js index 68fb44c477..519dae53ec 100644 --- a/dashboard-ui/scripts/globalize.js +++ b/dashboard-ui/scripts/globalize.js @@ -2,7 +2,7 @@ var dictionaries = {}; - function getUrl(name, culture) { + function getUrl(culture) { var parts = culture.split('-'); if (parts.length == 2) { @@ -10,24 +10,24 @@ culture = parts.join('-'); } - return 'strings/' + name + '/' + culture + '.json'; + return 'strings/' + culture + '.json'; } - function getDictionary(name, culture) { + function getDictionary(culture) { - return dictionaries[getUrl(name, culture)]; + return dictionaries[getUrl(culture)]; } - function loadDictionary(name, culture) { + function loadDictionary(culture) { return new Promise(function (resolve, reject) { - if (getDictionary(name, culture)) { - console.log('Globalize loadDictionary resolved: ' + name); + if (getDictionary(culture)) { + console.log('Globalize loadDictionary resolved.'); resolve(); return; } - var url = getUrl(name, culture); + var url = getUrl(culture); var requestUrl = url + "?v=" + AppInfo.appVersion; @@ -42,11 +42,11 @@ // Grab the english version var xhr2 = new XMLHttpRequest(); - xhr2.open('GET', getUrl(name, 'en-US'), true); + xhr2.open('GET', getUrl('en-US'), true); xhr2.onload = function (e) { dictionaries[url] = JSON.parse(this.response); - console.log('Globalize loadDictionary resolved: ' + name); + console.log('Globalize loadDictionary resolved.'); resolve(); }; @@ -60,7 +60,7 @@ if (this.status < 400) { dictionaries[url] = JSON.parse(this.response); - console.log('Globalize loadDictionary resolved: ' + name); + console.log('Globalize loadDictionary resolved.'); resolve(); } else { @@ -80,7 +80,7 @@ console.log('Setting culture to ' + value); currentCulture = value; - return Promise.all([loadDictionary('html', value), loadDictionary('javascript', value)]); + return loadDictionary(value); } function normalizeLocaleName(culture) { @@ -133,11 +133,9 @@ }); } - function translateDocument(html, dictionaryName) { + function translateDocument(html) { - dictionaryName = dictionaryName || 'html'; - - var glossary = getDictionary(dictionaryName, currentCulture) || {}; + var glossary = getDictionary(currentCulture) || {}; return translateHtml(html, glossary); } @@ -171,7 +169,7 @@ window.Globalize = { translate: function (key) { - var glossary = getDictionary('javascript', currentCulture) || {}; + var glossary = getDictionary(currentCulture) || {}; var val = glossary[key] || key; for (var i = 1; i < arguments.length; i++) { diff --git a/dashboard-ui/strings/html/ar.json b/dashboard-ui/strings/ar.json similarity index 100% rename from dashboard-ui/strings/html/ar.json rename to dashboard-ui/strings/ar.json diff --git a/dashboard-ui/strings/html/bg-BG.json b/dashboard-ui/strings/bg-BG.json similarity index 100% rename from dashboard-ui/strings/html/bg-BG.json rename to dashboard-ui/strings/bg-BG.json diff --git a/dashboard-ui/strings/html/ca.json b/dashboard-ui/strings/ca.json similarity index 100% rename from dashboard-ui/strings/html/ca.json rename to dashboard-ui/strings/ca.json diff --git a/dashboard-ui/strings/html/cs.json b/dashboard-ui/strings/cs.json similarity index 100% rename from dashboard-ui/strings/html/cs.json rename to dashboard-ui/strings/cs.json diff --git a/dashboard-ui/strings/html/da.json b/dashboard-ui/strings/da.json similarity index 100% rename from dashboard-ui/strings/html/da.json rename to dashboard-ui/strings/da.json diff --git a/dashboard-ui/strings/html/de.json b/dashboard-ui/strings/de.json similarity index 100% rename from dashboard-ui/strings/html/de.json rename to dashboard-ui/strings/de.json diff --git a/dashboard-ui/strings/html/el.json b/dashboard-ui/strings/el.json similarity index 100% rename from dashboard-ui/strings/html/el.json rename to dashboard-ui/strings/el.json diff --git a/dashboard-ui/strings/html/en-GB.json b/dashboard-ui/strings/en-GB.json similarity index 100% rename from dashboard-ui/strings/html/en-GB.json rename to dashboard-ui/strings/en-GB.json diff --git a/dashboard-ui/strings/html/en-US.json b/dashboard-ui/strings/en-US.json similarity index 61% rename from dashboard-ui/strings/html/en-US.json rename to dashboard-ui/strings/en-US.json index 9a03561a3a..c600fed901 100644 --- a/dashboard-ui/strings/html/en-US.json +++ b/dashboard-ui/strings/en-US.json @@ -1,4 +1,4 @@ -{ +{ "LabelExit": "Exit", "LabelVisitCommunity": "Visit Community", "LabelGithub": "Github", @@ -26,7 +26,7 @@ "AWindowsServiceHasBeenInstalled": "A Windows Service has been installed.", "WindowsServiceIntro1": "Emby Server normally runs as a desktop application with a tray icon, but if you prefer to run it as a background service, it can be started from the windows services control panel instead.", "WindowsServiceIntro2": "If using the windows service, please note that it cannot be run at the same time as the tray icon, so you'll need to exit the tray in order to run the service. The service will also need to be configured with administrative privileges via the control panel. When running as a service, you will need to ensure that the service account has access to your media folders.", - "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish<\/b> to view the Server Dashboard<\/b>.", + "WizardCompleted": "That's all we need for now. Emby has begun collecting information about your media library. Check out some of our apps, and then click Finish to view the Server Dashboard.", "LabelConfigureSettings": "Configure settings", "LabelEnableVideoImageExtraction": "Enable video image extraction", "VideoImageExtractionHelp": "For videos that don't already have images, and that we're unable to find internet images for. This will add some additional time to the initial library scan but will result in a more pleasing presentation.", @@ -141,7 +141,7 @@ "OptionSmartSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.", "OptionOnlyForcedSubtitles": "Only forced subtitles", "OptionAlwaysPlaySubtitles": "Always play subtitles", - "OptionNoSubtitles": "No Subtitles", + "OptionNoSubtitles": "None", "OptionDefaultSubtitlesHelp": "Subtitles are loaded based on the default and forced flags in the embedded metadata. Language preferences are considered when multiple options are available.", "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.", "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.", @@ -165,8 +165,8 @@ "LabelSelectUsers": "Select users:", "ButtonUpload": "Upload", "HeaderUploadNewImage": "Upload New Image", - "LabelDropImageHere": "Drop image here", - "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG\/PNG only.", + "LabelDropImageHere": "Drop Image Here", + "ImageUploadAspectRatioHelp": "1:1 Aspect Ratio Recommended. JPG/PNG only.", "MessageNothingHere": "Nothing here.", "MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.", "TabSuggested": "Suggested", @@ -200,8 +200,8 @@ "TabAlbumArtists": "Album Artists", "TabMusicVideos": "Music Videos", "ButtonSort": "Sort", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", + "HeaderSortBy": "Sort By:", + "HeaderSortOrder": "Sort Order:", "OptionPlayed": "Played", "OptionUnplayed": "Unplayed", "OptionAscending": "Ascending", @@ -285,7 +285,7 @@ "OptionMissingImdbId": "Missing IMDb Id", "OptionMissingTvdbId": "Missing TheTVDB Id", "OptionMissingOverview": "Missing Overview", - "OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched", + "OptionFileMetadataYearMismatch": "File/Metadata Years Mismatched", "TabGeneral": "General", "TitleSupport": "Support", "TabLog": "Log", @@ -327,7 +327,7 @@ "ButtonGroupVersions": "Group Versions", "ButtonAddToCollection": "Add to Collection", "PismoMessage": "Utilizing Pismo File Mount through a donated license.", - "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.", + "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java/C# converters through a donated license.", "HeaderCredits": "Credits", "PleaseSupportOtherProduces": "Please support other free products we utilize:", "VersionNumber": "Version {0}", @@ -378,7 +378,7 @@ "ButtonAutoScroll": "Auto-scroll", "LabelImageSavingConvention": "Image saving convention:", "LabelImageSavingConventionHelp": "Emby recognizes images from most major media applications. Choosing your downloading convention is useful if you also use other products.", - "OptionImageSavingCompatible": "Compatible - Emby\/Kodi\/Plex", + "OptionImageSavingCompatible": "Compatible - Emby/Kodi/Plex", "OptionImageSavingStandard": "Standard - MB2", "ButtonSignIn": "Sign In", "TitleSignIn": "Sign In", @@ -397,7 +397,7 @@ "TabFavorites": "Favorites", "TabMyLibrary": "My Library", "ButtonCancelRecording": "Cancel Recording", - "HeaderPrePostPadding": "Pre\/Post Padding", + "HeaderPrePostPadding": "Pre/Post Padding", "LabelPrePaddingMinutes": "Pre-padding minutes:", "OptionPrePaddingRequired": "Pre-padding is required in order to record.", "LabelPostPaddingMinutes": "Post-padding minutes:", @@ -425,6 +425,7 @@ "ButtonRemove": "Remove", "OptionRecordSeries": "Record Series", "HeaderDetails": "Details", + "ButtonCancelRecording": "Cancel Recording", "TitleLiveTV": "Live TV", "LabelNumberOfGuideDays": "Number of days of guide data to download:", "LabelNumberOfGuideDaysHelp": "Downloading more days worth of guide data provides the ability to schedule out further in advance and view more listings, but it will also take longer to download. Auto will choose based on the number of channels.", @@ -518,6 +519,7 @@ "OptionMaxQualityTranscoding": "Max quality", "OptionEnableDebugTranscodingLogging": "Enable debug transcoding logging", "OptionEnableDebugTranscodingLoggingHelp": "This will create very large log files and is only recommended as needed for troubleshooting purposes.", + "OptionEnableDebugTranscodingLogging": "Enable debug transcoding logging", "EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.", "HeaderAddTitles": "Add Titles", "LabelEnableDlnaPlayTo": "Enable DLNA Play To", @@ -580,6 +582,7 @@ "HeaderName": "Name", "HeaderDate": "Date", "HeaderSource": "Source", + "HeaderStatus": "Status", "HeaderDestination": "Destination", "HeaderProgram": "Program", "HeaderClients": "Clients", @@ -588,8 +591,8 @@ "LabelSkipped": "Skipped", "HeaderEpisodeOrganization": "Episode Organization", "LabelSeries": "Series:", - "LabelSeasonNumber": "Season number", - "LabelEpisodeNumber": "Episode number", + "LabelSeasonNumber": "Season number:", + "LabelEpisodeNumber": "Episode number:", "LabelEndingEpisodeNumber": "Ending episode number:", "LabelEndingEpisodeNumberHelp": "Only required for multi-episode files", "OptionRememberOrganizeCorrection": "Save and apply this correction to future files with similiar names", @@ -671,7 +674,7 @@ "TitleChannels": "Channels", "HeaderServerSettings": "Server Settings", "LabelWeatherDisplayLocation": "Weather display location:", - "LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country", + "LabelWeatherDisplayLocationHelp": "US zip code / City, State, Country / City, Country", "LabelWeatherDisplayUnit": "Weather display unit:", "OptionCelsius": "Celsius", "OptionFahrenheit": "Fahrenheit", @@ -741,6 +744,7 @@ "ButtonPreviousTrack": "Previous track", "ButtonNextTrack": "Next track", "ButtonStop": "Stop", + "ButtonPlay": "Play", "ButtonPause": "Pause", "ButtonNext": "Next", "ButtonPrevious": "Previous", @@ -751,8 +755,10 @@ "ButtonVolumeDown": "Volume down", "ButtonMute": "Mute", "HeaderLatestMedia": "Latest Media", + "OptionNoSubtitles": "No Subtitles", "OptionSpecialFeatures": "Special Features", "HeaderCollections": "Collections", + "HeaderChannels": "Channels", "LabelProfileCodecsHelp": "Separated by comma. This can be left empty to apply to all codecs.", "LabelProfileContainersHelp": "Separated by comma. This can be left empty to apply to all containers.", "HeaderResponseProfile": "Response Profile", @@ -766,9 +772,9 @@ "HeaderDirectPlayProfile": "Direct Play Profile", "HeaderTranscodingProfile": "Transcoding Profile", "HeaderCodecProfile": "Codec Profile", - "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", + "HeaderCodecProfileHelp": "Define additional conditions that must be met in order for a codec to be direct played.", "HeaderContainerProfile": "Container Profile", - "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", + "HeaderContainerProfileHelp": "Define additional conditions that must be met in order for a file to be direct played.", "OptionProfileVideo": "Video", "OptionProfileAudio": "Audio", "OptionProfileVideoAudio": "Video Audio", @@ -826,6 +832,8 @@ "HeaderIdentificationCriteriaHelp": "Enter at least one identification criteria.", "HeaderDirectPlayProfileHelp": "Add direct play profiles to indicate which formats the device can handle natively.", "HeaderTranscodingProfileHelp": "Add transcoding profiles to indicate which formats should be used when transcoding is required.", + "HeaderContainerProfileHelp": "Container profiles indicate the limitations of a device when playing specific formats. If a limitation applies then the media will be transcoded, even if the format is configured for direct play.", + "HeaderCodecProfileHelp": "Codec profiles indicate the limitations of a device when playing specific codecs. If a limitation applies then the media will be transcoded, even if the codec is configured for direct play.", "HeaderResponseProfileHelp": "Response profiles provide a way to customize information sent to the device when playing certain kinds of media.", "LabelXDlnaCap": "X-Dlna cap:", "LabelXDlnaCapHelp": "Determines the content of the X_DLNACAP element in the urn:schemas-dlna-org:device-1-0 namespace.", @@ -862,6 +870,7 @@ "HeaderSendMessage": "Send Message", "ButtonSend": "Send", "LabelMessageText": "Message text:", + "LabelMessageTitle": "Message title:", "MessageNoAvailablePlugins": "No available plugins.", "LabelDisplayPluginsFor": "Display plugins for:", "PluginTabAppClassic": "Emby Classic", @@ -1024,6 +1033,7 @@ "HeaderUser": "User", "HeaderDateIssued": "Date Issued", "LabelChapterName": "Chapter {0}", + "ButtonEnterSupporterKey": "Enter Emby Premiere key", "HeaderHttpHeaders": "Http Headers", "HeaderIdentificationHeader": "Identification Header", "LabelValue": "Value:", @@ -1063,15 +1073,18 @@ "LabelSource": "Source:", "OptionAll": "All", "LabelImage": "Image:", + "ButtonUpload": "Upload", "ButtonBrowseImages": "Browse Images", "HeaderImages": "Images", "HeaderBackdrops": "Backdrops", "HeaderScreenshots": "Screenshots", - "HeaderAddUpdateImage": "Add\/Update Image", - "LabelJpgPngOnly": "JPG\/PNG only", + "HeaderAddUpdateImage": "Add/Update Image", + "LabelDropImageHere": "Drop image here", + "LabelJpgPngOnly": "JPG/PNG only", "LabelImageType": "Image type:", "OptionPrimary": "Primary", "OptionArt": "Art", + "OptionBackdrop": "Backdrop", "OptionBox": "Box", "OptionBoxRear": "Box rear", "OptionDisc": "Disc", @@ -1198,11 +1211,13 @@ "LabelAirsBeforeSeason": "Airs before season:", "LabelAirsAfterSeason": "Airs after season:", "LabelAirsBeforeEpisode": "Airs before episode:", + "HeaderDisplaySettings": "Display Settings", "LabelTreatImageAs": "Treat image as:", "LabelDisplayOrder": "Display order:", "LabelDisplaySpecialsWithinSeasons": "Display specials within seasons they aired in", "HeaderCountries": "Countries", "HeaderGenres": "Genres", + "HeaderPeople": "People", "HeaderPlotKeywords": "Plot Keywords", "HeaderStudios": "Studios", "HeaderTags": "Tags", @@ -1297,6 +1312,7 @@ "TitleDevices": "Devices", "TabCameraUpload": "Camera Upload", "TabDevices": "Devices", + "TitleDevices": "Devices", "HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.", "MessageNoDevicesSupportCameraUpload": "You currently don't have any devices that support camera upload.", "LabelCameraUploadPath": "Camera upload path:", @@ -1410,7 +1426,7 @@ "ButtonSignInWithConnect": "Sign in with Emby Connect", "ButtonConnect": "Connect", "LabelServerHost": "Host:", - "LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com", + "LabelServerHostHelp": "192.168.1.100 or https://myserver.com", "LabelServerPort": "Port:", "HeaderNewServer": "New Server", "ButtonChangeServer": "Change Server", @@ -1529,5 +1545,978 @@ "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download all images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported." -} \ No newline at end of file + "SettingsSaved": "Settings saved.", + "OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "Users": "Users", + "Delete": "Delete", + "Administrator": "Administrator", + "Password": "Password", + "DeleteImage": "Delete Image", + "MessageThankYouForSupporting": "Thank you for supporting Emby.", + "MessagePleaseSupportProject": "Please support Emby.", + "DeleteImageConfirmation": "Are you sure you wish to delete this image?", + "FileReadCancelled": "The file read has been canceled.", + "FileNotFound": "File not found.", + "FileReadError": "An error occurred while reading the file.", + "DeleteUser": "Delete User", + "DeleteUserConfirmation": "Are you sure you wish to delete this user?", + "PasswordResetHeader": "Reset Password", + "PasswordResetComplete": "The password has been reset.", + "PinCodeResetComplete": "The pin code has been reset.", + "PasswordResetConfirmation": "Are you sure you wish to reset the password?", + "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", + "HeaderPinCodeReset": "Reset Pin Code", + "PasswordSaved": "Password saved.", + "PasswordMatchError": "Password and password confirmation must match.", + "OptionRelease": "Official Release", + "OptionBeta": "Beta", + "OptionDev": "Dev (Unstable)", + "UninstallPluginHeader": "Uninstall Plugin", + "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", + "NoPluginConfigurationMessage": "This plugin has nothing to configure.", + "NoPluginsInstalledMessage": "You have no plugins installed.", + "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", + "HeaderNewApiKey": "New Api Key", + "LabelAppName": "App name", + "LabelAppNameExample": "Example: Sickbeard, NzbDrone", + "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", + "MessageKeyEmailedTo": "Key emailed to {0}.", + "MessageKeysLinked": "Keys linked.", + "HeaderConfirmation": "Confirmation", + "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", + "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", + "HeaderSupportTheTeam": "Support the Emby Team", + "TextEnjoyBonusFeatures": "Enjoy Bonus Features", + "TitleLiveTV": "Live TV", + "ButtonCancelSyncJob": "Cancel sync", + "HeaderAddTag": "Add Tag", + "LabelTag": "Tag:", + "ButtonSelectView": "Select view", + "TitleSync": "Sync", + "OptionAutomatic": "Auto", + "HeaderSelectDate": "Select Date", + "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", + "ButtonIdentify": "Identify", + "HeaderIdentifyItem": "Identify Item", + "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", + "LabelFromHelp": "Example: {0} (on the server)", + "HeaderMyMedia": "My Media", + "ButtonRemoveFromCollection": "Remove from Collection", + "LabelAutomaticUpdateLevel": "Automatic update level:", + "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", + "TitleNotifications": "Notifications", + "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", + "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", + "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", + "HeaderConfirmRemoveUser": "Remove User", + "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", + "ValueTimeLimitSingleHour": "Time limit: 1 hour", + "ValueTimeLimitMultiHour": "Time limit: {0} hours", + "HeaderUsers": "Users", + "PluginCategoryGeneral": "General", + "PluginCategoryContentProvider": "Content Providers", + "PluginCategoryScreenSaver": "Screen Savers", + "PluginCategoryTheme": "Themes", + "PluginCategorySync": "Sync", + "PluginCategorySocialIntegration": "Social Networks", + "PluginCategoryNotifications": "Notifications", + "PluginCategoryMetadata": "Metadata", + "PluginCategoryLiveTV": "Live TV", + "PluginCategoryChannel": "Channels", + "HeaderSearch": "Search", + "ValueDateCreated": "Date created: {0}", + "LabelArtist": "Artist", + "LabelMovie": "Movie", + "LabelMusicVideo": "Music Video", + "LabelEpisode": "Episode", + "LabelSeries": "Series", + "LabelStopping": "Stopping", + "LabelCancelled": "(cancelled)", + "LabelFailed": "(failed)", + "ButtonHelp": "Help", + "ButtonSave": "Save", + "ButtonDownload": "Download", + "SyncJobStatusQueued": "Queued", + "SyncJobStatusConverting": "Converting", + "SyncJobStatusFailed": "Failed", + "SyncJobStatusCancelled": "Cancelled", + "SyncJobStatusCompleted": "Synced", + "SyncJobStatusReadyToTransfer": "Ready to Transfer", + "SyncJobStatusTransferring": "Transferring", + "SyncJobStatusCompletedWithError": "Synced with errors", + "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", + "LabelCollection": "Collection", + "HeaderAddToCollection": "Add to Collection", + "HeaderNewCollection": "New Collection", + "NewCollectionNameExample": "Example: Star Wars Collection", + "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", + "LabelSelectCollection": "Select collection:", + "HeaderDevices": "Devices", + "ButtonScheduledTasks": "Scheduled tasks", + "MessageItemsAdded": "Items added", + "ButtonAddToCollection": "Add to collection", + "HeaderSelectCertificatePath": "Select Certificate Path", + "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", + "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", + "HeaderWelcomeToProjectWebClient": "Welcome to Emby", + "ButtonTakeTheTour": "Take the tour", + "HeaderWelcomeBack": "Welcome back!", + "TitlePlugins": "Plugins", + "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", + "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", + "HeaderLibraryAccess": "Library Access", + "HeaderChannelAccess": "Channel Access", + "HeaderDeviceAccess": "Device Access", + "HeaderSelectDevices": "Select Devices", + "ButtonCancelItem": "Cancel item", + "ButtonQueueForRetry": "Queue for retry", + "ButtonReenable": "Re-enable", + "ButtonLearnMore": "Learn more", + "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", + "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", + "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", + "HeaderDeleteTaskTrigger": "Delete Task Trigger", + "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", + "MessageNoPluginsInstalled": "You have no plugins installed.", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", + "LabelVersionInstalled": "{0} installed", + "LabelNumberReviews": "{0} Reviews", + "LabelFree": "Free", + "HeaderTo": "To", + "HeaderPlaybackError": "Playback Error", + "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", + "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", + "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", + "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", + "HeaderSelectAudio": "Select Audio", + "HeaderSelectSubtitles": "Select Subtitles", + "ButtonMarkForRemoval": "Remove from device", + "ButtonUnmarkForRemoval": "Cancel removal from device", + "LabelDefaultStream": "(Default)", + "LabelForcedStream": "(Forced)", + "LabelDefaultForcedStream": "(Default/Forced)", + "LabelUnknownLanguage": "Unknown language", + "HeaderConfirmation": "Confirmation", + "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", + "ButtonMute": "Mute", + "ButtonUnmute": "Unmute", + "ButtonStop": "Stop", + "ButtonNextTrack": "Next Track", + "ButtonPause": "Pause", + "ButtonPlay": "Play", + "ButtonEdit": "Edit", + "ButtonQueue": "Queue", + "ButtonPlayTrailer": "Play trailer", + "ButtonPlaylist": "Playlist", + "ButtonPreviousTrack": "Previous Track", + "LabelEnabled": "Enabled", + "LabelDisabled": "Disabled", + "ButtonMoreInformation": "More Information", + "LabelNoUnreadNotifications": "No unread notifications.", + "ButtonViewNotifications": "View notifications", + "ButtonMarkTheseRead": "Mark these read", + "ButtonClose": "Close", + "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", + "MessageInvalidUser": "Invalid username or password. Please try again.", + "HeaderLoginFailure": "Login Failure", + "HeaderAllRecordings": "All Recordings", + "RecommendationBecauseYouLike": "Because you like {0}", + "RecommendationBecauseYouWatched": "Because you watched {0}", + "RecommendationDirectedBy": "Directed by {0}", + "RecommendationStarring": "Starring {0}", + "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", + "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", + "MessageRecordingCancelled": "Recording cancelled.", + "MessageRecordingScheduled": "Recording scheduled.", + "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", + "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", + "MessageSeriesCancelled": "Series cancelled.", + "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", + "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", + "MessageRecordingDeleted": "Recording deleted.", + "ButonCancelRecording": "Cancel Recording", + "MessageRecordingSaved": "Recording saved.", + "OptionSunday": "Sunday", + "OptionMonday": "Monday", + "OptionTuesday": "Tuesday", + "OptionWednesday": "Wednesday", + "OptionThursday": "Thursday", + "OptionFriday": "Friday", + "OptionSaturday": "Saturday", + "OptionEveryday": "Every day", + "OptionWeekend": "Weekends", + "OptionWeekday": "Weekdays", + "HeaderConfirmDeletion": "Confirm Deletion", + "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", + "LiveTvUpdateAvailable": "(Update available)", + "LabelVersionUpToDate": "Up to date!", + "ButtonResetTuner": "Reset tuner", + "HeaderResetTuner": "Reset Tuner", + "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", + "ButtonCancelSeries": "Cancel Series", + "HeaderSeriesRecordings": "Series Recordings", + "LabelAnytime": "Any time", + "StatusRecording": "Recording", + "StatusWatching": "Watching", + "StatusRecordingProgram": "Recording {0}", + "StatusWatchingProgram": "Watching {0}", + "HeaderSplitMedia": "Split Media Apart", + "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", + "HeaderError": "Error", + "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", + "MessagePleaseSelectOneItem": "Please select at least one item.", + "MessagePleaseSelectTwoItems": "Please select at least two items.", + "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", + "HeaderResume": "Resume", + "HeaderMyViews": "My Views", + "HeaderLibraryFolders": "Media Folders", + "HeaderLatestMedia": "Latest Media", + "ButtonMoreItems": "More...", + "ButtonMore": "More", + "HeaderFavoriteMovies": "Favorite Movies", + "HeaderFavoriteShows": "Favorite Shows", + "HeaderFavoriteEpisodes": "Favorite Episodes", + "HeaderFavoriteGames": "Favorite Games", + "HeaderRatingsDownloads": "Rating / Downloads", + "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", + "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", + "HeaderSelectServerCachePath": "Select Server Cache Path", + "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", + "HeaderSelectImagesByNamePath": "Select Images By Name Path", + "HeaderSelectMetadataPath": "Select Metadata Path", + "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", + "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", + "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", + "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", + "HeaderSelectChannelDownloadPath": "Select Channel Download Path", + "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", + "OptionNewCollection": "New...", + "ButtonAdd": "Add", + "ButtonRemove": "Remove", + "LabelChapterDownloaders": "Chapter downloaders:", + "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", + "HeaderFavoriteAlbums": "Favorite Albums", + "HeaderLatestChannelMedia": "Latest Channel Items", + "ButtonOrganizeFile": "Organize File", + "ButtonDeleteFile": "Delete File", + "HeaderOrganizeFile": "Organize File", + "HeaderDeleteFile": "Delete File", + "StatusSkipped": "Skipped", + "StatusFailed": "Failed", + "StatusSuccess": "Success", + "MessageFileWillBeDeleted": "The following file will be deleted:", + "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", + "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", + "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", + "MessageDestinationTo": "to:", + "HeaderSelectWatchFolder": "Select Watch Folder", + "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", + "OrganizePatternResult": "Result: {0}", + "AutoOrganizeError": "Error Organizing File", + "FileOrganizeManually": "Organize File", + "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", + "HeaderRestart": "Restart", + "HeaderShutdown": "Shutdown", + "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", + "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", + "ButtonUpdateNow": "Update Now", + "ValueItemCount": "{0} item", + "ValueItemCountPlural": "{0} items", + "NewVersionOfSomethingAvailable": "A new version of {0} is available!", + "VersionXIsAvailableForDownload": "Version {0} is now available for download.", + "LabelVersionNumber": "Version {0}", + "LabelPlayMethodTranscoding": "Transcoding", + "LabelPlayMethodDirectStream": "Direct Streaming", + "LabelPlayMethodDirectPlay": "Direct Playing", + "LabelAudioCodec": "Audio: {0}", + "LabelVideoCodec": "Video: {0}", + "LabelLocalAccessUrl": "Local access: {0}", + "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelRunningOnPort": "Running on http port {0}.", + "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", + "HeaderLatestFromChannel": "Latest from {0}", + "ButtonDownload": "Download", + "LabelUnknownLanaguage": "Unknown language", + "HeaderCurrentSubtitles": "Current Subtitles", + "MessageDownloadQueued": "The download has been queued.", + "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", + "ButtonRemoteControl": "Remote Control", + "HeaderLatestTvRecordings": "Latest Recordings", + "ButtonOk": "Ok", + "ButtonCancel": "Cancel", + "ButtonRefresh": "Refresh", + "LabelCurrentPath": "Current path:", + "HeaderSelectMediaPath": "Select Media Path", + "HeaderSelectPath": "Select Path", + "ButtonNetwork": "Network", + "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", + "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", + "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", + "HeaderMenu": "Menu", + "ButtonOpen": "Open", + "ButtonOpenInNewTab": "Open in new tab", + "ButtonShuffle": "Shuffle", + "ButtonInstantMix": "Instant mix", + "ButtonResume": "Resume", + "HeaderScenes": "Scenes", + "HeaderAudioTracks": "Audio Tracks", + "HeaderLibraries": "Libraries", + "LabelUnknownLanguage": "Unknown language", + "HeaderSubtitles": "Subtitles", + "HeaderVideoQuality": "Video Quality", + "MessageErrorPlayingVideo": "There was an error playing the video.", + "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", + "ButtonHome": "Home", + "ButtonDashboard": "Dashboard", + "ButtonReports": "Reports", + "ButtonMetadataManager": "Metadata Manager", + "HeaderTime": "Time", + "HeaderName": "Name", + "HeaderAlbum": "Album", + "HeaderAlbumArtist": "Album Artist", + "HeaderArtist": "Artist", + "LabelAddedOnDate": "Added {0}", + "ButtonStart": "Start", + "HeaderChannels": "Channels", + "HeaderMediaFolders": "Media Folders", + "HeaderBlockItemsWithNoRating": "Block content with no rating information:", + "OptionBlockOthers": "Others", + "OptionBlockTvShows": "TV Shows", + "OptionBlockTrailers": "Trailers", + "OptionBlockMusic": "Music", + "OptionBlockMovies": "Movies", + "OptionBlockBooks": "Books", + "OptionBlockGames": "Games", + "OptionBlockLiveTvPrograms": "Live TV Programs", + "OptionBlockLiveTvChannels": "Live TV Channels", + "OptionBlockChannelContent": "Internet Channel Content", + "ButtonRevoke": "Revoke", + "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", + "HeaderConfirmRevokeApiKey": "Revoke Api Key", + "ValueContainer": "Container: {0}", + "ValueAudioCodec": "Audio Codec: {0}", + "ValueVideoCodec": "Video Codec: {0}", + "ValueCodec": "Codec: {0}", + "ValueConditions": "Conditions: {0}", + "LabelAll": "All", + "HeaderDeleteImage": "Delete Image", + "DeleteImageConfirmation": "Are you sure you wish to delete this image?", + "MessageFileNotFound": "File not found.", + "MessageFileReadError": "An error occurred reading this file.", + "ButtonNextPage": "Next Page", + "ButtonPreviousPage": "Previous Page", + "ButtonMoveLeft": "Move left", + "ButtonMoveRight": "Move right", + "ButtonBrowseOnlineImages": "Browse online images", + "HeaderDeleteItem": "Delete Item", + "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", + "HeaderDeleteItems": "Delete Items", + "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", + "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", + "MessageValueNotCorrect": "The value entered is not correct. Please try again.", + "MessageItemSaved": "Item saved.", + "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", + "OptionEnded": "Ended", + "OptionContinuing": "Continuing", + "OptionOff": "Off", + "OptionOn": "On", + "ButtonSettings": "Settings", + "ButtonUninstall": "Uninstall", + "HeaderEnabledFields": "Enabled Fields", + "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", + "HeaderLiveTV": "Live TV", + "HeaderMediaFolders": "Media Folders", + "MissingLocalTrailer": "Missing local trailer.", + "MissingPrimaryImage": "Missing primary image.", + "MissingBackdropImage": "Missing backdrop image.", + "MissingLogoImage": "Missing logo image.", + "MissingEpisode": "Missing episode.", + "OptionScreenshots": "Screenshots", + "OptionBackdrops": "Backdrops", + "OptionImages": "Images", + "OptionKeywords": "Keywords", + "OptionTags": "Tags", + "OptionStudios": "Studios", + "OptionName": "Name", + "OptionOverview": "Overview", + "OptionGenres": "Genres", + "OptionParentalRating": "Parental Rating", + "OptionPeople": "People", + "OptionRuntime": "Runtime", + "OptionProductionLocations": "Production Locations", + "OptionBirthLocation": "Birth Location", + "LabelAllChannels": "All channels", + "LabelLiveProgram": "LIVE", + "LabelNewProgram": "NEW", + "LabelPremiereProgram": "PREMIERE", + "LabelHDProgram": "HD", + "HeaderChangeFolderType": "Change Content Type", + "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", + "HeaderAlert": "Alert", + "MessagePleaseRestart": "Please restart to finish updating.", + "ButtonRestart": "Restart", + "ButtonRefresh": "Refresh", + "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", + "ButtonHide": "Hide", + "MessageSettingsSaved": "Settings saved.", + "ButtonSignOut": "Sign Out", + "ButtonMyProfile": "My Profile", + "ButtonMyPreferences": "My Preferences", + "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", + "LabelInstallingPackage": "Installing {0}", + "LabelPackageInstallCompleted": "{0} installation completed.", + "LabelPackageInstallFailed": "{0} installation failed.", + "LabelPackageInstallCancelled": "{0} installation cancelled.", + "TabServer": "Server", + "TabUsers": "Users", + "TabLibrary": "Library", + "TabMetadata": "Metadata", + "TabDLNA": "DLNA", + "TabLiveTV": "Live TV", + "TabAutoOrganize": "Auto-Organize", + "TabPlugins": "Plugins", + "TabAdvanced": "Advanced", + "TabHelp": "Help", + "TabScheduledTasks": "Scheduled Tasks", + "ButtonFullscreen": "Fullscreen", + "ButtonMute": "Mute", + "ButtonUnmute": "Unmute", + "ButtonAudioTracks": "Audio Tracks", + "ButtonSubtitles": "Subtitles", + "ButtonScenes": "Scenes", + "ButtonQuality": "Quality", + "HeaderNotifications": "Notifications", + "HeaderSelectPlayer": "Select Player", + "ButtonSelect": "Select", + "ButtonNew": "New", + "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", + "HeaderVideoError": "Video Error", + "ButtonAddToPlaylist": "Add to playlist", + "HeaderAddToPlaylist": "Add to Playlist", + "LabelName": "Name:", + "ButtonSubmit": "Submit", + "LabelSelectPlaylist": "Playlist:", + "OptionNewPlaylist": "New playlist...", + "MessageAddedToPlaylistSuccess": "Ok", + "ButtonView": "View", + "ButtonViewSeriesRecording": "View series recording", + "ValueOriginalAirDate": "Original air date: {0}", + "ButtonRemoveFromPlaylist": "Remove from playlist", + "HeaderSpecials": "Specials", + "HeaderTrailers": "Trailers", + "HeaderAudio": "Audio", + "HeaderResolution": "Resolution", + "HeaderVideo": "Video", + "HeaderRuntime": "Runtime", + "HeaderCommunityRating": "Community rating", + "HeaderPasswordReset": "Password Reset", + "HeaderParentalRating": "Parental rating", + "HeaderReleaseDate": "Release date", + "HeaderDateAdded": "Date added", + "HeaderSeries": "Series", + "HeaderSeason": "Season", + "HeaderSeasonNumber": "Season number", + "HeaderNetwork": "Network", + "HeaderYear": "Year", + "HeaderGameSystem": "Game system", + "HeaderPlayers": "Players", + "HeaderEmbeddedImage": "Embedded image", + "HeaderTrack": "Track", + "HeaderDisc": "Disc", + "OptionMovies": "Movies", + "OptionCollections": "Collections", + "OptionSeries": "Series", + "OptionSeasons": "Seasons", + "OptionEpisodes": "Episodes", + "OptionGames": "Games", + "OptionGameSystems": "Game systems", + "OptionMusicArtists": "Music artists", + "OptionMusicAlbums": "Music albums", + "OptionMusicVideos": "Music videos", + "OptionSongs": "Songs", + "OptionHomeVideos": "Home videos", + "OptionBooks": "Books", + "OptionAdultVideos": "Adult videos", + "ButtonUp": "Up", + "ButtonDown": "Down", + "LabelMetadataReaders": "Metadata readers:", + "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", + "LabelMetadataDownloaders": "Metadata downloaders:", + "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", + "LabelMetadataSavers": "Metadata savers:", + "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", + "LabelImageFetchers": "Image fetchers:", + "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", + "ButtonQueueAllFromHere": "Queue all from here", + "ButtonPlayAllFromHere": "Play all from here", + "LabelDynamicExternalId": "{0} Id:", + "HeaderIdentify": "Identify Item", + "PersonTypePerson": "Person", + "LabelTitleDisplayOrder": "Title display order:", + "OptionSortName": "Sort name", + "OptionReleaseDate": "Release date", + "LabelSeasonNumber": "Season number:", + "LabelDiscNumber": "Disc number", + "LabelParentNumber": "Parent number", + "LabelEpisodeNumber": "Episode number:", + "LabelTrackNumber": "Track number:", + "LabelNumber": "Number:", + "LabelReleaseDate": "Release date:", + "LabelEndDate": "End date:", + "LabelYear": "Year:", + "LabelDateOfBirth": "Date of birth:", + "LabelBirthYear": "Birth year:", + "LabelBirthDate": "Birth date:", + "LabelDeathDate": "Death date:", + "HeaderRemoveMediaLocation": "Remove Media Location", + "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", + "HeaderRenameMediaFolder": "Rename Media Folder", + "LabelNewName": "New name:", + "HeaderAddMediaFolder": "Add Media Folder", + "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", + "HeaderRemoveMediaFolder": "Remove Media Folder", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", + "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", + "ButtonRename": "Rename", + "ButtonChangeContentType": "Change content type", + "ButtonRemove": "Remove", + "HeaderMediaLocations": "Media Locations", + "LabelContentTypeValue": "Content type: {0}", + "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", + "FolderTypeUnset": "Unset (mixed content)", + "FolderTypeMovies": "Movies", + "FolderTypeMusic": "Music", + "FolderTypeAdultVideos": "Adult videos", + "FolderTypePhotos": "Photos", + "FolderTypeMusicVideos": "Music videos", + "FolderTypeHomeVideos": "Home videos", + "FolderTypeGames": "Games", + "FolderTypeBooks": "Books", + "FolderTypeTvShows": "TV", + "TabMovies": "Movies", + "TabSeries": "Series", + "TabEpisodes": "Episodes", + "TabTrailers": "Trailers", + "TabGames": "Games", + "TabAlbums": "Albums", + "TabSongs": "Songs", + "TabMusicVideos": "Music Videos", + "BirthPlaceValue": "Birth place: {0}", + "DeathDateValue": "Died: {0}", + "BirthDateValue": "Born: {0}", + "HeaderLatestReviews": "Latest Reviews", + "HeaderPluginInstallation": "Plugin Installation", + "MessageAlreadyInstalled": "This version is already installed.", + "ValueReviewCount": "{0} Reviews", + "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", + "MessageTrialExpired": "The trial period for this feature has expired", + "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", + "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", + "ValuePriceUSD": "Price: {0} (USD)", + "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", + "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", + "ButtonDelete": "Delete", + "HeaderEmbyAccountAdded": "Emby Account Added", + "MessageEmbyAccountAdded": "The Emby account has been added to this user.", + "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.", + "HeaderEmbyAccountRemoved": "Emby Account Removed", + "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", + "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", + "HeaderUnrated": "Unrated", + "ValueDiscNumber": "Disc {0}", + "HeaderUnknownDate": "Unknown Date", + "HeaderUnknownYear": "Unknown Year", + "ValueMinutes": "{0} min", + "ButtonPlayExternalPlayer": "Play with external player", + "HeaderSelectExternalPlayer": "Select External Player", + "HeaderExternalPlayerPlayback": "External Player Playback", + "ButtonImDone": "I'm Done", + "OptionWatched": "Watched", + "OptionUnwatched": "Unwatched", + "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", + "LabelMarkAs": "Mark as:", + "OptionInProgress": "In-Progress", + "LabelResumePoint": "Resume point:", + "ValueOneMovie": "1 movie", + "ValueMovieCount": "{0} movies", + "ValueOneTrailer": "1 trailer", + "ValueTrailerCount": "{0} trailers", + "ValueOneSeries": "1 series", + "ValueSeriesCount": "{0} series", + "ValueOneEpisode": "1 episode", + "ValueEpisodeCount": "{0} episodes", + "ValueOneGame": "1 game", + "ValueGameCount": "{0} games", + "ValueOneAlbum": "1 album", + "ValueAlbumCount": "{0} albums", + "ValueOneSong": "1 song", + "ValueSongCount": "{0} songs", + "ValueOneMusicVideo": "1 music video", + "ValueMusicVideoCount": "{0} music videos", + "HeaderOffline": "Offline", + "HeaderUnaired": "Unaired", + "HeaderMissing": "Missing", + "ButtonWebsite": "Website", + "TooltipFavorite": "Favorite", + "TooltipLike": "Like", + "TooltipDislike": "Dislike", + "TooltipPlayed": "Played", + "ValueSeriesYearToPresent": "{0}-Present", + "ValueAwards": "Awards: {0}", + "ValueBudget": "Budget: {0}", + "ValueRevenue": "Revenue: {0}", + "ValuePremiered": "Premiered {0}", + "ValuePremieres": "Premieres {0}", + "ValueStudio": "Studio: {0}", + "ValueStudios": "Studios: {0}", + "ValueStatus": "Status: {0}", + "ValueSpecialEpisodeName": "Special - {0}", + "LabelLimit": "Limit:", + "ValueLinks": "Links: {0}", + "HeaderPeople": "People", + "HeaderCastAndCrew": "Cast & Crew", + "ValueArtist": "Artist: {0}", + "ValueArtists": "Artists: {0}", + "HeaderTags": "Tags", + "MediaInfoCameraMake": "Camera make", + "MediaInfoCameraModel": "Camera model", + "MediaInfoAltitude": "Altitude", + "MediaInfoAperture": "Aperture", + "MediaInfoExposureTime": "Exposure time", + "MediaInfoFocalLength": "Focal length", + "MediaInfoOrientation": "Orientation", + "MediaInfoIsoSpeedRating": "Iso speed rating", + "MediaInfoLatitude": "Latitude", + "MediaInfoLongitude": "Longitude", + "MediaInfoShutterSpeed": "Shutter speed", + "MediaInfoSoftware": "Software", + "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", + "HeaderPlotKeywords": "Plot Keywords", + "HeaderMovies": "Movies", + "HeaderSeries": "Series", + "HeaderAlbums": "Albums", + "HeaderGames": "Games", + "HeaderBooks": "Books", + "HeaderEpisodes": "Episodes", + "HeaderSeasons": "Seasons", + "HeaderTracks": "Tracks", + "HeaderItems": "Items", + "HeaderOtherItems": "Other Items", + "ButtonFullReview": "Full review", + "ValueAsRole": "as {0}", + "ValueGuestStar": "Guest star", + "MediaInfoSize": "Size", + "MediaInfoPath": "Path", + "MediaInfoFile": "File", + "MediaInfoFormat": "Format", + "MediaInfoContainer": "Container", + "MediaInfoDefault": "Default", + "MediaInfoForced": "Forced", + "MediaInfoExternal": "External", + "MediaInfoTimestamp": "Timestamp", + "MediaInfoPixelFormat": "Pixel format", + "MediaInfoBitDepth": "Bit depth", + "MediaInfoSampleRate": "Sample rate", + "MediaInfoBitrate": "Bitrate", + "MediaInfoChannels": "Channels", + "MediaInfoLayout": "Layout", + "MediaInfoLanguage": "Language", + "MediaInfoCodec": "Codec", + "MediaInfoCodecTag": "Codec tag", + "MediaInfoProfile": "Profile", + "MediaInfoLevel": "Level", + "MediaInfoAspectRatio": "Aspect ratio", + "MediaInfoResolution": "Resolution", + "MediaInfoAnamorphic": "Anamorphic", + "MediaInfoInterlaced": "Interlaced", + "MediaInfoFramerate": "Framerate", + "MediaInfoStreamTypeAudio": "Audio", + "MediaInfoStreamTypeData": "Data", + "MediaInfoStreamTypeVideo": "Video", + "MediaInfoStreamTypeSubtitle": "Subtitle", + "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", + "MediaInfoRefFrames": "Ref frames", + "TabPlayback": "Playback", + "TabNotifications": "Notifications", + "TabExpert": "Expert", + "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", + "HeaderRateAndReview": "Rate and Review", + "HeaderThankYou": "Thank You", + "MessageThankYouForYourReview": "Thank you for your review.", + "LabelYourRating": "Your rating:", + "LabelFullReview": "Full review:", + "LabelShortRatingDescription": "Short rating summary:", + "OptionIRecommendThisItem": "I recommend this item", + "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", + "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", + "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", + "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", + "WebClientTourMetadataManager": "Click edit to open the metadata manager", + "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", + "WebClientTourCollections": "Create movie collections to group box sets together", + "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", + "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", + "WebClientTourUserPreferences3": "Design the web client home page to your liking", + "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", + "WebClientTourMobile1": "The web client works great on smartphones and tablets...", + "WebClientTourMobile2": "and easily controls other devices and Emby apps", + "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", + "MessageEnjoyYourStay": "Enjoy your stay", + "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", + "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", + "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", + "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", + "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", + "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", + "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", + "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", + "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", + "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", + "MessageRefreshQueued": "Refresh queued", + "TabDevices": "Devices", + "TabExtras": "Extras", + "HeaderUploadImage": "Upload Image", + "DeviceLastUsedByUserName": "Last used by {0}", + "HeaderDeleteDevice": "Delete Device", + "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", + "LabelEnableCameraUploadFor": "Enable camera upload for:", + "HeaderSelectUploadPath": "Select Upload Path", + "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", + "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", + "ButtonLibraryAccess": "Library access", + "ButtonParentalControl": "Parental control", + "HeaderInvitationSent": "Invitation Sent", + "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", + "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", + "HeaderConnectionFailure": "Connection Failure", + "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", + "ButtonSelectServer": "Select Server", + "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", + "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", + "DefaultErrorMessage": "There was an error processing the request. Please try again later.", + "ButtonAccept": "Accept", + "ButtonReject": "Reject", + "HeaderForgotPassword": "Forgot Password", + "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", + "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", + "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", + "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", + "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", + "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", + "HeaderInviteGuest": "Invite Guest", + "ButtonLinkMyEmbyAccount": "Link my account now", + "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", + "ButtonSync": "Sync", + "SyncMedia": "Sync Media", + "HeaderCancelSyncJob": "Cancel Sync", + "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", + "TabSync": "Sync", + "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "MessageSyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelQuality": "Quality:", + "HeaderSettings": "Settings", + "OptionAutomaticallySyncNewContent": "Automatically sync new content", + "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", + "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", + "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimit": "Item limit:", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", + "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", + "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", + "SyncJobItemStatusQueued": "Queued", + "SyncJobItemStatusConverting": "Converting", + "SyncJobItemStatusTransferring": "Transferring", + "SyncJobItemStatusSynced": "Synced", + "SyncJobItemStatusFailed": "Failed", + "SyncJobItemStatusRemovedFromDevice": "Removed from device", + "SyncJobItemStatusCancelled": "Cancelled", + "LabelProfile": "Profile:", + "LabelBitrateMbps": "Bitrate (Mbps):", + "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", + "ButtonNewServer": "New Server", + "ButtonSignInWithConnect": "Sign in with Emby Connect", + "HeaderNewServer": "New Server", + "MyDevice": "My Device", + "ButtonRemote": "Remote", + "TabInfo": "Info", + "TabCast": "Cast", + "TabScenes": "Scenes", + "HeaderUnlockApp": "Unlock App", + "HeaderUnlockSync": "Unlock Emby Sync", + "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.", + "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", + "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", + "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", + "ButtonUnlockWithPurchase": "Unlock with Purchase", + "ButtonUnlockPrice": "Unlock {0}", + "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", + "OptionEnableFullscreen": "Enable Fullscreen", + "ButtonServer": "Server", + "HeaderAdmin": "Admin", + "HeaderLibrary": "Library", + "HeaderMedia": "Media", + "ButtonInbox": "Inbox", + "HeaderAdvanced": "Advanced", + "HeaderGroupVersions": "Group Versions", + "HeaderSaySomethingLike": "Say Something Like...", + "ButtonTryAgain": "Try Again", + "HeaderYouSaid": "You Said...", + "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", + "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", + "MessageNoItemsFound": "No items found.", + "ButtonManageServer": "Manage Server", + "ButtonEditSubtitles": "Edit subtitles", + "ButtonPreferences": "Preferences", + "ButtonViewArtist": "View artist", + "ButtonViewAlbum": "View album", + "ButtonEditImages": "Edit images", + "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", + "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", + "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", + "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", + "HeaderShare": "Share", + "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", + "ButtonShare": "Share", + "HeaderConfirm": "Confirm", + "ButtonAdvancedRefresh": "Advanced Refresh", + "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", + "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", + "HeaderDeleteProvider": "Delete Provider", + "HeaderAddProvider": "Add Provider", + "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", + "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", + "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", + "MessageCreateAccountAt": "Create an account at {0}", + "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", + "HeaderTryEmbyPremiere": "Try Emby Premiere", + "ButtonBecomeSupporter": "Get Emby Premiere", + "ButtonClosePlayVideo": "Close and play my media", + "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.", + "OptionEnableDisplayMirroring": "Enable display mirroring", + "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", + "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", + "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", + "HeaderSync": "Sync", + "LabelLocalSyncStatusValue": "Status: {0}", + "MessageSyncStarted": "Sync started", + "OptionPoster": "Poster", + "OptionPosterCard": "Poster card", + "OptionTimeline": "Timeline", + "OptionList": "List", + "OptionThumb": "Thumb", + "OptionThumbCard": "Thumb card", + "OptionBanner": "Banner", + "NoSlideshowContentFound": "No slideshow images were found.", + "OptionPhotoSlideshow": "Photo slideshow", + "OptionBackdropSlideshow": "Backdrop slideshow", + "HeaderTopPlugins": "Top Plugins", + "ButtonRecord": "Record", + "ButtonOther": "Other", + "HeaderSortBy": "Sort By", + "HeaderSortOrder": "Sort Order", + "OptionAscending": "Ascending", + "OptionDescending": "Descending", + "OptionNameSort": "Name", + "OptionTvdbRating": "Tvdb Rating", + "OptionPremiereDate": "Premiere Date", + "OptionImdbRating": "IMDb Rating", + "OptionDatePlayed": "Date Played", + "OptionDateAdded": "Date Added", + "OptionPlayCount": "Play Count", + "ButtonDisconnect": "Disconnect", + "OptionAlbumArtist": "Album Artist", + "OptionArtist": "Artist", + "OptionAlbum": "Album", + "OptionTrackName": "Track Name", + "OptionCommunityRating": "Community Rating", + "ButtonSort": "Sort", + "ButtonMenu": "Menu", + "OptionDefaultSort": "Default", + "ButtonFilter": "Filter", + "OptionCriticRating": "Critic Rating", + "OptionVideoBitrate": "Video Bitrate", + "OptionMetascore": "Metascore", + "OptionRevenue": "Revenue", + "OptionBudget": "Budget", + "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", + "ButtonGuide": "Guide", + "ButtonRecordedTv": "Recorded TV", + "HeaderDisconnectFromPlayer": "Disconnect from Player", + "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", + "ButtonYes": "Yes", + "AddUser": "Add User", + "ButtonNo": "No", + "ButtonRestorePreviousPurchase": "Restore Purchase", + "AlreadyPaid": "Already Paid?", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", + "ButtonForYou": "For You", + "ButtonLibrary": "Library", + "ButtonSearch": "Search", + "ButtonNowPlaying": "Now Playing", + "ButtonViewNewApp": "View new app", + "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", + "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", + "HeaderNextUp": "Next Up", + "HeaderLatestMovies": "Latest Movies", + "HeaderLatestEpisodes": "Latest Episodes", + "EmbyPremiereMonthly": "Emby Premiere Monthly", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderEmailAddress": "E-Mail Address", + "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", + "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", + "TermsOfUse": "Terms of use", + "HeaderTryMultiSelect": "Try Multi-Select", + "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", + "NumLocationsValue": "{0} folders", + "ButtonAddMediaLibrary": "Add Media Library", + "ButtonManageFolders": "Manage folders", + "HeaderTryDragAndDrop": "Try Drag and Drop", + "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", + "HeaderTryMicrosoftEdge": "Try Microsoft Edge", + "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", + "HeaderTryModernBrowser": "Try a Modern Web Browser", + "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", + "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", + "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", + "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", + "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", + "HeaderFavoriteArtists": "Favorite Artists", + "HeaderFavoriteSongs": "Favorite Songs", + "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", + "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", + "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", + "ButtonPlayOneMinute": "Play one minute", + "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", + "HeaderTryPlayback": "Try Playback", + "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", + "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", + "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", + "HeaderMobileSync": "Mobile Sync", + "HeaderCloudSync": "Cloud Sync", + "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", + "HeaderFreeApps": "Free Emby Apps", + "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", + "HeaderCinemaMode": "Cinema Mode", + "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", + "CoverArt": "Cover Art", + "ButtonOff": "Off", + "TitleHardwareAcceleration": "Hardware Acceleration", + "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", + "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", + "ButtonLocalRefresh": "Local refresh", + "ButtonAddMissingData": "Add missing data only", + "ButtonFullRefresh": "Full refresh", + "ValueExample": "1:00 PM", + "ButtonGotIt": "Got It" +} diff --git a/dashboard-ui/strings/html/es-AR.json b/dashboard-ui/strings/es-AR.json similarity index 100% rename from dashboard-ui/strings/html/es-AR.json rename to dashboard-ui/strings/es-AR.json diff --git a/dashboard-ui/strings/html/es-MX.json b/dashboard-ui/strings/es-MX.json similarity index 100% rename from dashboard-ui/strings/html/es-MX.json rename to dashboard-ui/strings/es-MX.json diff --git a/dashboard-ui/strings/html/es.json b/dashboard-ui/strings/es.json similarity index 100% rename from dashboard-ui/strings/html/es.json rename to dashboard-ui/strings/es.json diff --git a/dashboard-ui/strings/html/fi.json b/dashboard-ui/strings/fi.json similarity index 100% rename from dashboard-ui/strings/html/fi.json rename to dashboard-ui/strings/fi.json diff --git a/dashboard-ui/strings/html/fr.json b/dashboard-ui/strings/fr.json similarity index 100% rename from dashboard-ui/strings/html/fr.json rename to dashboard-ui/strings/fr.json diff --git a/dashboard-ui/strings/html/gsw.json b/dashboard-ui/strings/gsw.json similarity index 100% rename from dashboard-ui/strings/html/gsw.json rename to dashboard-ui/strings/gsw.json diff --git a/dashboard-ui/strings/html/he.json b/dashboard-ui/strings/he.json similarity index 100% rename from dashboard-ui/strings/html/he.json rename to dashboard-ui/strings/he.json diff --git a/dashboard-ui/strings/html/hr.json b/dashboard-ui/strings/hr.json similarity index 100% rename from dashboard-ui/strings/html/hr.json rename to dashboard-ui/strings/hr.json diff --git a/dashboard-ui/strings/html/hu.json b/dashboard-ui/strings/hu.json similarity index 100% rename from dashboard-ui/strings/html/hu.json rename to dashboard-ui/strings/hu.json diff --git a/dashboard-ui/strings/html/id.json b/dashboard-ui/strings/id.json similarity index 100% rename from dashboard-ui/strings/html/id.json rename to dashboard-ui/strings/id.json diff --git a/dashboard-ui/strings/html/it.json b/dashboard-ui/strings/it.json similarity index 100% rename from dashboard-ui/strings/html/it.json rename to dashboard-ui/strings/it.json diff --git a/dashboard-ui/strings/javascript/ar.json b/dashboard-ui/strings/javascript/ar.json deleted file mode 100644 index dc49a62709..0000000000 --- a/dashboard-ui/strings/javascript/ar.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.", - "AddUser": "\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645", - "Users": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", - "Delete": "\u062d\u0630\u0641", - "Administrator": "\u0627\u0644\u0645\u0633\u0624\u0648\u0644", - "Password": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631", - "DeleteImage": "\u062d\u0630\u0641 \u0635\u0648\u0631\u0629", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0645\u0646 \u062d\u0630\u0641 \u0647\u0630\u0647 \u0627\u0644\u0635\u0648\u0631\u0629\u061f", - "FileReadCancelled": "\u062a\u0645 \u0627\u0644\u063a\u0627\u0621 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u0644\u0641.", - "FileNotFound": "\u0627\u0644\u0645\u0644\u0641 \u063a\u064a\u0631 \u0645\u0648\u062c\u0648\u062f.", - "FileReadError": "\u062d\u062f\u062b \u062e\u0637\u0623 \u0628\u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0645\u0644\u0641.", - "DeleteUser": "\u062d\u0630\u0641 \u0645\u0633\u062a\u062e\u062f\u0645", - "DeleteUserConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0645\u0646 \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u062d\u0630\u0641 \u0647\u0630\u0627 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645 \u061f", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "\u0644\u0642\u062f \u062a\u0645 \u0627\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0645\u0646 \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0639\u0627\u062f\u0629 \u062a\u0639\u064a\u064a\u0646 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631\u061f", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "\u062a\u0645 \u062d\u0641\u0638 \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631.", - "PasswordMatchError": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u0648\u062a\u0627\u0643\u064a\u062f\u0647\u0627 \u064a\u062c\u0628 \u0627\u0646 \u064a\u062a\u0637\u0627\u0628\u0642\u0627\u0646.", - "OptionRelease": "\u0627\u0644\u0627\u0635\u062f\u0627\u0631 \u0627\u0644\u0631\u0633\u0645\u0649", - "OptionBeta": "\u0628\u064a\u062a\u0627", - "OptionDev": "\u062a\u0637\u0648\u0631\u0649 (\u063a\u064a\u0631 \u0645\u0633\u062a\u0642\u0631)", - "UninstallPluginHeader": "\u0627\u0644\u063a\u0627\u0621 \u0627\u0644\u0645\u0644\u062d\u0642", - "UninstallPluginConfirmation": "\u0647\u0644 \u0627\u0646\u062a \u0645\u062a\u0627\u0643\u062f \u0627\u0646\u0643 \u062a\u0631\u064a\u062f \u0627\u0644\u063a\u0627\u0621 {0} \u061f", - "NoPluginConfigurationMessage": "\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u062d\u0642 \u0644\u064a\u0633 \u0644\u0647 \u0636\u0628\u0637.", - "NoPluginsInstalledMessage": "\u0644\u0627 \u064a\u0648\u062c\u062f \u0644\u062f\u064a\u0643 \u0627\u0649 \u0645\u0644\u0627\u062d\u0642 \u0645\u062b\u0628\u062a\u0629.", - "BrowsePluginCatalogMessage": "\u062a\u0635\u0641\u062d \u0642\u0627\u0626\u0645\u062a\u0646\u0627 \u0644\u0644\u0645\u0644\u062d\u0642 \u0644\u062a\u0631\u0649 \u0627\u0644\u0645\u062a\u0648\u0641\u0631 \u0645\u0646 \u0627\u0644\u0645\u0644\u0627\u062d\u0642.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "\u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "\u062a\u062e\u0632\u064a\u0646", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "\u0627\u0644\u0627\u062d\u062f", - "OptionMonday": "\u0627\u0644\u0627\u062b\u0646\u064a\u0646", - "OptionTuesday": "\u0627\u0644\u062b\u0644\u0627\u062b\u0627\u0621", - "OptionWednesday": "\u0627\u0644\u0627\u0631\u0628\u0639\u0627\u0621", - "OptionThursday": "\u0627\u0644\u062e\u0645\u064a\u0633", - "OptionFriday": "\u0627\u0644\u062c\u0645\u0639\u0629", - "OptionSaturday": "\u0627\u0644\u0633\u0628\u062a", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "\u0627\u0633\u062a\u0623\u0646\u0641", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "\u0645\u0648\u0627\u0641\u0642", - "ButtonCancel": "\u0627\u0644\u063a\u0627\u0621", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "\u0627\u064a\u0642\u0627\u0641", - "OptionOn": "\u062a\u0634\u063a\u064a\u0644", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "\u0632\u0645\u0646 \u0627\u0644\u062a\u0634\u063a\u064a\u0644", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "\u0627\u0644\u062d\u0644\u0642\u0627\u062a", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "\u0627\u0644\u0628\u0648\u0645\u0627\u062a", - "TabSongs": "\u0627\u0644\u0627\u063a\u0627\u0646\u0649", - "TabMusicVideos": "\u0645\u0648\u0633\u064a\u0642\u0649 \u0627\u0644\u0641\u064a\u062f\u064a\u0648", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\u0627\u0644\u0645\u0644\u0635\u0642", - "OptionPosterCard": "Poster card", - "OptionTimeline": "\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "\u062a\u0635\u0627\u0639\u062f\u0649", - "OptionDescending": "\u062a\u0646\u0627\u0632\u0644\u0649", - "OptionNameSort": "\u0627\u0633\u0645", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0639\u0631\u0636", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u062a\u0634\u063a\u064a\u0644", - "OptionDateAdded": "\u062a\u0627\u0631\u064a\u062e \u0627\u0644\u0627\u0636\u0627\u0641\u0629", - "OptionPlayCount": "\u0639\u062f\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "\u0627\u0644\u0628\u0648\u0645 \u0627\u0644\u0641\u0646\u0627\u0646", - "OptionArtist": "\u0641\u0646\u0627\u0646", - "OptionAlbum": "\u0627\u0644\u0628\u0648\u0645", - "OptionTrackName": "\u0627\u0633\u0645 \u0627\u0644\u0627\u063a\u0646\u064a\u0629", - "OptionCommunityRating": "\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u062c\u062a\u0645\u0639", - "ButtonSort": "\u062a\u0631\u062a\u064a\u0628", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "\u0641\u0644\u062a\u0631", - "OptionCriticRating": "\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0646\u0627\u0642\u062f", - "OptionVideoBitrate": "\u0645\u0639\u062f\u0644 \u0627\u0644\u0628\u062a \u0644\u0644\u0641\u064a\u062f\u064a\u0648", - "OptionMetascore": "Metascore", - "OptionRevenue": "\u0627\u064a\u0631\u0627\u062f\u0627\u062a", - "OptionBudget": "\u0645\u064a\u0632\u0627\u0646\u064a\u0629", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "\u0627\u0644\u062a\u0627\u0644\u0649", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "\u0627\u062d\u062f\u062b \u0627\u0644\u062d\u0644\u0642\u0627\u062a", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/be-BY.json b/dashboard-ui/strings/javascript/be-BY.json deleted file mode 100644 index af0265be8b..0000000000 --- a/dashboard-ui/strings/javascript/be-BY.json +++ /dev/null @@ -1,826 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your supporter key has been updated.", - "MessageKeyRemoved": "Thank you. Your supporter key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync job", - "TitleSync": "Sync", - "HeaderSelectDate": "Select Date", - "ButtonDonate": "Donate", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "HeaderMyMedia": "My Media", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series:", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "Failed", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "ButtonPlayTrailer": "Play trailer", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderTaskTriggers": "Task Triggers", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheFollowingItemsWillBeGrouped": "The following titles will be grouped into one item:", - "MessageConfirmItemGrouping": "Emby apps will automatically choose the optimal version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelEpisodeNumber": "Episode number:", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "LabelSeasonNumber": "Season number:", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "OptionReleaseDate": "Release date", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderFields": "Fields", - "HeaderFieldsHelp": "Slide a field to 'off' to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the folder with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from the server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Toggle fullscreen", - "ButtonAudioTracks": "Audio tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player:", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeType": "Change type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.", - "MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.", - "MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes:", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users:", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", - "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", - "MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your username and password are correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryCinemaMode": "Try Cinema Mode", - "ButtonBecomeSupporter": "Become an Emby Supporter", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, 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.", - "OptionEnableDisplayMirroring": "Enable display mirroring" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/bg-BG.json b/dashboard-ui/strings/javascript/bg-BG.json deleted file mode 100644 index aa7c6cda1c..0000000000 --- a/dashboard-ui/strings/javascript/bg-BG.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u044f, \u0447\u0435 \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0438\u0445\u0442\u0435 Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u043d\u043e \u0438\u0437\u0434\u0430\u043d\u0438\u0435", - "OptionBeta": "\u0411\u0435\u0442\u0430", - "OptionDev": "\u0417\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438 (\u041d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u0435\u043d)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u0442\u0435 \u043d\u0430 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u0430 \u043a\u043e\u043c\u0443\u043d\u0438\u043a\u0438\u0440\u0430 \u0441 Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "\u041f\u043e\u0434\u043a\u0440\u0435\u043f\u0435\u0442\u0435 Emby \u041e\u0442\u0431\u043e\u0440\u044a\u0442", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "\u0422V \u043d\u0430 \u0436\u0438\u0432\u043e", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "\u041f\u043e\u043c\u043e\u0449", - "ButtonSave": "\u0417\u0430\u043f\u043e\u043c\u043d\u0438", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u041a\u043e\u043b\u0435\u043a\u0446\u0438\u044f\u0442\u0430", - "HeaderNewCollection": "\u041d\u043e\u0432\u0430 \u041a\u043e\u043b\u0435\u043a\u0446\u0438\u044f", - "NewCollectionNameExample": "\u041f\u0440\u0438\u043c\u0435\u0440: \u041a\u043e\u043b\u0435\u043a\u0446\u0438\u044f Star Wars", - "OptionSearchForInternetMetadata": "\u0422\u044a\u0440\u0441\u0438 \u0432 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0437\u0430 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", - "LabelSelectCollection": "\u0418\u0437\u0431\u0435\u0440\u0438 \u043a\u043e\u043b\u0435\u043a\u0446\u0438\u044f:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439 \u043d\u0430\u043e\u043a\u043e\u043b\u043e", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "\u0414\u043e\u0441\u0442\u044a\u043f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0442\u0430", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "\u041f\u0443\u0441\u043d\u0438", - "ButtonEdit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "\u0412\u0441\u0438\u0447\u043a\u0438 \u0417\u0430\u043f\u0438\u0441\u0438", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "\u041d\u0435\u0434\u0435\u043b\u044f", - "OptionMonday": "\u041f\u043e\u043d\u0435\u0434\u0435\u043b\u043d\u0438\u043a", - "OptionTuesday": "\u0412\u0442\u043e\u0440\u043d\u0438\u043a", - "OptionWednesday": "\u0421\u0440\u044f\u0434\u0430", - "OptionThursday": "\u0427\u0435\u0442\u0432\u044a\u0440\u0442\u044a\u043a", - "OptionFriday": "\u041f\u0435\u0442\u044a\u043a", - "OptionSaturday": "\u0421\u044a\u0431\u043e\u0442\u0430", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "\u041f\u0440\u043e\u0436\u044a\u043b\u0436\u0438", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "\u0414\u043e\u0431\u0430\u0432\u0438", - "ButtonRemove": "\u041f\u0440\u0435\u043c\u0430\u0445\u043d\u0438", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "\u041d\u0430\u0438\u0441\u0442\u0438\u043d\u0430 \u043b\u0438 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0442\u0435 Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442?", - "MessageConfirmShutdown": "\u041d\u0430\u0438\u0441\u0442\u0438\u043d\u0430 \u043b\u0438 \u0438\u0441\u043a\u0430\u0442\u0435 \u0434\u0430 \u0441\u043f\u0440\u0435\u0442\u0435 Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "\u041e\u043a", - "ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438", - "ButtonRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "\u0421\u0446\u0435\u043d\u0438", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "\u041a\u0430\u043d\u0430\u043b\u0438", - "HeaderMediaFolders": "\u041c\u0435\u0434\u0438\u0439\u043d\u0438 \u041f\u0430\u043f\u043a\u0438", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "\u041f\u0440\u0438\u043a\u043b\u044e\u0447\u0438\u043b\u043e", - "OptionContinuing": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0430\u0432\u0430\u0449\u043e", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0420\u0435\u0439\u0442\u0438\u043d\u0433", - "OptionPeople": "People", - "OptionRuntime": "\u0412\u0440\u0435\u043c\u0435\u0442\u0440\u0430\u0435\u043d\u0435", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "\u0421\u044a\u0440\u0432\u044a\u0440", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "\u041c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "\u0418\u0437\u0431\u0435\u0440\u0438", - "ButtonNew": "\u041d\u043e\u0432", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "\u0418\u043c\u0435:", - "ButtonSubmit": "\u0418\u0437\u043f\u0440\u0430\u0442\u0438", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "\u0410\u0443\u0434\u0438\u043e", - "HeaderResolution": "Resolution", - "HeaderVideo": "\u0412\u0438\u0434\u0435\u043e", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "\u0424\u0438\u043b\u043c\u0438", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "\u0415\u043f\u0438\u0437\u043e\u0434\u0438", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "\u0424\u0438\u043b\u043c\u0438", - "FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430", - "FolderTypeAdultVideos": "\u041a\u043b\u0438\u043f\u043e\u0432\u0435 \u0437\u0430 \u0432\u044a\u0437\u0440\u0430\u0441\u0442\u043d\u0438", - "FolderTypePhotos": "\u0421\u043d\u0438\u043c\u043a\u0438", - "FolderTypeMusicVideos": "\u041c\u0443\u0437\u0438\u043a\u0430\u043b\u043d\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435", - "FolderTypeHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435", - "FolderTypeGames": "\u0418\u0433\u0440\u0438", - "FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438", - "FolderTypeTvShows": "TV", - "TabMovies": "\u0424\u0438\u043b\u043c\u0438", - "TabSeries": "\u041f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f", - "TabEpisodes": "\u0415\u043f\u0438\u0437\u043e\u0434\u0438", - "TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u044a\u0440\u0438", - "TabGames": "\u0418\u0433\u0440\u0438", - "TabAlbums": "\u0410\u043b\u0431\u0443\u043c\u0438", - "TabSongs": "\u041f\u0435\u0441\u043d\u0438", - "TabMusicVideos": "\u041c\u0443\u0437\u0438\u043a\u0430\u043b\u043d\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "\u0418\u0437\u0442\u0440\u0438\u0439", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "\u0418\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\u041f\u043b\u0430\u043a\u0430\u0442", - "OptionPosterCard": "\u041a\u0430\u0440\u0442\u0430 \u043f\u043b\u0430\u043a\u0430\u0442", - "OptionTimeline": "\u0413\u0440\u0430\u0444\u0438\u043a", - "OptionList": "List", - "OptionThumb": "\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430", - "OptionThumbCard": "\u041a\u0430\u0440\u0442\u0430 \u043c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430", - "OptionBanner": "\u0411\u0430\u043d\u0435\u0440", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "\u0417\u0430\u043f\u0438\u0448\u0438", - "ButtonOther": "Other", - "HeaderSortBy": "\u041f\u043e\u0434\u0440\u0435\u0434\u0438 \u043f\u043e:", - "HeaderSortOrder": "\u0420\u0435\u0434 \u043d\u0430 \u043f\u043e\u0434\u0440\u0435\u0434\u0431\u0430:", - "OptionAscending": "\u0412\u044a\u0437\u0445\u043e\u0434\u044f\u0449", - "OptionDescending": "\u041d\u0438\u0437\u0445\u043e\u0434\u044f\u0449", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0440\u0435\u043c\u0438\u0435\u0440\u0430", - "OptionImdbRating": "IMDb \u0420\u0435\u0439\u0442\u0438\u043d\u0433", - "OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435", - "OptionDateAdded": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0434\u043e\u0431\u0430\u0432\u044f\u043d\u0435", - "OptionPlayCount": "\u0411\u0440\u043e\u0439 \u043f\u0443\u0441\u043a\u0430\u043d\u0438\u044f", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "\u0410\u043b\u0431\u0443\u043c\u043e\u0432 \u0410\u0440\u0442\u0438\u0441\u0442", - "OptionArtist": "\u0410\u0440\u0442\u0438\u0441\u0442", - "OptionAlbum": "\u0410\u043b\u0431\u0443\u043c", - "OptionTrackName": "\u0418\u043c\u0435 \u043d\u0430 \u043f\u0435\u0441\u0435\u043d\u0442\u0430:", - "OptionCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u0430 \u043e\u0449\u0435\u043d\u043a\u0430", - "ButtonSort": "\u041f\u043e\u0434\u0440\u0435\u0434\u0438", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "\u0424\u0438\u043b\u0442\u044a\u0440", - "OptionCriticRating": "\u041e\u0446\u0435\u043d\u043a\u0430 \u043d\u0430 \u043a\u0440\u0438\u0442\u0438\u0446\u0438\u0442\u0435", - "OptionVideoBitrate": "\u0412\u0438\u0434\u0435\u043e \u0431\u0438\u0442\u0440\u0435\u0439\u0442", - "OptionMetascore": "\u041c\u0435\u0442\u0430 \u0442\u043e\u0447\u043a\u0438", - "OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438", - "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "\u0421\u043b\u0435\u0434\u0432\u0430", - "HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0424\u0438\u043b\u043c\u0438", - "HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0415\u043f\u0438\u0437\u043e\u0434\u0438", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/ca.json b/dashboard-ui/strings/javascript/ca.json deleted file mode 100644 index 0724f35585..0000000000 --- a/dashboard-ui/strings/javascript/ca.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Configuraci\u00f3 guardada.", - "AddUser": "Afegir Usuari", - "Users": "Usuaris", - "Delete": "Esborrar", - "Administrator": "Administrador", - "Password": "Contrasenya", - "DeleteImage": "Esborrar Imatge", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Si et plau d\u00f3na suport a Emby.", - "DeleteImageConfirmation": "Esteu segur que voleu suprimir aquesta imatge?", - "FileReadCancelled": "La lectura de l'arxiu ha estat cancel\u00b7lada.", - "FileNotFound": "Arxiu no trobat.", - "FileReadError": "S'ha produ\u00eft un error en llegir el fitxer.", - "DeleteUser": "Esborrar Usuari", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "La contrasenya s'ha restablert.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Est\u00e0s segur que vols restablir la contrasenya?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Contrasenya desada.", - "PasswordMatchError": "La confirmaci\u00f3 de la contrasenya i la contrasenya han de coincidir.", - "OptionRelease": "Versi\u00f3 Oficial", - "OptionBeta": "Beta", - "OptionDev": "Dev (Inestable)", - "UninstallPluginHeader": "Desinstal\u00b7lar Complement.", - "UninstallPluginConfirmation": "Est\u00e0s segur que vols desinstal\u00b7lar {0}?", - "NoPluginConfigurationMessage": "Aquest complement no necessita configuraci\u00f3.", - "NoPluginsInstalledMessage": "No tens cap complement instal\u00b7lat.", - "BrowsePluginCatalogMessage": "Consulta el nostre cat\u00e0leg per veure els complements disponibles.", - "HeaderNewApiKey": "Nova Clau Api", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "D\u00f3na suport a l'equip d'Emby", - "TextEnjoyBonusFeatures": "Gaudeix de caracter\u00edstiques addicionals", - "TitleLiveTV": "TV en Directe", - "ButtonCancelSyncJob": "Cancel\u00b7la sync", - "HeaderAddTag": "Afegir Etiqueta", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Seleccionar Data", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "Els Meus Multim\u00e8dia", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notificacions", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Usuaris", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Protectors de Pantalla", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notificacions", - "PluginCategoryMetadata": "Metadades", - "PluginCategoryLiveTV": "TV en Directe", - "PluginCategoryChannel": "Canals", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "V\u00eddeo Musical", - "LabelEpisode": "Episode", - "LabelSeries": "S\u00e8ries", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancel\u00b7lat)", - "LabelFailed": "(failed)", - "ButtonHelp": "Ajuda", - "ButtonSave": "Desa", - "ButtonDownload": "Descarrega", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancel\u00b7lat", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Afegir a Col\u00b7lecci\u00f3", - "HeaderNewCollection": "Nova Col\u00b7lecci\u00f3", - "NewCollectionNameExample": "Exemple: Col\u00b7leci\u00f3 Star Wars", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Selecciona col\u00b7lecci\u00f3:", - "HeaderDevices": "Dispositius", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "\u00cdtems afegits", - "ButtonAddToCollection": "Afegeix a col\u00b7lecci\u00f3", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Benvingut a Emby", - "ButtonTakeTheTour": "Fes el tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Complements", - "ButtonTakeTheTourToSeeWhatsNew": "Fes el tour per veure qu\u00e8 hi ha de nou", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Acc\u00e9s a la Biblioteca", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel\u00b7la \u00edtem", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "A", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Reprodueix", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Llista de reproducci\u00f3", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Ja que has vist {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirmar Cancel\u00b7laci\u00f3 de l'Enregistrament", - "MessageConfirmRecordingCancellation": "Est\u00e0s segur que vols cancel\u00b7lar aquest enregistrament?", - "MessageRecordingCancelled": "Enregistrament cancel\u00b7lat.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Reprendre", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Directoris Multim\u00e8dia", - "HeaderLatestMedia": "Darrers Multim\u00e8dia", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Programes Preferits", - "HeaderFavoriteEpisodes": "Episodis Preferits", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Valoraci\u00f3 \/ Desc\u00e0rregues", - "HeaderConfirmProfileDeletion": "Confirmar Supressi\u00f3 de Perfil", - "MessageConfirmProfileDeletion": "N'est\u00e0s segur d'eliminar aquest perfil?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Afegeix", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Esborra Fitxer", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Esborrar Fitxer", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "El seg\u00fcent fitxer ser\u00e0 eliminat:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Reiniciar", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Est\u00e0s segur que vols reiniciar el Servidor d'Emby?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "La versi\u00f3 {0} est\u00e0 disponible per a descarregar-la.", - "LabelVersionNumber": "Versi\u00f3 {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Acc\u00e9s local: {0}", - "LabelRemoteAccessUrl": "Acc\u00e9s remot: {0}", - "LabelRunningOnPort": "Corrent al port http {0}.", - "LabelRunningOnPorts": "Corrent al port http {0} i al port https {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Control Remot", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "D'acord", - "ButtonCancel": "Cancel\u00b7la", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Obre", - "ButtonOpenInNewTab": "Obre en una nova pestanya", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Repr\u00e8n", - "HeaderScenes": "Escenes", - "HeaderAudioTracks": "Pistes d'\u00c0udio", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subt\u00edtols", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Inici", - "ButtonDashboard": "Tauler de Control", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Gestor de Metadades", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Canals", - "HeaderMediaFolders": "Directoris Multim\u00e8dia", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Tr\u00e0ilers", - "OptionBlockMusic": "M\u00fasica", - "OptionBlockMovies": "Pel\u00b7l\u00edcules", - "OptionBlockBooks": "Llibres", - "OptionBlockGames": "Jocs", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Esborrar Imatge", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Esborrar \u00cdtem", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "\u00cdtem desat.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Apagat", - "OptionOn": "Enc\u00e8s", - "ButtonSettings": "Prefer\u00e8ncies", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "TV en Directe", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Estudis", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Si et plau, reinicia per finalitzar l'actualitzaci\u00f3.", - "ButtonRestart": "Reinicia", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Prefer\u00e8ncies desades.", - "ButtonSignOut": "Tanca Sessi\u00f3", - "ButtonMyProfile": "El Meu Perfil", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "Instal\u00b7laci\u00f3 {0} cancel\u00b7lada.", - "TabServer": "Server", - "TabUsers": "Usuaris", - "TabLibrary": "Biblioteca", - "TabMetadata": "Metadades", - "TabDLNA": "DLNA", - "TabLiveTV": "TV en Directe", - "TabAutoOrganize": "Auto-Organitza", - "TabPlugins": "Complements", - "TabAdvanced": "Avan\u00e7at", - "TabHelp": "Ajuda", - "TabScheduledTasks": "Tasques Programades", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Pistes d'\u00c0udio", - "ButtonSubtitles": "Subt\u00edtols", - "ButtonScenes": "Escenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notificacions", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "Nou", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Afegir a la llista de reproducci\u00f3", - "HeaderAddToPlaylist": "Afegir a la llista de reproducci\u00f3", - "LabelName": "Nom:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Llista de rep.:", - "OptionNewPlaylist": "Nova llista de reproducci\u00f3...", - "MessageAddedToPlaylistSuccess": "D'acord", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Esborra de la llista de reproducci\u00f3", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Tr\u00e0ilers", - "HeaderAudio": "\u00c0udio", - "HeaderResolution": "Resolution", - "HeaderVideo": "V\u00eddeo", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Data de publicaci\u00f3", - "HeaderDateAdded": "Date added", - "HeaderSeries": "S\u00e8ries", - "HeaderSeason": "Temporada", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Pel\u00b7l\u00edcules", - "OptionCollections": "Col\u00b7leccions", - "OptionSeries": "S\u00e8ries", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodis", - "OptionGames": "Jocs", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "M\u00fasics", - "OptionMusicAlbums": "\u00c0lbums musicals", - "OptionMusicVideos": "V\u00eddeos musicals", - "OptionSongs": "Songs", - "OptionHomeVideos": "V\u00eddeos dom\u00e8stics", - "OptionBooks": "Llibres", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Nom per endre\u00e7ar:", - "OptionReleaseDate": "Data de publicaci\u00f3", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Data de publicaci\u00f3:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "Nou nom:", - "HeaderAddMediaFolder": "Afegir Directori Multim\u00e8dia", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "No definit (contingut mesclat)", - "FolderTypeMovies": "Pel\u00b7l\u00edcules", - "FolderTypeMusic": "M\u00fasica", - "FolderTypeAdultVideos": "V\u00eddeos per adults", - "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "V\u00eddeos musicals", - "FolderTypeHomeVideos": "V\u00eddeos dom\u00e8stics", - "FolderTypeGames": "Jocs", - "FolderTypeBooks": "Llibres", - "FolderTypeTvShows": "TV", - "TabMovies": "Pel\u00b7l\u00edcules", - "TabSeries": "S\u00e8ries", - "TabEpisodes": "Episodis", - "TabTrailers": "Tr\u00e0ilers", - "TabGames": "Jocs", - "TabAlbums": "\u00c0lbums", - "TabSongs": "Can\u00e7ons", - "TabMusicVideos": "V\u00eddeos musicals", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "Actualment tens la versi\u00f3 {0} instal\u00b7lada.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Esborra", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Especifica com vols continuar reproduint aquest v\u00eddeo el proper cop.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Punt de represa:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodis", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 v\u00eddeo musical", - "ValueMusicVideoCount": "{0} v\u00eddeos musicals", - "HeaderOffline": "Offline", - "HeaderUnaired": "No em\u00e8s", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Estudis: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Enlla\u00e7os: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Repartiment i Equip", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "Si t'agrada {0} mira't aquestes...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Pel\u00b7l\u00edcules", - "HeaderAlbums": "Albums", - "HeaderGames": "Jocs", - "HeaderBooks": "Llibres", - "HeaderEpisodes": "Episodis", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Artista convidat", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Canals", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Perfil", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "\u00c0udio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Reproducci\u00f3", - "TabNotifications": "Notificacions", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Fes clic a edita per obrir el gestor de metadades", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configura les teves prefer\u00e8ncies d'\u00e0udio i subt\u00edtols un sol cop per a totes les apps d'Emby", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "i controla f\u00e0cilment altres dispositius i aplicacions Emby", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Dispositius", - "TabExtras": "Extres", - "HeaderUploadImage": "Pujar Imatge", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Eliminar Dispositiu", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Acc\u00e9s a la biblioteca", - "ButtonParentalControl": "Control parental", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Seleccionar servidor", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Acceptar", - "ButtonReject": "Reject", - "HeaderForgotPassword": "He oblidat la contrasenya", - "MessageContactAdminToResetPassword": "Sisplau contacta amb l'adiministrador per restablir la contrasenya.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Qualitat", - "HeaderSettings": "Prefer\u00e8ncies", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "En cua", - "SyncJobItemStatusConverting": "Convertint", - "SyncJobItemStatusTransferring": "Transferint", - "SyncJobItemStatusSynced": "Sincronitzat", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancel\u00b7lat", - "LabelProfile": "Perfil:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "Nou servidor", - "ButtonSignInWithConnect": "Inicia sessi\u00f3 amb Emby Connect", - "HeaderNewServer": "Nou servidor", - "MyDevice": "El meu dispositiu", - "ButtonRemote": "Remot", - "TabInfo": "Informaci\u00f3", - "TabCast": "Actors", - "TabScenes": "Escenes", - "HeaderUnlockApp": "Desbloqueja App", - "HeaderUnlockSync": "Desbloqueja Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock this feature with a small one-time purchase, or with an active Emby Premiere subscription.", - "MessageUnlockAppWithSupporter": "Desbloqueja aquesta funci\u00f3 amb una subscripci\u00f3 activa Emby Premiere.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Els serveis de pagament no estan disponibles actualment. Siusplau, intenta-ho m\u00e9s tard.", - "MessagePleaseSignInLocalNetwork": "Abans de continuar, si et plau assegura't que est\u00e0s connectat a la xarxa local utilitzant una connexi\u00f3 Wi-Fi o LAN.", - "ButtonUnlockWithPurchase": "Desbloquejar amb la compra", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Habilita pantalla completa", - "ButtonServer": "Servidor", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Biblioteca", - "HeaderMedia": "Media", - "ButtonInbox": "Safata d'entrada", - "HeaderAdvanced": "Avan\u00e7at", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Digues alguna cosa com...", - "ButtonTryAgain": "Intenta-ho de nou", - "HeaderYouSaid": "Has dit...", - "MessageWeDidntRecognizeCommand": "Ho sentim, no reconeixem aquesta comanda.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No s'han trobat \u00edtems.", - "ButtonManageServer": "Gestionar Servidor", - "ButtonEditSubtitles": "Edita subt\u00edtols", - "ButtonPreferences": "Prefer\u00e8ncies", - "ButtonViewArtist": "Veure artista", - "ButtonViewAlbum": "Veure \u00e0lbum", - "ButtonEditImages": "Edita imatges", - "ErrorMessagePasswordNotMatchConfirm": "La contrasenya i la confirmaci\u00f3 de la contrasenya han de coincidir.", - "ErrorMessageUsernameInUse": "Aquest nom d'usuari ja est\u00e0 en \u00fas. Si et plau, escull un altre nom i torna a provar.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Compartir", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Comparteix", - "HeaderConfirm": "Confirmar", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Obtenir Emby Premiere", - "ButtonClosePlayVideo": "Tanca i reprodueix els meus multim\u00e8dia", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Miniatura", - "OptionThumbCard": "Tarja miniatura", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Presentaci\u00f3 de diapositives", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Altres", - "HeaderSortBy": "Ordena per:", - "HeaderSortOrder": "Ordre de Classificaci\u00f3:", - "OptionAscending": "Ascendent", - "OptionDescending": "Descendent", - "OptionNameSort": "Nom", - "OptionTvdbRating": "Valoraci\u00f3 TVDB", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "Qualificaci\u00f3 IMDb", - "OptionDatePlayed": "Data de Reproducci\u00f3", - "OptionDateAdded": "Data afegida", - "OptionPlayCount": "Nombre de Reproduccions", - "ButtonDisconnect": "Desconnecta", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artista", - "OptionAlbum": "\u00c0lbum", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Valoraci\u00f3 de la Comunitat", - "ButtonSort": "Ordena", - "ButtonMenu": "Men\u00fa", - "OptionDefaultSort": "Per defecte", - "ButtonFilter": "Filtra", - "OptionCriticRating": "Valoraci\u00f3 dels Cr\u00edtics", - "OptionVideoBitrate": "Bitrate del V\u00eddeo", - "OptionMetascore": "Metascore", - "OptionRevenue": "Ingressos", - "OptionBudget": "Pressupost", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guia", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Desconnectar del Reproductor", - "ConfirmEndPlayerSession": "Vols apagar l'emby al dispositiu?", - "ButtonYes": "S\u00ed", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restaurar la compra", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "Per a tu", - "ButtonLibrary": "Biblioteca", - "ButtonSearch": "Cercar", - "ButtonNowPlaying": "Reprodu\u00efnt", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "L'Emby per Android s'ha mogut!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "A Continuaci\u00f3", - "HeaderLatestMovies": "\u00daltimes pel\u00b7l\u00edcules", - "HeaderLatestEpisodes": "Darrers episodis", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "Correu electr\u00f2nic", - "TextPleaseEnterYourEmailAddressForSubscription": "Introdu\u00efu la vostra adre\u00e7a de correu electr\u00f2nic", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Condicions d'\u00fas", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "Per editar m\u00faltiples mitjans multim\u00e8dia simplement fes clic i mantingues premut sobre qualsevol cartell i despr\u00e9s selecciona els \u00edtems que vulguis gestionar. Prova-ho!", - "NumLocationsValue": "{0} directoris", - "ButtonAddMediaLibrary": "Afegir Biblioteca Multim\u00e8dia", - "ButtonManageFolders": "Gestiona directoris", - "HeaderTryDragAndDrop": "Tracta d'arrossegar i deixar anar", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Prova Microsoft Edge", - "MessageTryMicrosoftEdge": "Per una millor experi\u00e8ncia a Windows 10, prova el nou Microsoft Edge Browser", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Artistes preferits", - "HeaderFavoriteSongs": "Can\u00e7ons Preferides", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Apps d'Emby gratu\u00eftes.", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Mode Cinema", - "CinemaModeFeatureDescription": "El Mode Cinema li d\u00f3na la veritable experi\u00e8ncia de cinema amb tr\u00e0ilers i intros perzonalitzats abans de la funci\u00f3.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/cs.json b/dashboard-ui/strings/javascript/cs.json deleted file mode 100644 index 4ccf8a6a8c..0000000000 --- a/dashboard-ui/strings/javascript/cs.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Nastaven\u00ed ulo\u017eeno.", - "AddUser": "P\u0159idat u\u017eivatele", - "Users": "U\u017eivatel\u00e9", - "Delete": "Odstranit", - "Administrator": "Administr\u00e1tor", - "Password": "Heslo", - "DeleteImage": "Odstranit obr\u00e1zek", - "MessageThankYouForSupporting": "Emby v\u00e1m t\u00edmto d\u011bkuje za va\u0161\u00ed podporu.", - "MessagePleaseSupportProject": "Pros\u00edm podpo\u0159te Emby.", - "DeleteImageConfirmation": "Jste si jisti, \u017ee chcete odstranit tento obr\u00e1zek?", - "FileReadCancelled": "\u010cten\u00ed souboru bylo zru\u0161eno.", - "FileNotFound": "Soubor nebyl nalezen.", - "FileReadError": "Nastala chyba p\u0159i na\u010d\u00edt\u00e1n\u00ed souboru.", - "DeleteUser": "Odstranit u\u017eivatele", - "DeleteUserConfirmation": "Jste si jist, \u017ee chcete smazat tohoto u\u017eivatele?", - "PasswordResetHeader": "Obnovit heslo", - "PasswordResetComplete": "Heslo bylo obnoveno.", - "PinCodeResetComplete": "Pin k\u00f3d byl obnoven.", - "PasswordResetConfirmation": "Jste si jisti, \u017ee chcete obnovit heslo?", - "PinCodeResetConfirmation": "Jsou si jist, \u017ee chcete resetovat pin k\u00f3d?", - "HeaderPinCodeReset": "Obnovit Pin k\u00f3d", - "PasswordSaved": "Heslo ulo\u017eeno.", - "PasswordMatchError": "Heslo a potvrzen\u00ed hesla mus\u00ed souhlasit.", - "OptionRelease": "Ofici\u00e1ln\u00ed vyd\u00e1n\u00ed", - "OptionBeta": "Betaverze", - "OptionDev": "Dev (Nestabiln\u00ed\/V\u00fdvoj\u00e1\u0159sk\u00e1)", - "UninstallPluginHeader": "Odinstalovat z\u00e1suvn\u00fd modul", - "UninstallPluginConfirmation": "Jste si jisti, \u017ee chcete odinstalovat {0}?", - "NoPluginConfigurationMessage": "Tento plugin nem\u00e1 nastaven\u00ed.", - "NoPluginsInstalledMessage": "Nem\u00e1te nainstalov\u00e1n \u017e\u00e1dn\u00fd plugin.", - "BrowsePluginCatalogMessage": "Prohl\u00e9dn\u011bte si n\u00e1\u0161 katalog, kde najdete dostupn\u00e9 pluginy.", - "HeaderNewApiKey": "Nov\u00fd kl\u00ed\u010d API", - "LabelAppName": "N\u00e1zev aplikace", - "LabelAppNameExample": "P\u0159\u00edklad: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Ud\u011blit povolen\u00ed aplikac\u00ed pro komunikaci s Emby Server.", - "MessageKeyEmailedTo": "Kl\u00ed\u010d odesl\u00e1n na {0}", - "MessageKeysLinked": "Kl\u00ed\u010de spojeny.", - "HeaderConfirmation": "Potvrzen\u00ed", - "MessageKeyUpdated": "D\u011bkuji. V\u00e1\u0161 kl\u00ed\u010d Emby Premiere byl aktualizov\u00e1n.", - "MessageKeyRemoved": "D\u011bkuji. V\u00e1\u0161 kl\u00ed\u010d Emby Premiere byl odstran\u011bn.", - "HeaderSupportTheTeam": "Podpo\u0159te Emby Team", - "TextEnjoyBonusFeatures": "U\u017eijte si bonusy", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Zru\u0161it synchronizaci", - "HeaderAddTag": "P\u0159idat tag", - "LabelTag": "Tag:", - "ButtonSelectView": "V\u00fdb\u011br zobrazen\u00ed", - "TitleSync": "Synchronizace", - "OptionAutomatic": "Automaticky", - "HeaderSelectDate": "Vyber datum", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identifikuj", - "HeaderIdentifyItem": "Identifikuj polo\u017eku", - "LabelRecurringDonationCanBeCancelledHelp": "Opakuj\u00edc\u00ed se dary lze kdykoli zru\u0161it pomoc\u00ed sv\u00e9ho \u00fa\u010dtu PayPal.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "Moje m\u00e9dia", - "ButtonRemoveFromCollection": "Odebrat z kolekce", - "LabelAutomaticUpdateLevel": "\u00darove\u0148 automatick\u00e9 aktualizace:", - "LabelAutomaticUpdateLevelForPlugins": "\u00darove\u0148 automatick\u00e9 aktualizace pro z\u00e1suvn\u00e9 moduly:", - "TitleNotifications": "Ozn\u00e1men\u00ed", - "ErrorLaunchingChromecast": "Do\u0161lo k chyb\u011b p\u0159i spou\u0161t\u011bn\u00ed Chromecast. Zkontrolujte zda je va\u0161e za\u0159\u00edzen\u00ed p\u0159ipojeno k bezdr\u00e1tov\u00e9 s\u00edti.", - "MessageErrorLoadingSupporterInfo": "Do\u0161lo k chyb\u011b p\u0159i na\u010d\u00edt\u00e1n\u00ed informac\u00ed o Emby Premiere. Pros\u00edm zkuste to znovu pozd\u011bji.", - "MessageLinkYourSupporterKey": "Propojte zdarma Emby Premiere kl\u00ed\u010d a\u017e s {0} \u010dleny Emby Connect pro n\u00e1sleduj\u00edc\u00ed aplikac\u00edm:", - "HeaderConfirmRemoveUser": "Odstranit u\u017eivatele", - "MessageConfirmRemoveConnectSupporter": "Jste si jisti, \u017ee chcete odstranit v\u00fdhody Emby Premier tomuto u\u017eivateli?", - "ValueTimeLimitSingleHour": "\u010casov\u00fd limit: 1 hodina", - "ValueTimeLimitMultiHour": "\u010casov\u00fd limit: {0} hodin", - "HeaderUsers": "U\u017eivatel\u00e9", - "PluginCategoryGeneral": "Obecn\u00e9", - "PluginCategoryContentProvider": "Poskytovatel\u00e9 obsahu", - "PluginCategoryScreenSaver": "\u0160et\u0159i\u010de obrazovky", - "PluginCategoryTheme": "T\u00e9mata", - "PluginCategorySync": "Synchronizace", - "PluginCategorySocialIntegration": "Soci\u00e1ln\u00ed s\u00edt\u011b", - "PluginCategoryNotifications": "Ozn\u00e1men\u00ed", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Kan\u00e1ly", - "HeaderSearch": "Vyhled\u00e1v\u00e1n\u00ed", - "ValueDateCreated": "Vytvo\u0159eno: {0}", - "LabelArtist": "Um\u011blec", - "LabelMovie": "Film", - "LabelMusicVideo": "Hudebn\u00ed video", - "LabelEpisode": "Epizoda", - "LabelSeries": "S\u00e9rie", - "LabelStopping": "Zastavov\u00e1n\u00ed", - "LabelCancelled": "(zru\u0161eno)", - "LabelFailed": "(ne\u00fasp\u011b\u0161n\u00e9)", - "ButtonHelp": "N\u00e1pov\u011bda", - "ButtonSave": "Ulo\u017eit", - "ButtonDownload": "St\u00e1hnout", - "SyncJobStatusQueued": "Za\u0159azeno", - "SyncJobStatusConverting": "Konverze", - "SyncJobStatusFailed": "Selhalo", - "SyncJobStatusCancelled": "Zru\u0161eno", - "SyncJobStatusCompleted": "Synchronizov\u00e1no", - "SyncJobStatusReadyToTransfer": "P\u0159ipraveno k p\u0159enosu", - "SyncJobStatusTransferring": "P\u0159en\u00e1\u0161en\u00ed", - "SyncJobStatusCompletedWithError": "Synchronizov\u00e1no s chybami", - "SyncJobItemStatusReadyToTransfer": "P\u0159ipraven k p\u0159enosu", - "LabelCollection": "Kolekce", - "HeaderAddToCollection": "P\u0159idat do kolekce", - "HeaderNewCollection": "Nov\u00e1 kolekce", - "NewCollectionNameExample": "P\u0159\u00edklad: Kolekce Star Wars", - "OptionSearchForInternetMetadata": "Vyhledat metadata a obr\u00e1zky na Internetu.", - "LabelSelectCollection": "Vybrat kolekce:", - "HeaderDevices": "Za\u0159\u00edzen\u00ed", - "ButtonScheduledTasks": "Napl\u00e1novan\u00e9 \u00falohy", - "MessageItemsAdded": "Polo\u017eka p\u0159id\u00e1na", - "ButtonAddToCollection": "P\u0159idat do kolekce", - "HeaderSelectCertificatePath": "Vyber cestu k certifik\u00e1tu", - "ConfirmMessageScheduledTaskButton": "Tato operace se obvykle spust\u00ed automaticky pomoc\u00ed napl\u00e1novan\u00e9 \u00falohy a nevy\u017eaduje \u017e\u00e1dn\u00fd v\u00e1\u0161 z\u00e1sah. Chcete-li napl\u00e1novat \u00falohy, pak:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "Vypad\u00e1 to, \u017ee v sou\u010dasn\u00e9 dob\u011b nem\u00e1te \u017e\u00e1dn\u00e9 aplikace, kter\u00e9 podporuj\u00ed synchronizaci.", - "HeaderWelcomeToProjectServerDashboard": "V\u00edtejte na hlavn\u00ed nab\u00eddce Server Emby", - "HeaderWelcomeToProjectWebClient": "V\u00edtejte v Emby", - "ButtonTakeTheTour": "Chci \u00favodn\u00ed prohl\u00eddku", - "HeaderWelcomeBack": "V\u00edtejte zp\u011bt!", - "TitlePlugins": "Z\u00e1suvn\u00e9 moduly", - "ButtonTakeTheTourToSeeWhatsNew": "Chci vid\u011bt co je nov\u00e9ho", - "MessageNoSyncJobsFound": "Nebyly nalezeny \u017e\u00e1dn\u00e9 synchroniza\u010dn\u00ed \u00falohy. Synchroniza\u010dn\u00ed \u00falohy vytvo\u0159\u00edte pomoc\u00ed tla\u010d\u00edtek \"Synchronizace\" kdekoliv ve webov\u00e9m rozhran\u00ed.", - "HeaderLibraryAccess": "P\u0159\u00edstup ke knihovn\u011b", - "HeaderChannelAccess": "P\u0159\u00edstup ke kan\u00e1lu", - "HeaderDeviceAccess": "P\u0159\u00edstup k za\u0159\u00edzen\u00ed", - "HeaderSelectDevices": "Vyber za\u0159\u00edzen\u00ed", - "ButtonCancelItem": "Zru\u0161it polo\u017eku", - "ButtonQueueForRetry": "Za\u0159azeno pro obnoven\u00ed", - "ButtonReenable": "Obnovit povolen\u00ed", - "ButtonLearnMore": "Zjistit v\u00edce", - "SyncJobItemStatusSyncedMarkForRemoval": "Ozna\u010deno k odebr\u00e1n\u00ed", - "LabelAbortedByServerShutdown": "(P\u0159eru\u0161eno p\u0159i vypnut\u00ed serveru)", - "LabelScheduledTaskLastRan": "Posledn\u00ed spu\u0161t\u011bn\u00ed {0}, zabralo {1}.", - "HeaderDeleteTaskTrigger": "Zru\u0161it spu\u0161t\u011bn\u00ed \u00falohy", - "MessageDeleteTaskTrigger": "Opravdu si p\u0159ejete odebrat spou\u0161t\u011bn\u00ed \u00falohy?", - "MessageNoPluginsInstalled": "Nem\u00e1te instalov\u00e1ny \u017e\u00e1dn\u00e9 z\u00e1suvn\u00e9 moduly.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} instalov\u00e1no", - "LabelNumberReviews": "{0} Hodnocen\u00ed", - "LabelFree": "Zdarma", - "HeaderTo": "Do", - "HeaderPlaybackError": "Chyba p\u0159ehr\u00e1v\u00e1n\u00ed", - "MessagePlaybackErrorNotAllowed": "V sou\u010dasn\u00e9 dob\u011b nejste opr\u00e1vn\u011bni p\u0159ehr\u00e1vat tento obsah. Pro v\u00edce informac\u00ed se obra\u0165te se na spr\u00e1vce syst\u00e9mu.", - "MessagePlaybackErrorNoCompatibleStream": "\u017d\u00e1dn\u00e9 kompatibiln\u00ed streamy nejsou v sou\u010dasn\u00e9 dob\u011b k dispozici. Zkuste to pros\u00edm pozd\u011bji nebo pro v\u00edce podrobnost\u00ed kontaktujte sv\u00e9ho spr\u00e1vce syst\u00e9mu", - "MessagePlaybackErrorRateLimitExceeded": "Limit rychlosti p\u0159ehr\u00e1v\u00e1n\u00ed byl p\u0159ekro\u010den. Pro v\u00edce informac\u00ed se obra\u0165te na spr\u00e1vce syst\u00e9mu.", - "MessagePlaybackErrorPlaceHolder": "Zvolen\u00fd obsah nen\u00ed mo\u017en\u00e9 p\u0159ehr\u00e1t z tohoto za\u0159\u00edzen\u00ed.", - "HeaderSelectAudio": "Vyber audio", - "HeaderSelectSubtitles": "Vyber titulky", - "ButtonMarkForRemoval": "Odeber ze za\u0159\u00edzen\u00ed", - "ButtonUnmarkForRemoval": "Zru\u0161it odstran\u011bn\u00ed ze za\u0159\u00edzen\u00ed", - "LabelDefaultStream": "(Defaultn\u00ed)", - "LabelForcedStream": "(Vynucen\u00e9)", - "LabelDefaultForcedStream": "(Defaultn\u00ed\/Vynucen\u00e9)", - "LabelUnknownLanguage": "Nezn\u00e1m\u00fd jazyk", - "MessageConfirmSyncJobItemCancellation": "Opravdu si p\u0159ejete ukon\u010dit tuto polo\u017eku?", - "ButtonMute": "Ztlumit", - "ButtonUnmute": "Nahlas", - "ButtonStop": "Zastavit", - "ButtonNextTrack": "Dal\u0161\u00ed stopa", - "ButtonPause": "Pozastavit", - "ButtonPlay": "P\u0159ehr\u00e1t", - "ButtonEdit": "Upravit", - "ButtonQueue": "Fronta", - "ButtonPlayTrailer": "P\u0159ehr\u00e1t trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "P\u0159edchoz\u00ed stopa", - "LabelEnabled": "Povoleno", - "LabelDisabled": "Zak\u00e1z\u00e1no", - "ButtonMoreInformation": "Dal\u0161\u00ed informace", - "LabelNoUnreadNotifications": "V\u0161echna ozn\u00e1men\u00ed p\u0159e\u010dtena.", - "ButtonViewNotifications": "Zobrazit notifikace", - "ButtonMarkTheseRead": "Ozna\u010dit jako p\u0159e\u010dten\u00e9", - "ButtonClose": "Zav\u0159\u00edt", - "LabelAllPlaysSentToPlayer": "V\u0161echny nahr\u00e1vky budou odesl\u00e1ny do zvolen\u00e9ho p\u0159ehr\u00e1va\u010de.", - "MessageInvalidUser": "Neplatn\u00e9 u\u017eivatelsk\u00e9 jm\u00e9no nebo heslo. Zkuste znovu.", - "HeaderLoginFailure": "P\u0159ihl\u00e1\u0161en\u00ed selhalo", - "HeaderAllRecordings": "V\u0161echna nahr\u00e1v\u00e1n\u00ed", - "RecommendationBecauseYouLike": "Proto\u017ee se v\u00e1m l\u00edb\u00ed {0}", - "RecommendationBecauseYouWatched": "Proto\u017ee jste sledovali {0}", - "RecommendationDirectedBy": "Re\u017e\u00edrov\u00e1no {0}", - "RecommendationStarring": "V hlavn\u00ed roli {0}", - "HeaderConfirmRecordingCancellation": "Potvrzen\u00ed zru\u0161en\u00ed nahr\u00e1v\u00e1n\u00ed", - "MessageConfirmRecordingCancellation": "Jste si jisti, \u017ee chcete zru\u0161it tuto nahr\u00e1vku?", - "MessageRecordingCancelled": "Nahr\u00e1v\u00e1n\u00ed zru\u0161eno.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Potvrdit zru\u0161en\u00ed nahr\u00e1v\u00e1n\u00ed seri\u00e1l\u016f", - "MessageConfirmSeriesCancellation": "Jste si jisti, \u017ee chcete zru\u0161it tento seri\u00e1l?", - "MessageSeriesCancelled": "S\u00e9rie zru\u0161ena.", - "HeaderConfirmRecordingDeletion": "Potvrdit smaz\u00e1n\u00ed z\u00e1znamu", - "MessageConfirmRecordingDeletion": "Jste si jisti, \u017ee chcete smazat tento z\u00e1znam?", - "MessageRecordingDeleted": "Nahr\u00e1vka smaz\u00e1na.", - "ButonCancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed", - "MessageRecordingSaved": "Nahr\u00e1van\u00ed ulo\u017eeno", - "OptionSunday": "Ned\u011ble", - "OptionMonday": "Pond\u011bl\u00ed", - "OptionTuesday": "\u00dater\u00fd", - "OptionWednesday": "St\u0159eda", - "OptionThursday": "\u010ctvrtek", - "OptionFriday": "P\u00e1tek", - "OptionSaturday": "Sobota", - "OptionEveryday": "Ka\u017ed\u00fd den", - "OptionWeekend": "V\u00edkendy", - "OptionWeekday": "Pracovn\u00ed dny", - "HeaderConfirmDeletion": "Potvrdit smaz\u00e1n\u00ed", - "MessageConfirmPathSubstitutionDeletion": "Jste si jisti, \u017ee chcete smazat nahrazen\u00ed t\u00e9to cesty?", - "LiveTvUpdateAvailable": "(Dostupn\u00e1 aktualizace)", - "LabelVersionUpToDate": "Aktu\u00e1ln\u00ed!", - "ButtonResetTuner": "Obnovit nastaven\u00ed tuneru", - "HeaderResetTuner": "Obnovit nastaven\u00ed tuneru", - "MessageConfirmResetTuner": "Jste si jisti, \u017ee chcete resetovat tento tuner? Jak\u00e9koliv aktivn\u00ed p\u0159ehr\u00e1va\u010de nebo z\u00e1znamy budou n\u00e1siln\u011b zastaveny.", - "ButtonCancelSeries": "Ukon\u010dit Seri\u00e1l", - "HeaderSeriesRecordings": "Nahr\u00e1v\u00e1n\u00ed seri\u00e1l\u016f", - "LabelAnytime": "Kdykoliv", - "StatusRecording": "Nahr\u00e1v\u00e1n\u00ed", - "StatusWatching": "Sledov\u00e1no", - "StatusRecordingProgram": "Nahr\u00e1v\u00e1n\u00ed {0}", - "StatusWatchingProgram": "Sledov\u00e1n\u00ed {0}", - "HeaderSplitMedia": "Rozd\u011blit Media Apart", - "MessageConfirmSplitMedia": "Jste si jisti, \u017ee chcete rozd\u011blit medi\u00e1ln\u00ed zdroje do samostatn\u00fdch polo\u017eek?", - "HeaderError": "Chyba", - "MessageChromecastConnectionError": "V\u00e1\u0161 p\u0159ij\u00edma\u010d Chromecastu se nem\u016f\u017ee p\u0159ipojit k va\u0161emu Emby serveru. Pros\u00edm, zkontrolujte sv\u00e9 p\u0159ipojen\u00ed a zkuste to znovu.", - "MessagePleaseSelectOneItem": "Vyberte nejm\u00e9n\u011b jednu polo\u017eku, pros\u00edm.", - "MessagePleaseSelectTwoItems": "Vyberte nejm\u00e9n\u011b dv\u011b polo\u017eky pros\u00edm.", - "MessageTheSelectedItemsWillBeGrouped": "Vybran\u00e9 video bude seskupeno do jedn\u00e9 virtu\u00e1ln\u00ed polo\u017eky. Emby aplikace automaticky vybere verzi, kterou chcete p\u0159ehr\u00e1t na z\u00e1klad\u011b za\u0159\u00edzen\u00ed a v\u00fdkonu s\u00edt\u011b. Jste si jisti, \u017ee chcete pokra\u010dovat?", - "HeaderResume": "Pozastavit", - "HeaderMyViews": "Moje zobrazen\u00ed", - "HeaderLibraryFolders": "Slo\u017eky m\u00e9di\u00ed", - "HeaderLatestMedia": "Nejnov\u011bj\u0161\u00ed m\u00e9dia", - "ButtonMoreItems": "V\u00edce...", - "ButtonMore": "V\u00edce", - "HeaderFavoriteMovies": "Obl\u00edben\u00e9 filmy", - "HeaderFavoriteShows": "Obl\u00edben\u00e9 seri\u00e1ly", - "HeaderFavoriteEpisodes": "Obl\u00edben\u00e9 epizody", - "HeaderFavoriteGames": "Obl\u00edben\u00e9 hry", - "HeaderRatingsDownloads": "Hodnocen\u00ed\/Po\u010det sta\u017een\u00ed", - "HeaderConfirmProfileDeletion": "Potvrdit smaz\u00e1n\u00ed profilu", - "MessageConfirmProfileDeletion": "Jste si jisti, \u017ee chcete smazat tento profil?", - "HeaderSelectServerCachePath": "Vyber slo\u017eku pro vyrovn\u00e1vac\u00ed pam\u011b\u0165 serveru", - "HeaderSelectTranscodingPath": "Zvolte do\u010dasnou slo\u017eku pro p\u0159ek\u00f3dov\u00e1v\u00e1n\u00ed m\u00e9di\u00ed", - "HeaderSelectImagesByNamePath": "V\u00fdb\u011br obr\u00e1zku dle n\u00e1zvu cesty k souboru", - "HeaderSelectMetadataPath": "Vyberte cestu k metadat\u016fm", - "HeaderSelectServerCachePathHelp": "Vyberte nebo zadejte slo\u017eku vyrovn\u00e1vac\u00ed pam\u011bti soubor\u016f. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", - "HeaderSelectTranscodingPathHelp": "Vyberte nebo zadejte slo\u017eku pro do\u010dasn\u00e9 soubory p\u0159ek\u00f3dov\u00e1n\u00ed. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", - "HeaderSelectImagesByNamePathHelp": "Vyberte nebo zadejte cestu k polo\u017ek\u00e1m podle n\u00e1zvu slo\u017eky. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", - "HeaderSelectMetadataPathHelp": "V\u00fdb\u011br nebo zad\u00e1n\u00ed cesty, kde chcete ulo\u017eit metadata. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", - "HeaderSelectChannelDownloadPath": "V\u00fdb\u011br slo\u017eky pro stahov\u00e1n\u00ed kan\u00e1lu", - "HeaderSelectChannelDownloadPathHelp": "Vyberte nebo zadejte slo\u017eku pro ukl\u00e1d\u00e1n\u00ed cache soubor\u016f kan\u00e1lu. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", - "OptionNewCollection": "Nov\u00fd...", - "ButtonAdd": "P\u0159idat", - "ButtonRemove": "Odstranit", - "LabelChapterDownloaders": "Stahova\u010d kapitol:", - "LabelChapterDownloadersHelp": "Povol\u00ed \u0159azen\u00ed va\u0161ich preferovan\u00fdch stahova\u010d\u016f kapitol podle priority. Stahova\u010d s ni\u017e\u0161\u00ed prioritou bude pou\u017eit pouze k dopln\u011bn\u00ed chyb\u011bj\u00edc\u00edch informac\u00ed.", - "HeaderFavoriteAlbums": "Obl\u00edben\u00e1 alba", - "HeaderLatestChannelMedia": "Nejnov\u011bj\u0161\u00ed polo\u017eky kan\u00e1lu", - "ButtonOrganizeFile": "Uspo\u0159\u00e1dat soubor", - "ButtonDeleteFile": "Smazat soubor", - "HeaderOrganizeFile": "Uspo\u0159\u00e1dat soubor", - "HeaderDeleteFile": "Smazat soubor", - "StatusSkipped": "P\u0159esko\u010deno", - "StatusFailed": "Chyba", - "StatusSuccess": "\u00dasp\u011bch", - "MessageFileWillBeDeleted": "N\u00e1sleduj\u00edc\u00ed soubor bude smaz\u00e1n:", - "MessageSureYouWishToProceed": "Jste si jisti, \u017ee chcete pokra\u010dovat?", - "MessageDuplicatesWillBeDeleted": "Krom\u011b toho budou vymaz\u00e1ny n\u00e1sleduj\u00edc\u00ed duplik\u00e1ty:", - "MessageFollowingFileWillBeMovedFrom": "N\u00e1sleduj\u00edc\u00ed soubor bude p\u0159esunut z:", - "MessageDestinationTo": "komu:", - "HeaderSelectWatchFolder": "Vyberte sledovanou slo\u017eku", - "HeaderSelectWatchFolderHelp": "Vyberte nebo zadejte cestu k va\u0161\u00ed sledovan\u00e9 slo\u017ece. Slo\u017eka mus\u00ed b\u00fdt zapisovateln\u00e1.", - "OrganizePatternResult": "V\u00fdsledek: {0}", - "AutoOrganizeError": "Chyba p\u0159i uspo\u0159\u00e1d\u00e1n\u00ed souboru", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "Do\u0161lo k chyb\u011b p\u0159i za\u0159azen\u00ed souboru. K\u00f3d chyby: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Vypnout", - "MessageConfirmRestart": "Jste si jist, \u017ee chcete restartovat Emby server?", - "MessageConfirmShutdown": "Jste si jist, \u017ee chcete vypnout Emby server?", - "ButtonUpdateNow": "Aktualizujte te\u010f", - "ValueItemCount": "{0} polo\u017eka", - "ValueItemCountPlural": "{0} polo\u017eek", - "NewVersionOfSomethingAvailable": "Je dostupn\u00e1 nov\u00e1 verze {0}.", - "VersionXIsAvailableForDownload": "Verze {0} je nyn\u00ed dostupn\u00e1 ke sta\u017een\u00ed.", - "LabelVersionNumber": "Verze {0}", - "LabelPlayMethodTranscoding": "P\u0159ek\u00f3dov\u00e1n\u00ed", - "LabelPlayMethodDirectStream": "P\u0159\u00edm\u00e9 streamov\u00e1n\u00ed", - "LabelPlayMethodDirectPlay": "P\u0159\u00edm\u00e9 p\u0159ehr\u00e1n\u00ed", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Lok\u00e1ln\u00ed p\u0159\u00edstup: {0}", - "LabelRemoteAccessUrl": "Vzd\u00e1len\u00fd p\u0159\u00edstup: {0}", - "LabelRunningOnPort": "Spu\u0161t\u011bno na http portu {0}.", - "LabelRunningOnPorts": "Spu\u0161t\u011bno na http portu {0} a https portu {1}.", - "HeaderLatestFromChannel": "Nejnov\u011bj\u0161\u00ed od {0}", - "LabelUnknownLanaguage": "Nezn\u00e1m\u00fd jazyk", - "HeaderCurrentSubtitles": "Vybran\u00e9 titulky", - "MessageDownloadQueued": "Stahov\u00e1n\u00ed bylo za\u0159azeno do fronty.", - "MessageAreYouSureDeleteSubtitles": "Jste si jisti, \u017ee chcete smazat tyto titulky?", - "ButtonRemoteControl": "D\u00e1lkov\u00fd ovlada\u010d", - "HeaderLatestTvRecordings": "Nejnov\u011bj\u0161\u00ed nahr\u00e1vky", - "ButtonOk": "Ok", - "ButtonCancel": "Zru\u0161it", - "ButtonRefresh": "Obnovit", - "LabelCurrentPath": "Aktu\u00e1ln\u00ed cesta:", - "HeaderSelectMediaPath": "V\u00fdb\u011br cesty k m\u00e9diu", - "HeaderSelectPath": "Vybrat slo\u017eku", - "ButtonNetwork": "S\u00ed\u0165", - "MessageDirectoryPickerInstruction": "S\u00ed\u0165ov\u00e9 cesty lze zadat ru\u010dn\u011b v p\u0159\u00edpad\u011b, \u017ee tla\u010d\u00edtko 'S\u00ed\u0165' nedok\u00e1\u017ee automaticky lokalizovat va\u0161e za\u0159\u00edzen\u00ed. Nap\u0159\u00edklad, {0} nebo {1}.", - "MessageDirectoryPickerBSDInstruction": "Pro BSD, budete mo\u017en\u00e1 muset nakonfigurovat \u00falo\u017ei\u0161t\u011b p\u0159\u00edmo ve Va\u0161em FreeNAS Jail aby k nim Emby povolil p\u0159\u00edstup.", - "MessageDirectoryPickerLinuxInstruction": "V syst\u00e9mu Linux, mus\u00edte syst\u00e9mov\u00e9mu u\u017eivateli Emby ud\u011blit opr\u00e1vn\u011bn\u00ed alespo\u0148 pro \u010dten\u00ed k va\u0161im medi\u00e1ln\u00edm slo\u017ek\u00e1m.", - "HeaderMenu": "Menu", - "ButtonOpen": "Otev\u0159\u00edt", - "ButtonOpenInNewTab": "Otev\u0159\u00edt v nov\u00e9 z\u00e1lo\u017ece", - "ButtonShuffle": "N\u00e1hodn\u011b", - "ButtonInstantMix": "Okam\u017eit\u00e9 m\u00edch\u00e1n\u00ed", - "ButtonResume": "Pokra\u010dovat", - "HeaderScenes": "Sc\u00e9ny", - "HeaderAudioTracks": "Audio stopy", - "HeaderLibraries": "Knihovny", - "HeaderSubtitles": "Titulky", - "HeaderVideoQuality": "Kvalita videa", - "MessageErrorPlayingVideo": "Nastala chyba p\u0159i p\u0159ehr\u00e1v\u00e1n\u00ed videa.", - "MessageEnsureOpenTuner": "Pros\u00edm ujist\u011bte se, \u017ee je otev\u0159en\u00fd tuner dostupn\u00fd.", - "ButtonHome": "Dom\u016f", - "ButtonDashboard": "Hlavn\u00ed nab\u00eddka", - "ButtonReports": "Hl\u00e1\u0161en\u00ed", - "ButtonMetadataManager": "Spr\u00e1vce metadat", - "HeaderTime": "\u010cas", - "HeaderName": "N\u00e1zev", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "\u00dam\u011blec alba", - "HeaderArtist": "Um\u011blec", - "LabelAddedOnDate": "P\u0159id\u00e1no {0}", - "ButtonStart": "Start", - "HeaderChannels": "Kan\u00e1ly", - "HeaderMediaFolders": "Slo\u017eky m\u00e9di\u00ed", - "HeaderBlockItemsWithNoRating": "Blokov\u00e1n\u00ed obsahu bez informace o hodnocen\u00ed:", - "OptionBlockOthers": "Dal\u0161\u00ed", - "OptionBlockTvShows": "Televizn\u00ed po\u0159ady", - "OptionBlockTrailers": "Upout\u00e1vky", - "OptionBlockMusic": "Hudba", - "OptionBlockMovies": "Filmy", - "OptionBlockBooks": "Knihy", - "OptionBlockGames": "Hry", - "OptionBlockLiveTvPrograms": "Programy Live TV", - "OptionBlockLiveTvChannels": "Kan\u00e1ly Live TV", - "OptionBlockChannelContent": "Obsah internetov\u00e9ho kan\u00e1lu", - "ButtonRevoke": "Odvolat", - "MessageConfirmRevokeApiKey": "Jste si jisti, \u017ee chcete odvolat tento kl\u00ed\u010d API? P\u0159ipojen\u00ed k aplikaci k Emby Server bude n\u00e1siln\u011b ukon\u010deno.", - "HeaderConfirmRevokeApiKey": "Odvolat kl\u00ed\u010d Api", - "ValueContainer": "Kontejner: {0}", - "ValueAudioCodec": "Audio kodeky: {0}", - "ValueVideoCodec": "Video kodeky: {0}", - "ValueCodec": "Kodek: {0}", - "ValueConditions": "Podm\u00ednky: {0}", - "LabelAll": "V\u0161e", - "HeaderDeleteImage": "Smazat obr\u00e1zek", - "MessageFileNotFound": "Soubor nenalezen.", - "MessageFileReadError": "Chyba p\u0159i \u010dten\u00ed tohoto souboru.", - "ButtonNextPage": "Dal\u0161\u00ed str\u00e1nka", - "ButtonPreviousPage": "P\u0159edchoz\u00ed str\u00e1nka", - "ButtonMoveLeft": "Posunout vlevo", - "ButtonMoveRight": "Posunout vpravo", - "ButtonBrowseOnlineImages": "Proch\u00e1zet obr\u00e1zky online", - "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?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Pros\u00edm, zadejte n\u00e1zev nebo extern\u00ed Id.", - "MessageValueNotCorrect": "Zadan\u00e1 hodnota nen\u00ed spr\u00e1vn\u00e1. Pros\u00edm zkuste to znovu.", - "MessageItemSaved": "Polo\u017eka ulo\u017eena.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Ne\u017e budete pokra\u010dovat, p\u0159ijm\u011bte pros\u00edm smluvn\u00ed podm\u00ednky.", - "OptionEnded": "Ukon\u010deno", - "OptionContinuing": "Pokra\u010dov\u00e1n\u00ed", - "OptionOff": "Vypnout", - "OptionOn": "Zapnout", - "ButtonSettings": "Nastaven\u00ed", - "ButtonUninstall": "Odinstalovat", - "HeaderEnabledFields": "Povolen\u00e9 pole", - "HeaderEnabledFieldsHelp": "Zru\u0161te za\u0161krtnut\u00ed, abyste zabr\u00e1nily zm\u011bn\u00e1m dat.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Nedostupn\u00fd lok\u00e1ln\u00ed trailer", - "MissingPrimaryImage": "Nedostupn\u00fd prim\u00e1rn\u00ed obr\u00e1zek.", - "MissingBackdropImage": "Nedostupn\u00fd obr\u00e1zek pozad\u00ed.", - "MissingLogoImage": "Nedostupn\u00e9 logo", - "MissingEpisode": "Chyb\u00ed epizoda.", - "OptionScreenshots": "Sn\u00edmky obrazovky", - "OptionBackdrops": "Pozad\u00ed", - "OptionImages": "Obr\u00e1zky", - "OptionKeywords": "Kl\u00ed\u010dov\u00e1 slova", - "OptionTags": "Tagy", - "OptionStudios": "Studia", - "OptionName": "N\u00e1zev", - "OptionOverview": "P\u0159ehled\/Obsah", - "OptionGenres": "\u017d\u00e1nry", - "OptionParentalRating": "Rodi\u010dovsk\u00e9 hodnocen\u00ed", - "OptionPeople": "Lid\u00e9", - "OptionRuntime": "D\u00e9lka", - "OptionProductionLocations": "M\u00edsto v\u00fdroby", - "OptionBirthLocation": "M\u00edsto narozen\u00ed", - "LabelAllChannels": "V\u0161echny kan\u00e1ly", - "LabelLiveProgram": "\u017dIV\u011a", - "LabelNewProgram": "NOVINKA", - "LabelPremiereProgram": "PREMI\u00c9RA", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Zm\u011bna typu obsahu", - "HeaderChangeFolderTypeHelp": "Chcete-li zm\u011bnit typ, vyjm\u011bte a znovu prohledejte knihovny s nov\u011b p\u0159i\u0159azen\u00fdm typem.", - "HeaderAlert": "Upozorn\u011bn\u00ed", - "MessagePleaseRestart": "Pro dokon\u010den\u00ed aktualizac\u00ed, pros\u00edm, restartujte.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Skr\u00fdt", - "MessageSettingsSaved": "Nastaven\u00ed ulo\u017eeno.", - "ButtonSignOut": "Odhl\u00e1sit se", - "ButtonMyProfile": "M\u016fj profil", - "ButtonMyPreferences": "Moje p\u0159edvolby", - "MessageBrowserDoesNotSupportWebSockets": "Tento prohl\u00ed\u017ee\u010d nepodporuje webov\u00e9 sokety. Pro lep\u0161\u00ed chov\u00e1n\u00ed, zkuste nov\u011bj\u0161\u00ed prohl\u00ed\u017ee\u010d, jako je Chrome, Firefox, IE10 +, Safari (iOS) nebo Operu.", - "LabelInstallingPackage": "Instalace {0}", - "LabelPackageInstallCompleted": "Instalace {0} dokon\u010dena.", - "LabelPackageInstallFailed": "Instalace {0} selhala!!!", - "LabelPackageInstallCancelled": "Instalace {0} zru\u0161ena.", - "TabServer": "Server", - "TabUsers": "U\u017eivatel\u00e9", - "TabLibrary": "Knihovna", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-organizace", - "TabPlugins": "Z\u00e1suvn\u00e9 moduly", - "TabAdvanced": "Pokro\u010dil\u00e9", - "TabHelp": "N\u00e1pov\u011bda", - "TabScheduledTasks": "Napl\u00e1novan\u00e9 \u00falohy", - "ButtonFullscreen": "P\u0159es celou obrazovku", - "ButtonAudioTracks": "Audio stopy", - "ButtonSubtitles": "Titulky", - "ButtonScenes": "Sc\u00e9ny", - "ButtonQuality": "Kvalita", - "HeaderNotifications": "Ozn\u00e1men\u00ed", - "HeaderSelectPlayer": "V\u00fdb\u011br p\u0159ehr\u00e1va\u010de", - "ButtonSelect": "Vybrat", - "ButtonNew": "Nov\u00e9", - "MessageInternetExplorerWebm": "Pro dosa\u017een\u00ed nejlep\u0161\u00edch v\u00fdsledk\u016f s aplikac\u00ed Internet Explorer, nainstalujte z\u00e1suvn\u00fd modul pro p\u0159ehr\u00e1v\u00e1n\u00ed WebM.", - "HeaderVideoError": "Chyba videa", - "ButtonAddToPlaylist": "P\u0159idat do playlistu", - "HeaderAddToPlaylist": "P\u0159idat do playlistu", - "LabelName": "Jm\u00e9no:", - "ButtonSubmit": "Potvrdit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "Nov\u00fd playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Zobrazit", - "ButtonViewSeriesRecording": "Zobrazit nahr\u00e1vky seri\u00e1l\u016f", - "ValueOriginalAirDate": "Datum vys\u00edl\u00e1n\u00ed origin\u00e1lu: {0}", - "ButtonRemoveFromPlaylist": "Odebrat z playlistu", - "HeaderSpecials": "Speci\u00e1ly", - "HeaderTrailers": "Trailery", - "HeaderAudio": "Zvuk", - "HeaderResolution": "Rozli\u0161en\u00ed", - "HeaderVideo": "Video", - "HeaderRuntime": "D\u00e9lka", - "HeaderCommunityRating": "Hodnocen\u00ed komunity", - "HeaderPasswordReset": "Obnova hesla", - "HeaderParentalRating": "Rodi\u010dovsk\u00e9 hodnocen\u00ed", - "HeaderReleaseDate": "Datum vyd\u00e1n\u00ed", - "HeaderDateAdded": "Datum p\u0159id\u00e1n\u00ed", - "HeaderSeries": "Seri\u00e1l", - "HeaderSeason": "Sez\u00f3na", - "HeaderSeasonNumber": "\u010c\u00edslo sez\u00f3ny", - "HeaderNetwork": "S\u00ed\u0165", - "HeaderYear": "Rok", - "HeaderGameSystem": "Syst\u00e9m hry", - "HeaderPlayers": "Hr\u00e1\u010di", - "HeaderEmbeddedImage": "Vlo\u017een\u00fd obr\u00e1zek", - "HeaderTrack": "Stopa", - "HeaderDisc": "Disk", - "OptionMovies": "Filmy", - "OptionCollections": "Kolekce", - "OptionSeries": "Seri\u00e1l", - "OptionSeasons": "Sez\u00f3na", - "OptionEpisodes": "Episody", - "OptionGames": "Hry", - "OptionGameSystems": "Hern\u00ed syst\u00e9my", - "OptionMusicArtists": "Hudebn\u00ed \u00fam\u011blci", - "OptionMusicAlbums": "Hudebn\u00ed alba", - "OptionMusicVideos": "Hudebn\u00ed klipy", - "OptionSongs": "Songy", - "OptionHomeVideos": "Dom\u00e1c\u00ed videa", - "OptionBooks": "Knihy", - "OptionAdultVideos": "Videa pro dosp\u011bl\u00e9", - "ButtonUp": "Zes\u00edlit", - "ButtonDown": "Zeslabit", - "LabelMetadataReaders": "\u010cte\u010dky metadat:", - "LabelMetadataReadersHelp": "Se\u0159a\u010fte sv\u00e9 preferovan\u00e9 lok\u00e1ln\u00ed zdroje metadat dle priority. Prvn\u00ed nalezen\u00e1 data budou na\u010dtena.", - "LabelMetadataDownloaders": "Stahova\u010de metadat:", - "LabelMetadataDownloadersHelp": "Povol\u00ed \u0159azen\u00ed va\u0161ich preferovan\u00fdch stahova\u010d\u016f metadat podle priority. Stahova\u010d s ni\u017e\u0161\u00ed prioritou bude pou\u017eit pouze k dopln\u011bn\u00ed chyb\u011bj\u00edc\u00edch informac\u00ed.", - "LabelMetadataSavers": "St\u0159adatel\u00e9 metadat:", - "LabelMetadataSaversHelp": "Vyberte form\u00e1ty soubor\u016f pro ulo\u017een\u00ed metadat.", - "LabelImageFetchers": "Stahova\u010d obr\u00e1zk\u016f:", - "LabelImageFetchersHelp": "Povol\u00ed \u0159azen\u00ed stahova\u010d\u016f obr\u00e1zk\u016f dle priority.", - "ButtonQueueAllFromHere": "Za\u0159adit v\u0161e do fronty", - "ButtonPlayAllFromHere": "P\u0159ehr\u00e1t v\u0161e odsud", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identifikuj polo\u017eku", - "PersonTypePerson": "Osoba", - "LabelTitleDisplayOrder": "Po\u0159ad\u00ed zobrazen\u00ed n\u00e1zv\u016f:", - "OptionSortName": "Set\u0159\u00eddit dle n\u00e1zvu", - "OptionReleaseDate": "Datum vyd\u00e1n\u00ed", - "LabelSeasonNumber": "\u010c\u00edslo sez\u00f3ny:", - "LabelDiscNumber": "\u010c\u00edslo disku", - "LabelParentNumber": "\u010c\u00edslo p\u0159edch\u016fdce", - "LabelEpisodeNumber": "\u010c\u00edslo epizody:", - "LabelTrackNumber": "\u010c\u00edslo stopy:", - "LabelNumber": "\u010c\u00edslo:", - "LabelReleaseDate": "Datum vyd\u00e1n\u00ed:", - "LabelEndDate": "Datum ukon\u010den\u00ed:", - "LabelYear": "Rok:", - "LabelDateOfBirth": "Datum narozen\u00ed:", - "LabelBirthYear": "Rok narozen\u00ed:", - "LabelBirthDate": "Datum narozen\u00ed:", - "LabelDeathDate": "Datum \u00famrt\u00ed:", - "HeaderRemoveMediaLocation": "Odebrat um\u00edst\u011bn\u00ed media", - "MessageConfirmRemoveMediaLocation": "Jste si jist, \u017ee chcete odstranit toto um\u00edst\u011bn\u00ed?", - "HeaderRenameMediaFolder": "P\u0159ejmenovat slo\u017eku m\u00e9di\u00ed", - "LabelNewName": "Nov\u00fd n\u00e1zev:", - "HeaderAddMediaFolder": "P\u0159idat slo\u017eku medi\u00ed", - "HeaderAddMediaFolderHelp": "N\u00e1zev (Film\u016f, Hudby, Seri\u00e1l\u016f, atd.):", - "HeaderRemoveMediaFolder": "Odebrat slo\u017eku m\u00e9di\u00ed", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "N\u00e1sleduj\u00edc\u00ed m\u00edsta m\u00e9di\u00ed budou odstran\u011bny z knihovny:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Jste si jist, \u017ee chcete odstranit tuto slo\u017eku m\u00e9di\u00ed?", - "ButtonRename": "P\u0159ejmenovat", - "ButtonChangeContentType": "Zm\u011bnit typ obsahu", - "HeaderMediaLocations": "Slo\u017eky m\u00e9di\u00ed", - "LabelContentTypeValue": "Typ obsahu: {0}", - "LabelPathSubstitutionHelp": "Voliteln\u00e9: Nahrazen\u00edm cest m\u016f\u017eete namapovat serverov\u00e9 cesty se sd\u00edlen\u00fdmi s\u00ed\u0165ov\u00fdmi slo\u017ekami, ke kter\u00fdm mohou klienti z\u00edskat p\u0159\u00edm\u00fd p\u0159\u00edstup pro p\u0159ehr\u00e1n\u00ed.", - "FolderTypeUnset": "Nenastaveno (sm\u00ed\u0161en\u00fd obsah)", - "FolderTypeMovies": "Filmy", - "FolderTypeMusic": "Hudba", - "FolderTypeAdultVideos": "Filmy pro dosp\u011bl\u00e9", - "FolderTypePhotos": "Fotky", - "FolderTypeMusicVideos": "Hudebn\u00ed klipy", - "FolderTypeHomeVideos": "Dom\u00e1c\u00ed video", - "FolderTypeGames": "Hry", - "FolderTypeBooks": "Knihy", - "FolderTypeTvShows": "TV", - "TabMovies": "Filmy", - "TabSeries": "S\u00e9rie", - "TabEpisodes": "Epizody", - "TabTrailers": "Uk\u00e1zky\/trailery", - "TabGames": "Hry", - "TabAlbums": "Alba", - "TabSongs": "Skladby", - "TabMusicVideos": "Hudebn\u00ed videa", - "BirthPlaceValue": "M\u00edsto narozen\u00ed: {0}", - "DeathDateValue": "Zem\u0159el: {0}", - "BirthDateValue": "Narozen: {0}", - "HeaderLatestReviews": "Posledn\u00ed recenze", - "HeaderPluginInstallation": "Instalace z\u00e1suvn\u00fdch modul\u016f", - "MessageAlreadyInstalled": "Tato verze je ji\u017e nainstalov\u00e1na.", - "ValueReviewCount": "{0} Recenz\u00ed", - "MessageYouHaveVersionInstalled": "V sou\u010dasn\u00e9 dob\u011b m\u00e1te instalov\u00e1nu verzi {0}.", - "MessageTrialExpired": "Zku\u0161ebn\u00ed obdob\u00ed pro tuto funkci ji\u017e vypr\u0161elo", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "Tento z\u00e1suvn\u00fd modul mus\u00ed b\u00fdt instalov\u00e1n z aplikace, kter\u00fd jej pou\u017e\u00edv\u00e1.", - "ValuePriceUSD": "N\u00e1klady: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Odstranit", - "HeaderEmbyAccountAdded": "Emby \u00fa\u010det p\u0159id\u00e1n", - "MessageEmbyAccountAdded": "Emby \u00fa\u010det byl p\u0159id\u00e1no k tomuto u\u017eivateli.", - "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.", - "HeaderEmbyAccountRemoved": "Emby \u00fa\u010det odebr\u00e1n", - "MessageEmbyAccontRemoved": "\u00da\u010det Emby byl odstran\u011bn pro tohoto u\u017eivatele.", - "TooltipLinkedToEmbyConnect": "Spojeno s Emby Connect", - "HeaderUnrated": "Nehodnoceno", - "ValueDiscNumber": "Disk {0}", - "HeaderUnknownDate": "Datum nezn\u00e1m\u00fd", - "HeaderUnknownYear": "Rok nezn\u00e1m\u00fd", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "P\u0159ehr\u00e1t s extern\u00edm p\u0159ehr\u00e1va\u010dem", - "HeaderSelectExternalPlayer": "Vybrat extern\u00ed p\u0159ehr\u00e1va\u010d", - "HeaderExternalPlayerPlayback": "P\u0159ehr\u00e1t v extern\u00edm p\u0159ehr\u00e1va\u010di", - "ButtonImDone": "Jsem hotov", - "OptionWatched": "Shl\u00e9dnuto", - "OptionUnwatched": "Neshl\u00e9dnuto", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Ozna\u010dit jako:", - "OptionInProgress": "V procesu", - "LabelResumePoint": "Bod pokra\u010dov\u00e1n\u00ed:", - "ValueOneMovie": "1 film", - "ValueMovieCount": "{0} film\u016f", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailer\u016f", - "ValueOneSeries": "1 seri\u00e1l", - "ValueSeriesCount": "{0} seri\u00e1l\u016f", - "ValueOneEpisode": "1 epizoda", - "ValueEpisodeCount": "{0} epizod", - "ValueOneGame": "1 hra", - "ValueGameCount": "{0} her", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} alb", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} song\u016f", - "ValueOneMusicVideo": "1 hudebn\u00ed klip", - "ValueMusicVideoCount": "{0} hudebn\u00edch klip\u016f", - "HeaderOffline": "offline", - "HeaderUnaired": "Nevys\u00edl\u00e1no", - "HeaderMissing": "Chyb\u00ed", - "ButtonWebsite": "Webov\u00e9 str\u00e1nky", - "TooltipFavorite": "Obl\u00edben\u00e9", - "TooltipLike": "M\u00e1m r\u00e1d", - "TooltipDislike": "Nem\u00e1m r\u00e1d", - "TooltipPlayed": "P\u0159ehr\u00e1no", - "ValueSeriesYearToPresent": "{0}-Sou\u010dasnost", - "ValueAwards": "Ocen\u011bn\u00ed: {0}", - "ValueBudget": "Rozpo\u0159et: {0}", - "ValueRevenue": "P\u0159\u00edjem: {0}", - "ValuePremiered": "Uvedeno {0}", - "ValuePremieres": "Premi\u00e9ry {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studia: {0}", - "ValueStatus": "Stav: {0}", - "ValueSpecialEpisodeName": "Speci\u00e1l - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Odkazy: {0}", - "HeaderPeople": "Lid\u00e9", - "HeaderCastAndCrew": "Herci a obsazen\u00ed", - "ValueArtist": "Herci: {0}", - "ValueArtists": "Herci: {0}", - "HeaderTags": "Tagy", - "MediaInfoCameraMake": "Zna\u010dka fotoapar\u00e1tu", - "MediaInfoCameraModel": "Model fotoapar\u00e1tu", - "MediaInfoAltitude": "Nadmo\u0159sk\u00e1 v\u00fd\u0161ka", - "MediaInfoAperture": "Sv\u011btelnost", - "MediaInfoExposureTime": "Doba expozice", - "MediaInfoFocalLength": "Ohniskov\u00e1 vzd\u00e1lenost", - "MediaInfoOrientation": "Orientace", - "MediaInfoIsoSpeedRating": "ISO citlivost", - "MediaInfoLatitude": "Zem\u011bpisn\u00e1 \u0161\u00ed\u0159ka", - "MediaInfoLongitude": "Zem\u011bpisn\u00e1 d\u00e9lka", - "MediaInfoShutterSpeed": "Rychlost uz\u00e1v\u011brky", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "Pokud se v\u00e1m l\u00edb\u00ed {0}, pak se m\u016f\u017ee l\u00edbit ...", - "HeaderPlotKeywords": "Kl\u00ed\u010dov\u00e1 slova obsahu", - "HeaderMovies": "Filmy", - "HeaderAlbums": "Alba", - "HeaderGames": "Hry", - "HeaderBooks": "Knihy", - "HeaderEpisodes": "Epizody", - "HeaderSeasons": "Sez\u00f3ny", - "HeaderTracks": "Stopy", - "HeaderItems": "Polo\u017eky", - "HeaderOtherItems": "Dal\u0161\u00ed polo\u017eky", - "ButtonFullReview": "Kompletn\u00ed p\u0159ehled", - "ValueAsRole": "jako {0}", - "ValueGuestStar": "Hostuj\u00edc\u00ed hv\u011bzda", - "MediaInfoSize": "Velikost", - "MediaInfoPath": "Cesta k souboru", - "MediaInfoFile": "File", - "MediaInfoFormat": "Form\u00e1t", - "MediaInfoContainer": "Kontejner", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Vynucen\u00e9", - "MediaInfoExternal": "Extern\u00ed", - "MediaInfoTimestamp": "\u010casov\u00e9 raz\u00edtko", - "MediaInfoPixelFormat": "Pixel form\u00e1t", - "MediaInfoBitDepth": "Po\u010det bit\u016f na pixel", - "MediaInfoSampleRate": "Vzorkovac\u00ed frekvence", - "MediaInfoBitrate": "Datov\u00fd tok", - "MediaInfoChannels": "Kan\u00e1ly", - "MediaInfoLayout": "Rozvr\u017een\u00ed", - "MediaInfoLanguage": "Jazyk", - "MediaInfoCodec": "Kodek", - "MediaInfoCodecTag": "Zna\u010dka kodeku", - "MediaInfoProfile": "Profil", - "MediaInfoLevel": "\u00darove\u0148", - "MediaInfoAspectRatio": "Pom\u011br stran", - "MediaInfoResolution": "Rozli\u0161en\u00ed", - "MediaInfoAnamorphic": "Anamorfn\u00ed nastaven\u00ed", - "MediaInfoInterlaced": "Prokl\u00e1dan\u00e9", - "MediaInfoFramerate": "Sn\u00edmkov\u00e1 frekvence", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Titulky", - "MediaInfoStreamTypeEmbeddedImage": "Vlo\u017een\u00fd obr\u00e1zek", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "P\u0159ehr\u00e1v\u00e1n\u00ed", - "TabNotifications": "Ozn\u00e1men\u00ed", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Hodnocen\u00ed a recenze", - "HeaderThankYou": "D\u011bkuji", - "MessageThankYouForYourReview": "D\u00edky za va\u0161\u00ed recenzi.", - "LabelYourRating": "Tv\u00e9 hodnocen\u00ed:", - "LabelFullReview": "Cel\u00e1 recenze:", - "LabelShortRatingDescription": "Kr\u00e1tk\u00e9 shrnut\u00ed hodnocen\u00ed:", - "OptionIRecommendThisItem": "Doporu\u010duji tuto polo\u017eku", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Podr\u017ete ukazatel my\u0161i nad jak\u00fdmkoliv plak\u00e1tem pro rychl\u00fd p\u0159\u00edstup k d\u016fle\u017eit\u00fdm informac\u00edm", - "WebClientTourTapHold": "Klikn\u011bte a podr\u017ete nebo pou\u017eijte prav\u00e9 tla\u010d\u00edtko my\u0161i nad jak\u00fdmkoliv plak\u00e1tem pro kontextov\u00e9 menu", - "WebClientTourMetadataManager": "Kliknut\u00edm na tla\u010d\u00edtko \"Editovat\" otev\u0159ete spr\u00e1vce metadat", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Vytvo\u0159it filmov\u00e9 kolekce seskupen\u00edm obal\u016f.", - "WebClientTourUserPreferences1": "U\u017eivatelsk\u00e1 nastaven\u00ed umo\u017e\u0148uj\u00ed p\u0159izp\u016fsobit prezentaci va\u0161ich knihoven ve v\u0161ech va\u0161ich Emby aplikac\u00edch.", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Konfigurace pozad\u00ed, t\u00e9matick\u00e9 hudby a extern\u00edch p\u0159ehr\u00e1va\u010d\u016f", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Synchronizujte va\u0161e osobn\u00ed m\u00e9dia do sv\u00fdch za\u0159\u00edzen\u00ed pro offline prohl\u00ed\u017een\u00ed.", - "MessageEnjoyYourStay": "U\u017eijte si pobyt", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Snadn\u00e9 vytv\u00e1\u0159en\u00ed u\u017eivatelsk\u00fdch \u00fa\u010dt\u016f pro sv\u00e9 p\u0159\u00e1tele a rodinu s jejich vlastn\u00edmi pr\u00e1vy, p\u0159\u00edstup ke knihovn\u00e1m, rodi\u010dovskou kontrolu a dal\u0161\u00ed.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Instalace z\u00e1suvn\u00fdch modul\u016f, jako jsou internetov\u00e9 video kan\u00e1ly, Live TV, skenery metadat a dal\u0161\u00ed.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Synchronizujte va\u0161e osobn\u00ed m\u00e9dia do sv\u00fdch za\u0159\u00edzen\u00ed pro offline prohl\u00ed\u017een\u00ed.", - "MessageRefreshQueued": "Obnoven\u00ed za\u0159azeno", - "TabDevices": "Za\u0159\u00edzen\u00ed", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload obr\u00e1zku", - "DeviceLastUsedByUserName": "Posledn\u011b pou\u017eil {0}", - "HeaderDeleteDevice": "Odebrat za\u0159\u00edzen\u00ed", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Povolit upload pro fotoapar\u00e1t:", - "HeaderSelectUploadPath": "V\u00fdb\u011br slo\u017eky pro upload", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "P\u0159\u00edstup ke knihovn\u011b", - "ButtonParentalControl": "Rodi\u010dovsk\u00e1 kontrola", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "P\u0159ipojen\u00ed selhalo", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "V\u00fdb\u011br serveru", - "MessagePluginConfigurationRequiresLocalAccess": "Chcete-li nakonfigurovat tento plugin p\u0159ihlaste se p\u0159\u00edmo na m\u00edstn\u00ed server", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "P\u0159ijmout", - "ButtonReject": "Odm\u00edtnout", - "HeaderForgotPassword": "Zapomenut\u00e9 heslo", - "MessageContactAdminToResetPassword": "Kontaktujte, pros\u00edm, va\u0161eho syst\u00e9mov\u00e9ho administr\u00e1tora k obnoven\u00ed va\u0161eho hesla.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "Resetov\u00e1n\u00ed pinu vypr\u0161\u00ed v {0}.", - "MessageInvalidForgotPasswordPin": "Neplatn\u00fd zad\u00e1dn\u00ed pinu. Pros\u00edm zkuste to znovu.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Pozvat hosta", - "ButtonLinkMyEmbyAccount": "Nyn\u00ed propojit se sv\u00fdm \u00fa\u010dtem", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Synchronizace", - "SyncMedia": "Synchronizovat m\u00e9dia", - "HeaderCancelSyncJob": "Zru\u0161it synchronizaci", - "CancelSyncJobConfirmation": "Zru\u0161en\u00edm synchroniza\u010dn\u00edch \u00faloh budou odstran\u011bna synchronizovan\u00e1 m\u00e9dia ze za\u0159\u00edzen\u00ed b\u011bhem p\u0159\u00ed\u0161t\u00edho synchroniza\u010dn\u00edho procesu. Jste si jisti, \u017ee chcete pokra\u010dovat?", - "TabSync": "Synchronizace", - "MessagePleaseSelectDeviceToSyncTo": "Vyberte za\u0159\u00edzen\u00ed k synchronizaci.", - "MessageSyncJobCreated": "\u00daloha Sync vytvo\u0159ena", - "LabelSyncTo": "Sync do:", - "LabelSyncJobName": "N\u00e1zev Sync \u00falohy:", - "LabelQuality": "Kvalita:", - "HeaderSettings": "Nastaven\u00ed", - "OptionAutomaticallySyncNewContent": "Automaticky synchronizovat nov\u00fd obsah", - "OptionAutomaticallySyncNewContentHelp": "Nov\u00fd p\u0159idan\u00fd obsah bude automaticky synchronizov\u00e1n s va\u0161\u00edm za\u0159\u00edzen\u00edm.", - "OptionSyncUnwatchedVideosOnly": "Synchronizovat pouze neshl\u00e9dnut\u00e1 videa", - "OptionSyncUnwatchedVideosOnlyHelp": "Pouze neshl\u00e9dnut\u00e1 videa budou synchronizov\u00e1ny. Videa budou odstran\u011bny ze za\u0159\u00edzen\u00ed, jakmile je zhl\u00e9dnete.", - "LabelItemLimit": "Limit polo\u017eek:", - "LabelItemLimitHelp": "Voliteln\u00e9. Nastaven\u00ed limitu k po\u010dtu polo\u017eek, kter\u00e9 budou synchronizovan\u00e9.", - "MessageBookPluginRequired": "Vy\u017eaduje instalaci Bookshelf z\u00e1suvn\u00e9ho modulu", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Obsah je zobrazen pomoc\u00ed prost\u00fdch slo\u017eek. Pro dosa\u017een\u00ed nejlep\u0161\u00edch v\u00fdsledk\u016f pomoc\u00ed spr\u00e1vce metadat nastavte typy obsahu pod-slo\u017eek.", - "SyncJobItemStatusQueued": "P\u0159id\u00e1no do fronty", - "SyncJobItemStatusConverting": "Konverze", - "SyncJobItemStatusTransferring": "P\u0159enos", - "SyncJobItemStatusSynced": "Synchronizov\u00e1no", - "SyncJobItemStatusFailed": "Selh\u00e1n\u00ed", - "SyncJobItemStatusRemovedFromDevice": "Odebr\u00e1n ze za\u0159\u00edzen\u00ed", - "SyncJobItemStatusCancelled": "Zru\u0161eno", - "LabelProfile": "Profil:", - "LabelBitrateMbps": "Datov\u00fd tok (Mbps):", - "EmbyIntroDownloadMessage": "Chcete-li st\u00e1hnout a nainstalovat Emby Server n\u00e1v\u0161tivte {0}.", - "ButtonNewServer": "Nov\u00fd server", - "ButtonSignInWithConnect": "P\u0159ihl\u00e1sit se pomoc\u00ed Emby Connect", - "HeaderNewServer": "Nov\u00fd server", - "MyDevice": "Moje za\u0159\u00edzen\u00ed", - "ButtonRemote": "Vzd\u00e1len\u00e9 ovl\u00e1d\u00e1n\u00ed", - "TabInfo": "Info", - "TabCast": "Obsazen\u00ed", - "TabScenes": "Sc\u00e9ny", - "HeaderUnlockApp": "Odemknout aplikaci", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Odemkn\u011bte pomoc\u00ed koup\u011b", - "ButtonUnlockPrice": "Odemknout {0} ", - "MessageLiveTvGuideRequiresUnlock": "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.", - "OptionEnableFullscreen": "Povolit celou obrazovku", - "ButtonServer": "Server", - "HeaderAdmin": "Administr\u00e1tor", - "HeaderLibrary": "Knihovna", - "HeaderMedia": "M\u00e9dia", - "ButtonInbox": "Doru\u010den\u00e1 po\u0161ta", - "HeaderAdvanced": "Pokro\u010dil\u00e9", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Vyslovte n\u011bco jako...", - "ButtonTryAgain": "Zkusit znovu", - "HeaderYouSaid": "Zm\u00ednil ses...", - "MessageWeDidntRecognizeCommand": "Je n\u00e1m l\u00edto, p\u0159\u00edkaz nebyl rozpozn\u00e1n.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "Nenalezeny \u017e\u00e1dn\u00e9 polo\u017eky.", - "ButtonManageServer": "Spr\u00e1vce serveru", - "ButtonEditSubtitles": "Editovat titulky", - "ButtonPreferences": "P\u0159edvolby", - "ButtonViewArtist": "Zobrazit \u00fam\u011blce", - "ButtonViewAlbum": "Zobrazit album", - "ButtonEditImages": "Editace obr\u00e1zk\u016f", - "ErrorMessagePasswordNotMatchConfirm": "Potvrzen\u00ed Hesla a Heslo se mus\u00ed shodovat.", - "ErrorMessageUsernameInUse": "U\u017eivatelsk\u00e9 jm\u00e9no se ji\u017e pou\u017e\u00edv\u00e1. Pros\u00edm, vyberte nov\u00fd n\u00e1zev a zkuste to znovu.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Sd\u00edlet", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Sd\u00edlet", - "HeaderConfirm": "Souhlas", - "ButtonAdvancedRefresh": "Pokro\u010dil\u00e9 obnoven\u00ed", - "MessageConfirmDeleteTunerDevice": "Jste si jisti, \u017ee chcete smazat tento p\u0159\u00edstroj?", - "MessageConfirmDeleteGuideProvider": "Jste si jisti, \u017ee chcete smazat tohoto poskytovatele programov\u00e9ho pr\u016fvodce?", - "HeaderDeleteProvider": "Odebrat poskytovatele", - "HeaderAddProvider": "P\u0159idat poskytovatele", - "ErrorAddingTunerDevice": "Do\u0161lo k chyb\u011b p\u0159i p\u0159id\u00e1n\u00ed za\u0159\u00edzen\u00ed tuneru. Pros\u00edm, ujist\u011bte se, \u017ee je p\u0159\u00edstupn\u00fd a zkuste to znovu.", - "ErrorSavingTvProvider": "P\u0159i ukl\u00e1d\u00e1n\u00ed poskytovatele TV do\u0161lo k chyb\u011b. Pros\u00edm, ujist\u011bte se, \u017ee je p\u0159\u00edstupn\u00fd a zkuste to znovu.", - "ErrorGettingTvLineups": "Do\u0161lo k chyb\u011b p\u0159i stahov\u00e1n\u00ed tv lineups. Ujist\u011bte se pros\u00edm, \u017ee zadan\u00e9 informace jsou spr\u00e1vn\u00e9, a zkuste to znovu.", - "MessageCreateAccountAt": "Vytvo\u0159it \u00fa\u010det v {0}", - "ErrorPleaseSelectLineup": "Vyberte seskupen\u00ed a zkuste to znovu. Pokud nejsou k dispozici \u017e\u00e1dn\u00e9 seskupen\u00ed, pak pros\u00edm zkontrolujte, zda va\u0161e u\u017eivatelsk\u00e9 jm\u00e9no, heslo a po\u0161tovn\u00ed sm\u011brovac\u00ed \u010d\u00edslo je spr\u00e1vn\u00e9.s", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Z\u00edskat Emby Premiere", - "ButtonClosePlayVideo": "Zav\u0159\u00edt a p\u0159ehr\u00e1t m\u00e1 m\u00e9dia", - "MessageDidYouKnowCinemaMode": "Vyberte za\u0159azen\u00ed a zkuste to znovu. Pokud nejsou k dispozici \u017e\u00e1dn\u00e1 za\u0159azen\u00ed, pak pros\u00edm zkontrolujte, zda va\u0161e u\u017eivatelsk\u00e9 jm\u00e9no, heslo a po\u0161tovn\u00ed sm\u011brovac\u00ed \u010d\u00edslo je spr\u00e1vn\u00e9.", - "MessageDidYouKnowCinemaMode2": "S re\u017eimem Kino budou p\u0159ed hlavn\u00edm programem p\u0159ehr\u00e1ny trailery a u\u017eivatelsk\u00e1 intra.", - "OptionEnableDisplayMirroring": "Povolit zrcadlen\u00ed zobrazen\u00ed", - "HeaderSyncRequiresSupporterMembership": "Synchronizace vy\u017eaduje aktivn\u00ed p\u0159edplatn\u00e9 Emby Premiere.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Synchronizace vy\u017eaduje p\u0159ipojen\u00ed k Emby serveru s aktivn\u00edm p\u0159edplatn\u00fdm Emby Premiere.", - "ErrorValidatingSupporterInfo": "Do\u0161lo k chyb\u011b p\u0159i ov\u011b\u0159ov\u00e1n\u00ed informac\u00ed o va\u0161em p\u0159edplatn\u00e9m Emby Premiere. Pros\u00edm zkuste to pozd\u011bji.", - "HeaderSync": "Synchronizace", - "LabelLocalSyncStatusValue": "Stav: {0}", - "MessageSyncStarted": "Sync zapo\u010dat", - "OptionPoster": "Plak\u00e1t", - "OptionPosterCard": "Plak\u00e1t", - "OptionTimeline": "\u010casov\u00e1 osa", - "OptionList": "Seznam", - "OptionThumb": "Miniatura", - "OptionThumbCard": "N\u00e1hled", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "Pro slideshow nebyly nalezeny \u017e\u00e1dn\u00e9 obr\u00e1zky.", - "OptionPhotoSlideshow": "Foto slideshow", - "OptionBackdropSlideshow": "Slideshow pro pozad\u00ed", - "HeaderTopPlugins": "Nejl\u00e9pe hodnocen\u00e9 z\u00e1suvn\u00e9 moduly", - "ButtonRecord": "Nahr\u00e1vat", - "ButtonOther": "Dal\u0161\u00ed", - "HeaderSortBy": "Se\u0159adit podle:", - "HeaderSortOrder": "Po\u0159ad\u00ed \u0159azen\u00ed:", - "OptionAscending": "Vzestupn\u011b", - "OptionDescending": "Sestupn\u011b", - "OptionNameSort": "N\u00e1zev", - "OptionTvdbRating": "Tvdb hodnocen\u00ed", - "OptionPremiereDate": "Datum premi\u00e9ry", - "OptionImdbRating": "Hodnocen\u00ed IMDb", - "OptionDatePlayed": "Datum p\u0159ehr\u00e1n\u00ed", - "OptionDateAdded": "Datum p\u0159id\u00e1n\u00ed", - "OptionPlayCount": "Po\u010det p\u0159ehr\u00e1n\u00ed", - "ButtonDisconnect": "Odpojeno", - "OptionAlbumArtist": "Um\u011blec Alba", - "OptionArtist": "Um\u011blec", - "OptionAlbum": "Album", - "OptionTrackName": "N\u00e1zev skladby", - "OptionCommunityRating": "Hodnocen\u00ed komunity", - "ButtonSort": "Se\u0159adit", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filtr", - "OptionCriticRating": "Hodnocen\u00ed kritik\u016f", - "OptionVideoBitrate": "Datov\u00fd tok videa", - "OptionMetascore": "Metask\u00f3re", - "OptionRevenue": "P\u0159\u00edjem", - "OptionBudget": "Rozpo\u010det", - "ForAdditionalLiveTvOptions": "Pro dal\u0161\u00ed mo\u017enosti poskytovatele Live TV, klikn\u011bte na z\u00e1lo\u017eku Extern\u00ed slu\u017eby.", - "ButtonGuide": "Pr\u016fvodce", - "ButtonRecordedTv": "TV nahr\u00e1vky", - "HeaderDisconnectFromPlayer": "Odpojeno od p\u0159ehr\u00e1va\u010de", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Ano", - "ButtonNo": "Ne", - "ButtonRestorePreviousPurchase": "Obnovit n\u00e1kup", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "Pro v\u00e1s", - "ButtonLibrary": "Knihovna", - "ButtonSearch": "Hled\u00e1n\u00ed", - "ButtonNowPlaying": "Nyn\u00ed je p\u0159ehr\u00e1v\u00e1no", - "ButtonViewNewApp": "Zobraz nov\u00e9 aplikace", - "HeaderEmbyForAndroidHasMoved": "Emby pro Android byl p\u0159esunut!", - "MessageEmbyForAndroidHasMoved": "Emby pro Android bylo p\u0159em\u00edst\u011bno do nov\u00e9ho um\u00edst\u011bn\u00ed v obchodu s aplikacemi. Zva\u017ete zda nechcete vyzkou\u0161et novou aplikaci. Sou\u010dasnou aplikaci m\u016f\u017eete nad\u00e1le pou\u017e\u00edvat tak dlouho, jak si budete p\u0159\u00e1t.", - "HeaderNextUp": "O\u010dek\u00e1van\u00e9", - "HeaderLatestMovies": "Posledn\u00ed filmy", - "HeaderLatestEpisodes": "Posledn\u00ed d\u00edly", - "EmbyPremiereMonthly": "M\u011bs\u00ed\u010dn\u00ed Emby Premiere", - "EmbyPremiereMonthlyWithPrice": "M\u011bs\u00ed\u010dn\u00ed Emby Premiere {0}", - "HeaderEmailAddress": "E-mailov\u00e1 adresa", - "TextPleaseEnterYourEmailAddressForSubscription": "Vlo\u017ete e-mailovou adresu, pros\u00edm.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Podm\u00ednky pou\u017eit\u00ed", - "HeaderTryMultiSelect": "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!", - "NumLocationsValue": "{0} slo\u017eky", - "ButtonAddMediaLibrary": "P\u0159idat knihovnu m\u00e9di\u00ed", - "ButtonManageFolders": "Spr\u00e1va slo\u017eek", - "HeaderTryDragAndDrop": "Vyzkou\u0161ej drag'n'drop", - "TryDragAndDropMessage": "Chcete-li zm\u011bnit uspo\u0159\u00e1d\u00e1n\u00ed seznamu skladeb polo\u017eky, jen t\u00e1hni a pus\u0165 (drag&drop). Zkus to!", - "HeaderTryMicrosoftEdge": "Zkuste Microsoft Edge", - "MessageTryMicrosoftEdge": "Pro lep\u0161\u00ed z\u00e1\u017eitek na syst\u00e9mu Windows 10, zkuste nov\u00fd prohl\u00ed\u017ee\u010d Microsoft EDGE.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "Do\u0161lo k chyb\u011b p\u0159i p\u0159id\u00e1n\u00ed sestavy do \u00fa\u010dtu va\u0161eho Direct pl\u00e1nova\u010de. Direct pl\u00e1nova\u010d umo\u017e\u0148uje pouze omezen\u00fd po\u010det sestav na \u00fa\u010det. Mo\u017en\u00e1 se budete muset p\u0159ihl\u00e1sit do webov\u00fdch str\u00e1nek Direct pl\u00e1nova\u010de a p\u0159ed pokra\u010dov\u00e1n\u00edm odstranit ostatn\u00ed v\u00fdpisy ze sv\u00e9ho \u00fa\u010dtu.", - "PleaseAddAtLeastOneFolder": "P\u0159idejte pros\u00edm nejm\u00e9n\u011b jednu slo\u017eku do t\u00e9to knihovny pomoc\u00ed tla\u010d\u00edtka P\u0159idat.", - "ErrorAddingMediaPathToVirtualFolder": "Nastala chyba p\u0159i p\u0159id\u00e1v\u00e1n\u00ed cesty k m\u00e9di\u00edm. Zkontrolujte zda zadan\u00e1 slo\u017eka je validn\u00ed a Emby Server m\u00e1 k t\u00e9to slo\u017ece p\u0159\u00edstup.", - "ErrorRemovingEmbyConnectAccount": "Nastala chyba p\u0159i odebr\u00e1n\u00ed \u00fa\u010dtu Emby Connect. Zkontrolujte zda m\u00e1te aktivn\u00ed internetov\u00e9 p\u0159ipojen\u00ed a zkuste znovu.", - "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Obl\u00edben\u00ed \u00fam\u011blci", - "HeaderFavoriteSongs": "Obl\u00edben\u00e1 hudba", - "HeaderConfirmPluginInstallation": "Potvrzen\u00ed instalace z\u00e1suvn\u00e9ho modulu", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema M\u00f3d", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/da.json b/dashboard-ui/strings/javascript/da.json deleted file mode 100644 index 28a485c7c8..0000000000 --- a/dashboard-ui/strings/javascript/da.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Indstillinger er gemt", - "AddUser": "Tilf\u00f8j bruger", - "Users": "Brugere", - "Delete": "Slet", - "Administrator": "Administrator", - "Password": "Adgangskode", - "DeleteImage": "Slet billede", - "MessageThankYouForSupporting": "Tak for at du st\u00f8tter Emby.", - "MessagePleaseSupportProject": "V\u00e6r venlig at st\u00f8tte Emby.", - "DeleteImageConfirmation": "Er du sikker p\u00e5 du vil slette dette billede?", - "FileReadCancelled": "L\u00e6sning af filen er annulleret.", - "FileNotFound": "Filen blev ikke fundet.", - "FileReadError": "Der opstod en fejl i fors\u00f8get p\u00e5 at l\u00e6se filen.", - "DeleteUser": "Slet bruger.", - "DeleteUserConfirmation": "Er du sikker p\u00e5 du \u00f8nsker at slette denne bruger?", - "PasswordResetHeader": "Nulstil adgangskode", - "PasswordResetComplete": "Adgangskoden er blevet nulstillet.", - "PinCodeResetComplete": "Pinkoden er blevet nulstillet.", - "PasswordResetConfirmation": "Er du sikker p\u00e5 at adgangskoden skal nulstilles?", - "PinCodeResetConfirmation": "Er du sikker p\u00e5 at pinkoden skal nulstilles?", - "HeaderPinCodeReset": "Nulstil pinkode", - "PasswordSaved": "Adgangskoden er gemt.", - "PasswordMatchError": "Adgangskode og bekr\u00e6ft adgangskode skal v\u00e6re ens.", - "OptionRelease": "Officiel udgivelse", - "OptionBeta": "Beta", - "OptionDev": "Dev (Ustabil)", - "UninstallPluginHeader": "Afinstaller plugin", - "UninstallPluginConfirmation": "Er du sikker p\u00e5 du vil afinstallere {0}?", - "NoPluginConfigurationMessage": "Der er ingenting at konfigurere i dette plugin.", - "NoPluginsInstalledMessage": "Der er ikke installeret nogle plugins.", - "BrowsePluginCatalogMessage": "Gennemse vores plugin-katalog for at se tilg\u00e6ngelige plugins.", - "HeaderNewApiKey": "Ny Api n\u00f8gle", - "LabelAppName": "App navn", - "LabelAppNameExample": "F. eks: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Giv applikationen tilladelse til at kommunikere med Emby.", - "MessageKeyEmailedTo": "N\u00f8gle sendt med e-mail til {0}.", - "MessageKeysLinked": "N\u00f8gler sammenknyttet.", - "HeaderConfirmation": "Bekr\u00e6ftelse", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "St\u00f8t Emby-holdet", - "TextEnjoyBonusFeatures": "F\u00e5 bonus funktioner", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Tilf\u00f8j tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "V\u00e6lg dato", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identificer", - "HeaderIdentifyItem": "Identificer genstand", - "LabelRecurringDonationCanBeCancelledHelp": "Tilbagevendende donationer kan afmeldes n\u00e5r som helst fra din PayPal konto.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "Mine medier", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Underretninger", - "ErrorLaunchingChromecast": "Der opstod en fejl ved start af cromecast. Tjek venligst at din enhed er forbundet til det tr\u00e5dl\u00f8se netv\u00e6rk.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Fjern bruger", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Tidsbegr\u00e6nsning: 1 time", - "ValueTimeLimitMultiHour": "Tidsbegr\u00e6nsning: {0} timer", - "HeaderUsers": "Brugere", - "PluginCategoryGeneral": "Generelt", - "PluginCategoryContentProvider": "Indholdsydbydere", - "PluginCategoryScreenSaver": "Pausesk\u00e6rme", - "PluginCategoryTheme": "Temaer", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Sociale netv\u00e6rk", - "PluginCategoryNotifications": "Underretninger", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Kanaler", - "HeaderSearch": "S\u00f8g", - "ValueDateCreated": "Oprettelsesdato: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Film", - "LabelMusicVideo": "Musikvideo", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Standser", - "LabelCancelled": "(annulleret)", - "LabelFailed": "(failed)", - "ButtonHelp": "Hj\u00e6lp", - "ButtonSave": "Gem", - "ButtonDownload": "Hent", - "SyncJobStatusQueued": "Sat i k\u00f8", - "SyncJobStatusConverting": "Konverterer", - "SyncJobStatusFailed": "Fejlet", - "SyncJobStatusCancelled": "Annuleret", - "SyncJobStatusCompleted": "Synkroniseret", - "SyncJobStatusReadyToTransfer": "Klar til overf\u00f8rsel", - "SyncJobStatusTransferring": "Overf\u00f8rer", - "SyncJobStatusCompletedWithError": "Synkroniseret med fejl", - "SyncJobItemStatusReadyToTransfer": "Klar til overf\u00f8rsel", - "LabelCollection": "Samling", - "HeaderAddToCollection": "Tilf\u00f8j til samling", - "HeaderNewCollection": "Ny samling", - "NewCollectionNameExample": "Eksempel: Star Wars samling", - "OptionSearchForInternetMetadata": "S\u00f8g p\u00e5 internettet efter billeder og metadata", - "LabelSelectCollection": "V\u00e6lg samling:", - "HeaderDevices": "Enheder", - "ButtonScheduledTasks": "Planlagte opgaver", - "MessageItemsAdded": "Elementer tilf\u00f8jet", - "ButtonAddToCollection": "Tilf\u00f8j til samling", - "HeaderSelectCertificatePath": "V\u00e6lg certifikatsti", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "Det ser ud til at du for \u00f8jeblikket ikke har nogle enheder ser underst\u00f8tter sync.", - "HeaderWelcomeToProjectServerDashboard": "Velkommen til Emby betjeningspanel", - "HeaderWelcomeToProjectWebClient": "Velkommen til Emby", - "ButtonTakeTheTour": "Vis introduktion", - "HeaderWelcomeBack": "Velkommen tilbage!", - "TitlePlugins": "Tilf\u00f8jelser", - "ButtonTakeTheTourToSeeWhatsNew": "Tag en rundvisning for at se hvad der er nyt", - "MessageNoSyncJobsFound": "Intet sync job blev fundet. Opret sync jobs ved at benytte Sync knapper som findes gennem web-interfacet.", - "HeaderLibraryAccess": "Adgang til biblioteker", - "HeaderChannelAccess": "Adgang til kanaler", - "HeaderDeviceAccess": "Enhedsadgang", - "HeaderSelectDevices": "V\u00e6lg enheder", - "ButtonCancelItem": "Annuller genstand", - "ButtonQueueForRetry": "S\u00e6t et nyt fors\u00f8g i k\u00f8", - "ButtonReenable": "Genaktiver", - "ButtonLearnMore": "L\u00e6r mere", - "SyncJobItemStatusSyncedMarkForRemoval": "Markeret til sletning", - "LabelAbortedByServerShutdown": "(Annulleret grundet server nedlukning)", - "LabelScheduledTaskLastRan": "Sidst k\u00f8rt {0}, og tog {1}.", - "HeaderDeleteTaskTrigger": "Slet Task Trigger", - "MessageDeleteTaskTrigger": "Er du sikker p\u00e5 du \u00f8nsker at slette denne task trigger?", - "MessageNoPluginsInstalled": "Du har ingen plugins installeret.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installeret", - "LabelNumberReviews": "{0} Anmeldelser", - "LabelFree": "Gratis", - "HeaderTo": "Til", - "HeaderPlaybackError": "Fejl i afspilning", - "MessagePlaybackErrorNotAllowed": "Du er p\u00e5 nuv\u00e6rende tidspunkt ikke autoriseret til at afspille dette indhold. Kontakt venligst din systemadministrator for flere detaljer.", - "MessagePlaybackErrorNoCompatibleStream": "Ingen kompatible streams er tilg\u00e6ngelige p\u00e5 nuv\u00e6rende tidspunkt. Pr\u00f8v igen senere eller kontakt din systemadministrator for flere detaljer.", - "MessagePlaybackErrorRateLimitExceeded": "Din afspilningskvote er blevet overskredet. Kontakt venligst din systemadministrator for flere detaljer.", - "MessagePlaybackErrorPlaceHolder": "Det valgte indhold kan ikke afspilles fra denne enhed.", - "HeaderSelectAudio": "V\u00e6lg lydspor", - "HeaderSelectSubtitles": "V\u00e6lg undertekster", - "ButtonMarkForRemoval": "Fjern fra enhed", - "ButtonUnmarkForRemoval": "Annuller fjernelse fra enhed", - "LabelDefaultStream": "(Standard)", - "LabelForcedStream": "(Tvungen)", - "LabelDefaultForcedStream": "(Standard\/Tvungen)", - "LabelUnknownLanguage": "Ukendt sprog", - "MessageConfirmSyncJobItemCancellation": "Er du sikker p\u00e5 du \u00f8nsker at annullere denne genstand?", - "ButtonMute": "Lyd fra", - "ButtonUnmute": "Sl\u00e5 lyd til", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Afspil", - "ButtonEdit": "Rediger", - "ButtonQueue": "K\u00f8", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Afspilningsliste", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Sl\u00e5et til", - "LabelDisabled": "Sl\u00e5et fra", - "ButtonMoreInformation": "Mere information", - "LabelNoUnreadNotifications": "Ingen ul\u00e6ste notifikationer", - "ButtonViewNotifications": "Se notifikationer", - "ButtonMarkTheseRead": "Marker disse som l\u00e6st", - "ButtonClose": "Luk", - "LabelAllPlaysSentToPlayer": "Alle afspilninger vil blive sendt til den valgte afspiller.", - "MessageInvalidUser": "Ukendt brugernavn eller adgangskode. Pr\u00f8v igen.", - "HeaderLoginFailure": "Login fejl", - "HeaderAllRecordings": "Alle optagelser", - "RecommendationBecauseYouLike": "Fordi du kan lide {0}", - "RecommendationBecauseYouWatched": "Fordi du har set {0}", - "RecommendationDirectedBy": "Instrueret af {0}", - "RecommendationStarring": "Hovedrolleindehavere {0}", - "HeaderConfirmRecordingCancellation": "Bekr\u00e6ft annullering af optagelse", - "MessageConfirmRecordingCancellation": "Er du sikker p\u00e5 du \u00f8nsker at annullere denne optagelse?", - "MessageRecordingCancelled": "Optagelse annulleret.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Bekr\u00e6ft annullering af serie", - "MessageConfirmSeriesCancellation": "Er du sikker p\u00e5 du \u00f8nsker at annullere denne serie?", - "MessageSeriesCancelled": "Serie annulleret.", - "HeaderConfirmRecordingDeletion": "Bekr\u00e6ft sletning af optagelse", - "MessageConfirmRecordingDeletion": "Er du sikker p\u00e5 du \u00f8nsker at slette denne optagelse?", - "MessageRecordingDeleted": "Optagelse slettet.", - "ButonCancelRecording": "Annuller optagelse", - "MessageRecordingSaved": "Optagelse gemt.", - "OptionSunday": "S\u00f8ndag", - "OptionMonday": "Mandag", - "OptionTuesday": "Tirsdag", - "OptionWednesday": "Onsdag", - "OptionThursday": "Torsdag", - "OptionFriday": "Fredag", - "OptionSaturday": "L\u00f8rdag", - "OptionEveryday": "Hver dag", - "OptionWeekend": "Weekender", - "OptionWeekday": "Hverdage", - "HeaderConfirmDeletion": "Bekr\u00e6ft sletning", - "MessageConfirmPathSubstitutionDeletion": "Er du sikker p\u00e5 du \u00f8nsker at slette denne stisubstitution?", - "LiveTvUpdateAvailable": "(Opdatering tilg\u00e6ngelig)", - "LabelVersionUpToDate": "Opdateret!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset tuner", - "MessageConfirmResetTuner": "Er du sikker p\u00e5 du \u00f8nsker at resette denne tuner? Alle aktive afspilninger eller optagelser vil stoppe pludseligt.", - "ButtonCancelSeries": "Annuller serie", - "HeaderSeriesRecordings": "Serieoptagelser", - "LabelAnytime": "Alle tidspunkter", - "StatusRecording": "Optagelse", - "StatusWatching": "Ser", - "StatusRecordingProgram": "Optager {0}", - "StatusWatchingProgram": "Ser {0}", - "HeaderSplitMedia": "Opsplit medie", - "MessageConfirmSplitMedia": "Er du sikker p\u00e5 du \u00f8nsker at opsplitte mediekilderne til separate klilder?", - "HeaderError": "Fejl", - "MessageChromecastConnectionError": "Din Chromecast modtager kan ikke forbinde til din Emby Server. Tjek venligst deres forbindelse og pr\u00f8v igen.", - "MessagePleaseSelectOneItem": "V\u00e6lg venligst mindst \u00e9t element.", - "MessagePleaseSelectTwoItems": "V\u00e6lg venligst mindst to elementer.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Fors\u00e6t", - "HeaderMyViews": "Mine visninger", - "HeaderLibraryFolders": "Mediemapper", - "HeaderLatestMedia": "Seneste medier", - "ButtonMoreItems": "More...", - "ButtonMore": "Mere", - "HeaderFavoriteMovies": "Favorit film", - "HeaderFavoriteShows": "Favorit serier", - "HeaderFavoriteEpisodes": "Favorit episoder", - "HeaderFavoriteGames": "Favorit spil", - "HeaderRatingsDownloads": "Bed\u00f8mmelser \/ Downloads", - "HeaderConfirmProfileDeletion": "Bekr\u00e6ft sletning af profil", - "MessageConfirmProfileDeletion": "Er du sikker p\u00e5 du \u00f8nsker at slette denne profil?", - "HeaderSelectServerCachePath": "V\u00e6lg \"Server Cache Path\"", - "HeaderSelectTranscodingPath": "V\u00e6lg \"Transcoding Temporary Path\"", - "HeaderSelectImagesByNamePath": "V\u00e6lg billeder efter navn-sti:", - "HeaderSelectMetadataPath": "V\u00e6lg Metadata Path", - "HeaderSelectServerCachePathHelp": "V\u00e6lg eller indtast stien som skal benyttes til serverens cache filer. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", - "HeaderSelectTranscodingPathHelp": "V\u00e6lg eller indtast stien som skal benyttes til midlertidige transkodningsfiler. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", - "HeaderSelectImagesByNamePathHelp": "V\u00e6lg eller indtast stien som f\u00f8rer til mappen med dine elmenter per navn. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", - "HeaderSelectMetadataPathHelp": "V\u00e6lg eller indtast stien for hvor du \u00f8nsker at gemme din metadata. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", - "HeaderSelectChannelDownloadPath": "V\u00e6lg sti for hentning af kanalindhold", - "HeaderSelectChannelDownloadPathHelp": "V\u00e6lg eller indtast stien for hvor du \u00f8nsker at gemme kanalindholds cache filer. Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", - "OptionNewCollection": "Ny...", - "ButtonAdd": "Tilf\u00f8j", - "ButtonRemove": "Fjern", - "LabelChapterDownloaders": "Kapitel downloadere:", - "LabelChapterDownloadersHelp": "Aktiver og ranger dine fortrukne kapitel downloadere i en prioriteret r\u00e6kkef\u00f8lge. Lavt rangerende downloadere bliver kun benyttet til at udfylde manglende information.", - "HeaderFavoriteAlbums": "Favoritalbums", - "HeaderLatestChannelMedia": "Seneste kanalenheder", - "ButtonOrganizeFile": "Organiser fil", - "ButtonDeleteFile": "Slet fil", - "HeaderOrganizeFile": "Organiser fil", - "HeaderDeleteFile": "Slet fil", - "StatusSkipped": "Oversprunget", - "StatusFailed": "Fejlet", - "StatusSuccess": "Succes", - "MessageFileWillBeDeleted": "Den f\u00f8lgende fil vil blive slettet:", - "MessageSureYouWishToProceed": "\u00d8nsker du at forts\u00e6tte?", - "MessageDuplicatesWillBeDeleted": "Derudover vil f\u00f8lgende duplikater blive slettet:", - "MessageFollowingFileWillBeMovedFrom": "Den f\u00f8lgende fil vil blive flyttet fra:", - "MessageDestinationTo": "til:", - "HeaderSelectWatchFolder": "V\u00e6lg en Watch Folder", - "HeaderSelectWatchFolderHelp": "V\u00e6lg eller indtast stien til din \"watch folder\". Mappen m\u00e5 ikke v\u00e6re skrivebeskyttet.", - "OrganizePatternResult": "Resultat: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Genstart", - "HeaderShutdown": "Luk", - "MessageConfirmRestart": "Er du sikker p\u00e5 du \u00f8nsker at genstarte Emby?", - "MessageConfirmShutdown": "Er du sikker p\u00e5 du \u00f8nsker at lukke Emby?", - "ButtonUpdateNow": "Opdater nu", - "ValueItemCount": "{0} elment", - "ValueItemCountPlural": "{0} elementer", - "NewVersionOfSomethingAvailable": "En ny version af {0} er tilg\u00e6ngelig!", - "VersionXIsAvailableForDownload": "Version {0} kan nu downloades.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transkoding", - "LabelPlayMethodDirectStream": "Direkte streaming", - "LabelPlayMethodDirectPlay": "Direkte afspilning", - "LabelAudioCodec": "Lyd: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Lokal adgang: {0}", - "LabelRemoteAccessUrl": "Fjernadgang: {0}", - "LabelRunningOnPort": "K\u00f8rer p\u00e5 http port {0}.", - "LabelRunningOnPorts": "K\u00f8rer p\u00e5 http port {0}, og https port {1}.", - "HeaderLatestFromChannel": "Seneste fra {0}", - "LabelUnknownLanaguage": "Ukendt sprog", - "HeaderCurrentSubtitles": "Nuv\u00e6rende undertekster", - "MessageDownloadQueued": "Downloadet er sat i k\u00f8.", - "MessageAreYouSureDeleteSubtitles": "Er du sikker p\u00e5 du \u00f8nsker at slette denne undertekstfil?", - "ButtonRemoteControl": "Fjernstyring", - "HeaderLatestTvRecordings": "Seneste optagelser", - "ButtonOk": "Ok", - "ButtonCancel": "Annuller", - "ButtonRefresh": "Opdater", - "LabelCurrentPath": "Nuv\u00e6rende sti:", - "HeaderSelectMediaPath": "V\u00e6lg mediesti", - "HeaderSelectPath": "V\u00e6lg sti", - "ButtonNetwork": "Netv\u00e6rk", - "MessageDirectoryPickerInstruction": "Netv\u00e6rksstier kan indtastes manuelt i tilf\u00e6lde af at netv\u00e6rksknappen ikke kan lokalisere dine enheder. Foreksempel, {0} eller {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "\u00c5ben", - "ButtonOpenInNewTab": "\u00c5ben i ny fane", - "ButtonShuffle": "Bland", - "ButtonInstantMix": "Instant Mix", - "ButtonResume": "Genoptag", - "HeaderScenes": "Scener", - "HeaderAudioTracks": "Lydspor", - "HeaderLibraries": "Bibliotekter", - "HeaderSubtitles": "Undertekster", - "HeaderVideoQuality": "Videokvalitet", - "MessageErrorPlayingVideo": "Der opstod en fejl under afspilning af videoen.", - "MessageEnsureOpenTuner": "Sikre dig at en \u00e5ben tuner er tilg\u00e6ngelig.", - "ButtonHome": "Hjem", - "ButtonDashboard": "Betjeningspanel", - "ButtonReports": "Rapporter", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Tid", - "HeaderName": "Navn", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album kunstner", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Tilf\u00f8jet {0}", - "ButtonStart": "Start", - "HeaderChannels": "Kanaler", - "HeaderMediaFolders": "Mediemapper", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Andre", - "OptionBlockTvShows": "TV serier", - "OptionBlockTrailers": "Trailere", - "OptionBlockMusic": "Musik", - "OptionBlockMovies": "Film", - "OptionBlockBooks": "B\u00f8ger", - "OptionBlockGames": "Spil", - "OptionBlockLiveTvPrograms": "Live TV-programmer", - "OptionBlockLiveTvChannels": "Live TV-kanaler", - "OptionBlockChannelContent": "Internet kanalindhold", - "ButtonRevoke": "Invalider", - "MessageConfirmRevokeApiKey": "Er du sikker p\u00e5 du \u00f8nsker at invalidere denne api n\u00f8gle? Applikationens forbindelse til Emby vil blive afbrudt \u00f8jeblikkeligt.", - "HeaderConfirmRevokeApiKey": "Invalider Api n\u00f8gle", - "ValueContainer": "Beholder: {0}", - "ValueAudioCodec": "Audio codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Forhold: {0}", - "LabelAll": "Alle", - "HeaderDeleteImage": "Slet billede", - "MessageFileNotFound": "Fil blev ikke fundet.", - "MessageFileReadError": "Der opstod en fejl i fors\u00f8get p\u00e5 at l\u00e6se filen.", - "ButtonNextPage": "N\u00e6ste side", - "ButtonPreviousPage": "Forrige side", - "ButtonMoveLeft": "Flyt til venstre", - "ButtonMoveRight": "Flyt til h\u00f8jre", - "ButtonBrowseOnlineImages": "Gennemse online billeder", - "HeaderDeleteItem": "Slet element", - "ConfirmDeleteItem": "Hvis dette element slettes, fjernes det b\u00e5de fra dit filsystem samt din mediebibliotek. Er du sikker p\u00e5 du \u00f8nsker at forts\u00e6tte?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Indtast venligst et navn eller eksternt Id.", - "MessageValueNotCorrect": "Det indtastede v\u00e6rdi er ikke korrekt. Pr\u00f8v igen.", - "MessageItemSaved": "Element gemt.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Accepter venligst tjenestevilk\u00e5rene f\u00f8r du forts\u00e6tter.", - "OptionEnded": "F\u00e6rdig", - "OptionContinuing": "Fors\u00e6ttes", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Indstillinger", - "ButtonUninstall": "Afinstaller", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Mangler lokal trailer.", - "MissingPrimaryImage": "Mangler prim\u00e6rt billede", - "MissingBackdropImage": "Mangler baggrundsbillede.", - "MissingLogoImage": "Mangler logo.", - "MissingEpisode": "Mangler episode.", - "OptionScreenshots": "Sk\u00e6rmbilleder", - "OptionBackdrops": "Baggrunde", - "OptionImages": "Billeder", - "OptionKeywords": "N\u00f8gleord", - "OptionTags": "Tags", - "OptionStudios": "Studier", - "OptionName": "Navn", - "OptionOverview": "Oversigt", - "OptionGenres": "Genrer", - "OptionParentalRating": "Aldersgr\u00e6nse", - "OptionPeople": "Personer", - "OptionRuntime": "Varighed", - "OptionProductionLocations": "Produktionslokationer", - "OptionBirthLocation": "F\u00f8dselssted", - "LabelAllChannels": "Alle kanaler", - "LabelLiveProgram": "DIREKTE", - "LabelNewProgram": "NY", - "LabelPremiereProgram": "PR\u00c6MIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "\u00c6ndre indholdstype", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Advarsel", - "MessagePleaseRestart": "Genstart venligst for at afslutte opdateringen.", - "ButtonRestart": "Genstart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Gem", - "MessageSettingsSaved": "Indstillinger er gemt.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "Min profil", - "ButtonMyPreferences": "Mine indstillinger", - "MessageBrowserDoesNotSupportWebSockets": "Denne browser underst\u00f8tter ikke \"web sockets\". For en bedre oplevelse benyt da en nyere browser s\u00e5 som Chrome, Firefox, IE10+, Safari (iOS) eller Opera.", - "LabelInstallingPackage": "Installerer {0}", - "LabelPackageInstallCompleted": "{0} installation udf\u00f8rt.", - "LabelPackageInstallFailed": "{0} installationen mislykkedes.", - "LabelPackageInstallCancelled": "{0} installation afbrudt.", - "TabServer": "Server", - "TabUsers": "Brugere", - "TabLibrary": "Bibliotek", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Organiser automatisk", - "TabPlugins": "Tilf\u00f8jelser", - "TabAdvanced": "Avanceret", - "TabHelp": "Hj\u00e6lp", - "TabScheduledTasks": "Planlagte opgaver", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Undertekster", - "ButtonScenes": "Scener", - "ButtonQuality": "Kvalitet", - "HeaderNotifications": "Notifikationer", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "V\u00e6lg", - "ButtonNew": "Ny", - "MessageInternetExplorerWebm": "For at opn\u00e5 de bedste resultater med Internet Explorer bedes du installere WebM afspilningstilf\u00f8jelsen.", - "HeaderVideoError": "Video fejl", - "ButtonAddToPlaylist": "Tilf\u00f8j til afspilningsliste", - "HeaderAddToPlaylist": "Tilf\u00f8j til afspilningsliste", - "LabelName": "Navn:", - "ButtonSubmit": "Indsend", - "LabelSelectPlaylist": "Afspilningsliste:", - "OptionNewPlaylist": "Ny afspilningsliste...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Visning", - "ButtonViewSeriesRecording": "Vis serieoptagelse", - "ValueOriginalAirDate": "Blev sendt f\u00f8rste gang: {0}", - "ButtonRemoveFromPlaylist": "Fjer fra afspilningsliste", - "HeaderSpecials": "S\u00e6rudsendelser", - "HeaderTrailers": "Trailere", - "HeaderAudio": "Lyd", - "HeaderResolution": "Opl\u00f8sning", - "HeaderVideo": "Video", - "HeaderRuntime": "Varighed", - "HeaderCommunityRating": "F\u00e6llesskabsvurdering", - "HeaderPasswordReset": "Nulstil adgangskode", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Udgivelsesdato", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "S\u00e6son", - "HeaderSeasonNumber": "S\u00e6sonnummer", - "HeaderNetwork": "Netv\u00e6rk", - "HeaderYear": "Year", - "HeaderGameSystem": "Spilsystem", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Indlejret billede", - "HeaderTrack": "Spor", - "HeaderDisc": "Disk", - "OptionMovies": "Film", - "OptionCollections": "Samlinger", - "OptionSeries": "Serier", - "OptionSeasons": "S\u00e6soner", - "OptionEpisodes": "Episoder", - "OptionGames": "Spil", - "OptionGameSystems": "Spilsystemer", - "OptionMusicArtists": "Musikartister", - "OptionMusicAlbums": "Musikalbummer", - "OptionMusicVideos": "Musikvideoer", - "OptionSongs": "Sange", - "OptionHomeVideos": "Hjemmevideoer", - "OptionBooks": "B\u00f8ger", - "OptionAdultVideos": "Voksenfilm", - "ButtonUp": "Op", - "ButtonDown": "Ned", - "LabelMetadataReaders": "Metadata afl\u00e6sere:", - "LabelMetadataReadersHelp": "Ranger dine fortrukne lokale metadatakilder i prioriteret r\u00e6kkef\u00f8lge. Den f\u00f8rst fundne fil vil blive afl\u00e6st.", - "LabelMetadataDownloaders": "Metadata downloadere:", - "LabelMetadataDownloadersHelp": "Aktiver og ranger dine fortrukne metadata downloadere i en prioriteret r\u00e6kkef\u00f8lge. Lavt rangerende downloadere bliver kun benyttet til at udfylde manglende information.", - "LabelMetadataSavers": "Metadata-gemmer:", - "LabelMetadataSaversHelp": "V\u00e6lg de filformater du \u00f8nsker din metadata gemmes som.", - "LabelImageFetchers": "Billede-henter:", - "LabelImageFetchersHelp": "Aktiver og ranger dine fortrukne billede-hentere i en prioriteret r\u00e6kkef\u00f8lge.", - "ButtonQueueAllFromHere": "Set alt her i k\u00f8", - "ButtonPlayAllFromHere": "Afspil alt fra her", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identificer genstand", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Titelvisningsorden:", - "OptionSortName": "Sorteringsnavn", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disk nummer", - "LabelParentNumber": "Parent nummer", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Spor nummer:", - "LabelNumber": "Nummer:", - "LabelReleaseDate": "Udgivelsesdato:", - "LabelEndDate": "Slutdato:", - "LabelYear": "\u00c5r:", - "LabelDateOfBirth": "F\u00f8dselsdato:", - "LabelBirthYear": "F\u00f8dsels\u00e5r:", - "LabelBirthDate": "F\u00f8dselsdato:", - "LabelDeathDate": "D\u00f8dsdato:", - "HeaderRemoveMediaLocation": "Fjern medielokalisation", - "MessageConfirmRemoveMediaLocation": "Er du sikker p\u00e5 du \u00f8nsker at fjerne denne lokalisation?", - "HeaderRenameMediaFolder": "Omd\u00f8b mediemappe", - "LabelNewName": "Nyt navn:", - "HeaderAddMediaFolder": "Tilf\u00f8j mediemappe", - "HeaderAddMediaFolderHelp": "Navn (Film, Musik, TV, osv.):", - "HeaderRemoveMediaFolder": "Fjern mediemappe", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "F\u00f8lgende medielokationer vil blive fjerne fra dit bibliotek:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Er du sikker p\u00e5 du \u00f8nsker at fjerne denne mediemappe?", - "ButtonRename": "Omd\u00f8b", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Medielokationer", - "LabelContentTypeValue": "Indholdstype: {0}", - "LabelPathSubstitutionHelp": "Valgfri: Stisubstitution kan sammenk\u00e6de serverstier til netv\u00e6rksstier som klienter derved kan tilg\u00e5 for direkte afspilning.", - "FolderTypeUnset": "Ikke valgt (blandet indhold)", - "FolderTypeMovies": "FIlm", - "FolderTypeMusic": "Musik", - "FolderTypeAdultVideos": "Voksenfilm", - "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "Musikvideoer", - "FolderTypeHomeVideos": "Hjemmevideoer", - "FolderTypeGames": "Spil", - "FolderTypeBooks": "B\u00f8ger", - "FolderTypeTvShows": "TV", - "TabMovies": "Film", - "TabSeries": "Serier", - "TabEpisodes": "Episoder", - "TabTrailers": "Trailere", - "TabGames": "Spil", - "TabAlbums": "Albums", - "TabSongs": "Sange", - "TabMusicVideos": "Musikvideoer", - "BirthPlaceValue": "F\u00f8dselssted: {0}", - "DeathDateValue": "D\u00f8dsdato: {0}", - "BirthDateValue": "F\u00f8dt: {0}", - "HeaderLatestReviews": "Seneste anmeldeser", - "HeaderPluginInstallation": "Plugin installation", - "MessageAlreadyInstalled": "Denne version er allerede installeret.", - "ValueReviewCount": "{0} Anmeldelser", - "MessageYouHaveVersionInstalled": "Du har version {0} installeret.", - "MessageTrialExpired": "Pr\u00f8veperioden for denne funktion er udl\u00f8bet", - "MessageTrialWillExpireIn": "Pr\u00f8veperioden for denne funktion udl\u00f8ber om {0} dag(e)", - "MessageInstallPluginFromApp": "Dette plugin skal v\u00e6re installeret inde i den app du \u00f8nsker at benytte det fra.", - "ValuePriceUSD": "Pris: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "Efter denne transaktion er udf\u00f8rt skal du afmelde din tidligere l\u00f8bende donation inde fra din PayPal konto. Tak fordi du st\u00f8tter Emby.", - "ButtonDelete": "Slet", - "HeaderEmbyAccountAdded": "Emby konto tilf\u00f8jet", - "MessageEmbyAccountAdded": "Emby kontoen er blevet tilf\u00f8jet til denne bruger.", - "MessagePendingEmbyAccountAdded": "Emby kontoen er blevet tilf\u00f8jet denne bruger. En email sendes til ejeren af kontoen. Invitationen skal bekr\u00e6ftes ved at klikke p\u00e5 linket i emailen.", - "HeaderEmbyAccountRemoved": "Emby konto fjernet", - "MessageEmbyAccontRemoved": "Emby kontoen er blevet fjernet fra denne bruger.", - "TooltipLinkedToEmbyConnect": "Koblet til Emby Connect", - "HeaderUnrated": "Ingen bed\u00f8mmelse", - "ValueDiscNumber": "Disk {0}", - "HeaderUnknownDate": "Ukendt dato", - "HeaderUnknownYear": "Ukendt \u00e5r", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Afspil med ekstern afspiller", - "HeaderSelectExternalPlayer": "V\u00e6lg ekstern afspiller", - "HeaderExternalPlayerPlayback": "Ekstern afspiller afspilning", - "ButtonImDone": "Jeg er f\u00e6rdig", - "OptionWatched": "Set", - "OptionUnwatched": "Ikke set", - "ExternalPlayerPlaystateOptionsHelp": "Specificer hvordan du gerne vil genoptage afspilningen af denne video n\u00e6ste gang.", - "LabelMarkAs": "Marker som:", - "OptionInProgress": "I gang", - "LabelResumePoint": "Genoptagelsespunkt:", - "ValueOneMovie": "1 film", - "ValueMovieCount": "{0} film", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailere", - "ValueOneSeries": "1 serie", - "ValueSeriesCount": "{0} serier", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episoder", - "ValueOneGame": "1 spil", - "ValueGameCount": "{0} spil", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} album", - "ValueOneSong": "1 sang", - "ValueSongCount": "{0} sange", - "ValueOneMusicVideo": "1 musikvideo", - "ValueMusicVideoCount": "{0} musikvideoer", - "HeaderOffline": "Offline", - "HeaderUnaired": "Ikke sendt", - "HeaderMissing": "Mangler", - "ButtonWebsite": "Hjemmeside", - "TooltipFavorite": "Favorit", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Afspillet", - "ValueSeriesYearToPresent": "{0}-Nu", - "ValueAwards": "Priser: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Indtjening: {0}", - "ValuePremiered": "Pr\u00e6miere {0}", - "ValuePremieres": "Pr\u00e6miere {0}", - "ValueStudio": "Studie: {0}", - "ValueStudios": "Studier: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Gr\u00e6nse:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "Mennesker", - "HeaderCastAndCrew": "Medvirkende", - "ValueArtist": "Kunstner: {0}", - "ValueArtists": "Kunstnere: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Kameram\u00e6rke", - "MediaInfoCameraModel": "Kameramodel", - "MediaInfoAltitude": "H\u00f8jde", - "MediaInfoAperture": "Bl\u00e6nde", - "MediaInfoExposureTime": "Eksponering", - "MediaInfoFocalLength": "Br\u00e6ndvidde", - "MediaInfoOrientation": "Orientering", - "MediaInfoIsoSpeedRating": "Iso hastigheds rating", - "MediaInfoLatitude": "Breddegrad", - "MediaInfoLongitude": "H\u00f8jdegrad", - "MediaInfoShutterSpeed": "Lukkehastighed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "Hvis du kan lide {0}, s\u00e5 tjek disse...", - "HeaderPlotKeywords": "Plot n\u00f8gleord", - "HeaderMovies": "Film", - "HeaderAlbums": "Albums", - "HeaderGames": "Spil", - "HeaderBooks": "B\u00f8ger", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "S\u00e6soner", - "HeaderTracks": "Spor", - "HeaderItems": "Element", - "HeaderOtherItems": "Andre elementer", - "ButtonFullReview": "Fuld anmeldelse", - "ValueAsRole": "som {0}", - "ValueGuestStar": "G\u00e6stestjerne", - "MediaInfoSize": "St\u00f8rrelse", - "MediaInfoPath": "Sti", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Beholder", - "MediaInfoDefault": "Standard", - "MediaInfoForced": "Tvungen", - "MediaInfoExternal": "Ekstern", - "MediaInfoTimestamp": "Tidsstempel", - "MediaInfoPixelFormat": "Pixelformat", - "MediaInfoBitDepth": "Bit dybde", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Kanaler", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Sprog", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profil", - "MediaInfoLevel": "Niveau", - "MediaInfoAspectRatio": "Formatforhold", - "MediaInfoResolution": "Opl\u00f8sning", - "MediaInfoAnamorphic": "Anamorfisk", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Lyd", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Undertekster", - "MediaInfoStreamTypeEmbeddedImage": "Indlejret billede", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Afspilning", - "TabNotifications": "Underretninger", - "TabExpert": "Ekspert", - "HeaderSelectCustomIntrosPath": "V\u00e6lg sti til brugerdefinerede introduktioner", - "HeaderRateAndReview": "Bed\u00f8m og anmeld", - "HeaderThankYou": "Tak", - "MessageThankYouForYourReview": "Tak for din anmeldelse", - "LabelYourRating": "Din bed\u00f8mmelse:", - "LabelFullReview": "Fuld anmeldelse:", - "LabelShortRatingDescription": "Kort bed\u00f8mmelsesresum\u00e9:", - "OptionIRecommendThisItem": "Jeg anbefaler dette", - "WebClientTourContent": "Se dit seneste tilf\u00f8jet media, kommende episoder samt mere. Den gr\u00f8nne cirkel indikerer hvor mange uafspillet elementer du har.", - "WebClientTourMovies": "Afspil film, trailere samt andet fra hvilken som helst enhed med en browser", - "WebClientTourMouseOver": "Hold musen over enhver plakat for hurtig adgang til vigtig information", - "WebClientTourTapHold": "Tryk og hold eller h\u00f8jreklik p\u00e5 enhver plakat for at \u00e5bne en menu for det valgte element", - "WebClientTourMetadataManager": "Klik p\u00e5 rediger for at \u00e5bne metadata manageren", - "WebClientTourPlaylists": "Opret afspilningslister og instant mixes, og afspil dem p\u00e5 enhver enhed", - "WebClientTourCollections": "Opret filmsamlinger s\u00e5 film kan grupperes sammen", - "WebClientTourUserPreferences1": "Brugerindstillinger g\u00f8r det muligt for dig at skr\u00e6ddersy m\u00e5den dit bibliotek pr\u00e6senteres i alle dine Emby apps", - "WebClientTourUserPreferences2": "Konfigurer sproget p\u00e5 dine lyd og undertekstindstillinger \u00e9n gang for alle Emby apps", - "WebClientTourUserPreferences3": "Design webklient hjemmesiden til din egen smag", - "WebClientTourUserPreferences4": "V\u00e6lg baggrunde, temasange og eksterne afspillere", - "WebClientTourMobile1": "Webklienten virker perfekt p\u00e5 smartphones og tablets...", - "WebClientTourMobile2": "og styr let andre enheder og Emby apps", - "WebClientTourMySync": "Synkroniser dine personlige mediefiler til dine enheder s\u00e5 det kan ses offline.", - "MessageEnjoyYourStay": "Nyd dit bes\u00f8g", - "DashboardTourDashboard": "Betjeningspanelet g\u00f8r det muligt at monitorere din server og dine brugere. Du vil altid v\u00e6re i stand til at vide hvem der g\u00f8r hvad samt hvor de er.", - "DashboardTourHelp": "Hj\u00e6lp inde i app'en s\u00f8rger for knapper der let \u00e5bner de wiki-sider der er relateret til hvad der er p\u00e5 din sk\u00e6rm i det \u00f8jeblik.", - "DashboardTourUsers": "Opret let brugerkonti til dine venner og familie, hver med deres egne rettigheder, adgang til biblioteket, for\u00e6ldre-indstillinger samt meget mere.", - "DashboardTourCinemaMode": "Biograftilstand giver dig biografoplevelsen direkte ind i din stue, med muligheden for at vise trailere og brugerdefinerede introduktioner f\u00f8r hovedfilmen.", - "DashboardTourChapters": "Aktiver kapitelbillede-oprettelse for dine videoer for en mere behagelig pr\u00e6sentation mens du afspiller.", - "DashboardTourSubtitles": "Download automatisk undertekster til dine videoer in ethvert sprog.", - "DashboardTourPlugins": "Installer tilf\u00f8jelser s\u00e5 som internet videokanaler, live tv, metadata skannere samt meget mere.", - "DashboardTourNotifications": "Send automatisk notifikationer vedr\u00f8rende serverbegivenheder til dine mobile enheder, din email samt andre tjenester.", - "DashboardTourScheduledTasks": "Administrer let processer der l\u00f8ber over l\u00e6ngere tid via planlagte opgaver. Bestem hvorn\u00e5r de udf\u00f8res samt hvor ofte.", - "DashboardTourMobile": "Emby betjeningspanelet virker uden problemer p\u00e5 b\u00e5de smartphones og tablets. Kontrol over din server er altid ved dine fingrespidser hvor som helst, n\u00e5r som helst.", - "DashboardTourSync": "Synkroniser dine personlige mediefiler til dine enheder s\u00e5 det kan ses offline.", - "MessageRefreshQueued": "Opdatering sat i k\u00f8", - "TabDevices": "Enheder", - "TabExtras": "Ekstra", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Sidst brugt af {0}", - "HeaderDeleteDevice": "Slet enhed", - "DeleteDeviceConfirmation": "Er du sikker p\u00e5 du \u00f8nsker at slette denne enhed? Den vil dukke op igen n\u00e6ste gang en bruger logger ind med den.", - "LabelEnableCameraUploadFor": "Aktiver kamera upload for:", - "HeaderSelectUploadPath": "V\u00e6lg upload sti", - "LabelEnableCameraUploadForHelp": "Uploads sker automatisk i baggrunden n\u00e5r du er logget p\u00e5 Emby", - "ErrorMessageStartHourGreaterThanEnd": "Slut tid skal v\u00e6re st\u00f8rre end start tid.", - "ButtonLibraryAccess": "Biblioteksadgang", - "ButtonParentalControl": "For\u00e6ldrekontrol", - "HeaderInvitationSent": "Invitation sendt", - "MessageInvitationSentToUser": "En email er blevet sendt til {0}, hvori de er blevet anmodet om at acceptere din invitation.", - "MessageInvitationSentToNewUser": "En email er blevet sendt til {0} med en invitation til at oprette sig hos Emby.", - "HeaderConnectionFailure": "Forbindelsesfejl", - "MessageUnableToConnectToServer": "Vi kan ikke forbinde til den valgte server p\u00e5 nuv\u00e6rende tidspunkt. Sikrer dig venligst at serveren k\u00f8rer og pr\u00f8v igen.", - "ButtonSelectServer": "V\u00e6lg server", - "MessagePluginConfigurationRequiresLocalAccess": "For at konfigurerer dette plugin log da venligst direkte ind p\u00e5 din lokale server.", - "MessageLoggedOutParentalControl": "Adgang er begr\u00e6nset p\u00e5 nuv\u00e6rende tidspunkt. Pr\u00f8v igen senere.", - "DefaultErrorMessage": "Det opstod en fejl ved behandlingen af foresp\u00f8rgslen. Pr\u00f8v igen senere.", - "ButtonAccept": "Accepter", - "ButtonReject": "Afvis", - "HeaderForgotPassword": "Glemt adgangskode", - "MessageContactAdminToResetPassword": "Kontakt venligst din systemadministrator for at nulstille din adgangskode.", - "MessageForgotPasswordInNetworkRequired": "Pr\u00f8v igen inde i dit hjemmenetv\u00e6rk for at igangs\u00e6tte nulstilling af din adgangskode.", - "MessageForgotPasswordFileCreated": "Den f\u00f8lgende fil er blevet oprettet p\u00e5 din server og indeholder instruktioner vedr\u00f8rende hvordan du skal forts\u00e6tte:", - "MessageForgotPasswordFileExpiration": "Nulstillings pinkoden udl\u00f8ber {0}.", - "MessageInvalidForgotPasswordPin": "En ugyldig eller udl\u00f8bet pinkode blev indtastet. Pr\u00f8v igen.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Inviter g\u00e6st", - "ButtonLinkMyEmbyAccount": "Link min konto nu", - "MessageConnectAccountRequiredToInviteGuest": "For at invitere g\u00e6ster skal du f\u00f8rst k\u00e6de din Emby konto til denne server.", - "ButtonSync": "Sync", - "SyncMedia": "Synkroniser medier", - "HeaderCancelSyncJob": "Afbryd synkronisering", - "CancelSyncJobConfirmation": "Afbrydelse af synkroniseringen vil fjerne medier fra enheden under n\u00e6ste synkroniseringsproces. Er du sikker p\u00e5 du \u00f8nsker at forts\u00e6tte?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "V\u00e6lg en enhed at synkroniserer til.", - "MessageSyncJobCreated": "Synkroniserings job oprettet", - "LabelSyncTo": "Synkroniser til:", - "LabelSyncJobName": "Navn til synkroniserings job:", - "LabelQuality": "Kvalitet:", - "HeaderSettings": "Indstillinger", - "OptionAutomaticallySyncNewContent": "Synkroniser automatisk nyt indhold", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Synkroniser kun usete videoer", - "OptionSyncUnwatchedVideosOnlyHelp": "Kun usete videoer vil blive synkroniseret, og videoer vil blive fjernet fra enheden n\u00e5r de er blevet set.", - "LabelItemLimit": "Maks. filer:", - "LabelItemLimitHelp": "Valgfri. S\u00e6t en gr\u00e6nse for antallet af filer der synkroniseres.", - "MessageBookPluginRequired": "Kr\u00e6ver installation af Bookshelf tilf\u00f8jelsen", - "MessageGamePluginRequired": "Kr\u00e6ver installation af GameBrowser tilf\u00f8jelsen", - "MessageUnsetContentHelp": "Indhold vil blive vist som almindelige mapper. For det bedste resultat benyt metadata manageren til at v\u00e6lge indholdstypen i undermapper.", - "SyncJobItemStatusQueued": "Sat i k\u00f8", - "SyncJobItemStatusConverting": "Konverterer", - "SyncJobItemStatusTransferring": "Overf\u00f8rer", - "SyncJobItemStatusSynced": "Synkroniseret", - "SyncJobItemStatusFailed": "Fejlet", - "SyncJobItemStatusRemovedFromDevice": "Fjernet fra enhed", - "SyncJobItemStatusCancelled": "Annulleret", - "LabelProfile": "Profil:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "For at downloade og installere Emby bes\u00f8g {0}.", - "ButtonNewServer": "Ny server", - "ButtonSignInWithConnect": "Log ind med Emby Connect", - "HeaderNewServer": "Ny server", - "MyDevice": "Min enhed", - "ButtonRemote": "Fjernbetjening", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scener", - "HeaderUnlockApp": "Opl\u00e5s app", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Betalingsservicen er ikke tilg\u00e6ngelig p\u00e5 nuv\u00e6rende tidspunkt. Pr\u00f8v igen senere.", - "MessagePleaseSignInLocalNetwork": "F\u00f8r du forts\u00e6tter bedes du sikre dig at du har forbindelse til dit lokale netv\u00e6rk via Wifi eller Lan forbindelse.", - "ButtonUnlockWithPurchase": "L\u00e5s op gennem k\u00f8b", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "Live TV Guiden er p\u00e5 nuv\u00e6rende tidspunkt begr\u00e6nset til {0} kanaler. Klik p\u00e5 \"L\u00e5s op\" knappen for at f\u00e5 mere at vide omkring hvordan du kan f\u00e5 den fulde oplevelse.", - "OptionEnableFullscreen": "Aktiver fuldsk\u00e6rm", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Bibliotek", - "HeaderMedia": "Medier", - "ButtonInbox": "Indbakke", - "HeaderAdvanced": "Avanceret", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Avanceret opdatering", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Plakat", - "OptionPosterCard": "Plakat", - "OptionTimeline": "Tidslinje", - "OptionList": "Liste", - "OptionThumb": "Miniature", - "OptionThumbCard": "Miniature kort", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Optag", - "ButtonOther": "Other", - "HeaderSortBy": "Sort\u00e9r efter:", - "HeaderSortOrder": "Sorteringsr\u00e6kkef\u00f8lge:", - "OptionAscending": "Stigende", - "OptionDescending": "Faldende", - "OptionNameSort": "Navn", - "OptionTvdbRating": "Tvdb bed\u00f8mmelse", - "OptionPremiereDate": "Pr\u00e6mieredato", - "OptionImdbRating": "IMDd bed\u00f8mmelse", - "OptionDatePlayed": "Dato for afspilning", - "OptionDateAdded": "Dato for tilf\u00f8jelse", - "OptionPlayCount": "Gange afspillet", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album-artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Nummerets navn", - "OptionCommunityRating": "F\u00e6llesskabsvurdering", - "ButtonSort": "Sort\u00e9r", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Standard", - "ButtonFilter": "Filter", - "OptionCriticRating": "Kritikervurdering", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Indt\u00e6gt", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "S\u00f8g", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "N\u00e6ste", - "HeaderLatestMovies": "Seneste film", - "HeaderLatestEpisodes": "Sidste episoder", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Biograftilstand", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/de.json b/dashboard-ui/strings/javascript/de.json deleted file mode 100644 index 9820f44c15..0000000000 --- a/dashboard-ui/strings/javascript/de.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Einstellungen gespeichert.", - "AddUser": "Benutzer anlegen", - "Users": "Benutzer", - "Delete": "L\u00f6schen", - "Administrator": "Administrator", - "Password": "Passwort", - "DeleteImage": "Bild l\u00f6schen", - "MessageThankYouForSupporting": "Vielen Dank das Sie Emby unterst\u00fctzen.", - "MessagePleaseSupportProject": "Bitte unterst\u00fctzen Sie Emby.", - "DeleteImageConfirmation": "M\u00f6chtest du dieses Bild wirklich l\u00f6schen?", - "FileReadCancelled": "Dateiimport wurde abgebrochen.", - "FileNotFound": "Datei nicht gefunden", - "FileReadError": "Beim Lesen der Datei ist ein Fehler aufgetreten.", - "DeleteUser": "Benutzer l\u00f6schen", - "DeleteUserConfirmation": "M\u00f6chtest du {0} wirklich l\u00f6schen?", - "PasswordResetHeader": "Passwort zur\u00fccksetzen", - "PasswordResetComplete": "Das Passwort wurde zur\u00fcckgesetzt.", - "PinCodeResetComplete": "Der PIN wurde zur\u00fcckgesetzt", - "PasswordResetConfirmation": "M\u00f6chtest du das Passwort wirklich zur\u00fccksetzen?", - "PinCodeResetConfirmation": "Sind Sie sich sicher, dass Sie Ihren PIN Code zur\u00fccksetzen m\u00f6chten?", - "HeaderPinCodeReset": "PIN Code zur\u00fccksetzen", - "PasswordSaved": "Passwort gespeichert", - "PasswordMatchError": "Die Passw\u00f6rter m\u00fcssen \u00fcbereinstimmen.", - "OptionRelease": "Offizielles Release", - "OptionBeta": "Beta", - "OptionDev": "Entwickler (instabil)", - "UninstallPluginHeader": "Plugin deinstallieren", - "UninstallPluginConfirmation": "M\u00f6chtest du {0} wirklich deinstallieren?", - "NoPluginConfigurationMessage": "Bei diesem Plugin kann nichts eingestellt werden.", - "NoPluginsInstalledMessage": "Du hast keine Plugins installiert.", - "BrowsePluginCatalogMessage": "Durchsuche unsere Bibliothek, um alle verf\u00fcgbaren Plugins anzuzeigen.", - "HeaderNewApiKey": "Neuer API Schl\u00fcssel", - "LabelAppName": "App Name", - "LabelAppNameExample": "Beispiel: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Geben Sie einer Applikation die Erlaubnis mit dem Emby Server zu kommunizieren.", - "MessageKeyEmailedTo": "E-Mail mit Zugangsschl\u00fcssel an: {0}.", - "MessageKeysLinked": "Schl\u00fcssel verkn\u00fcpft.", - "HeaderConfirmation": "Best\u00e4tigung", - "MessageKeyUpdated": "Vielen Dank. Ihr Emby Premium Schl\u00fcssel wurde aktualisiert.", - "MessageKeyRemoved": "Vielen Dank. Ihr Emby Premium Schl\u00fcssel wurde entfernt.", - "HeaderSupportTheTeam": "Unterst\u00fctzen Sie das Emby Team", - "TextEnjoyBonusFeatures": "Erleben Sie Bonus Funktionen", - "TitleLiveTV": "Live-TV", - "ButtonCancelSyncJob": "Sync abbrechen", - "HeaderAddTag": "F\u00fcge Tag hinzu", - "LabelTag": "Tag:", - "ButtonSelectView": "Ansicht w\u00e4hlen", - "TitleSync": "Synchronisation", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Datum w\u00e4hlen", - "ServerUpdateNeeded": "Dieser Emby Server muss aktualisiert werden. Um die neueste Version herunterzuladen, besuchen sie bitte {0}", - "ButtonIdentify": "Identifizieren", - "HeaderIdentifyItem": "Identifiziere Element", - "LabelRecurringDonationCanBeCancelledHelp": "Fortlaufende Spenden k\u00f6nnen jederzeit \u00fcber deinen PayPal Account gek\u00fcndigt werden.", - "LabelFromHelp": "Beispiel: {0} (auf dem Server)", - "HeaderMyMedia": "Meine Medien", - "ButtonRemoveFromCollection": "Aus Sammlung entfernen", - "LabelAutomaticUpdateLevel": "Automatische Updates f\u00fcr:", - "LabelAutomaticUpdateLevelForPlugins": "Automatische Updates f\u00fcr Plugins:", - "TitleNotifications": "Benachrichtigungen", - "ErrorLaunchingChromecast": "W\u00e4hrend des startens von Chromecast ist ein Fehler aufgetreten. Bitte stelle sicher, dass dein Ger\u00e4te mit dem WLAN verbunden ist.", - "MessageErrorLoadingSupporterInfo": "Es gab einen Fehler beim Verarbeiten von Daten f\u00fcr Emby Premium. Bitte versuche es sp\u00e4ter erneut.", - "MessageLinkYourSupporterKey": "Verkn\u00fcpfe deinen Emby Premium Schl\u00fcssel mit bis zu {0} Emby Connect Benutzern um Zugriff auf folgende Apps zu erhalten:", - "HeaderConfirmRemoveUser": "Entferne Benutzer", - "MessageConfirmRemoveConnectSupporter": "Sind Sie sich sicher das Sie alle zus\u00e4tzlichen Vorteile von Emby Premium l\u00f6schen wollen?", - "ValueTimeLimitSingleHour": "Zeitlimit: 1 Stunde", - "ValueTimeLimitMultiHour": "Zeitlimit: {0} Stunden", - "HeaderUsers": "Benutzer", - "PluginCategoryGeneral": "Allgemein", - "PluginCategoryContentProvider": "Inhaltsanbieter", - "PluginCategoryScreenSaver": "Bildschirmschoner", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Synchronisation", - "PluginCategorySocialIntegration": "Soziale Netzwerke", - "PluginCategoryNotifications": "Benachrichtigungen", - "PluginCategoryMetadata": "Metadaten", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Kan\u00e4le", - "HeaderSearch": "Suche", - "ValueDateCreated": "Erstellungsdatum: {0}", - "LabelArtist": "Interpret", - "LabelMovie": "Film", - "LabelMusicVideo": "Musikvideo", - "LabelEpisode": "Episode", - "LabelSeries": "Serie", - "LabelStopping": "Stoppe", - "LabelCancelled": "(abgebrochen)", - "LabelFailed": "(fehlgeschlagen)", - "ButtonHelp": "Hilfe", - "ButtonSave": "Speichern", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Warten", - "SyncJobStatusConverting": "Konvertiere", - "SyncJobStatusFailed": "Fehlgeschlagen", - "SyncJobStatusCancelled": "Abgebrochen", - "SyncJobStatusCompleted": "Synchronisiert", - "SyncJobStatusReadyToTransfer": "Fertig zum Transfer", - "SyncJobStatusTransferring": "\u00dcbertrage", - "SyncJobStatusCompletedWithError": "Synchronisation mit Fehler", - "SyncJobItemStatusReadyToTransfer": "Fertig zum Transfer", - "LabelCollection": "Sammlung", - "HeaderAddToCollection": "Zur Sammlung hinzuf\u00fcgen", - "HeaderNewCollection": "Neue Collection", - "NewCollectionNameExample": "Beispiel: Star Wars Collection", - "OptionSearchForInternetMetadata": "Suche im Internet nach Bildmaterial und Metadaten", - "LabelSelectCollection": "W\u00e4hle Zusammenstellung:", - "HeaderDevices": "Ger\u00e4te", - "ButtonScheduledTasks": "Geplante Aufgaben", - "MessageItemsAdded": "Eintr\u00e4ge hinzugef\u00fcgt", - "ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen", - "HeaderSelectCertificatePath": "W\u00e4hlen Sie einen Zertifikat Ordner", - "ConfirmMessageScheduledTaskButton": "Dieser Vorgang l\u00e4uft in der Regel automatisch als geplante Aufgabe ab und erfordert keine manuellen Eingabe. Um die geplante Aufgabe zu konfigurieren, finden Sie unter:", - "HeaderSupporterBenefit": "Eine aktive Emby Premiere Mitgliedschaft erm\u00f6glicht weitere Vorteile wie z.B. Zugriff auf Sync, Premium Plugins, Internet Channel Inhalte, und mehr. {0}Erfahren Sie mehr{1}.", - "LabelSyncNoTargetsHelp": "Es sieht so aus als w\u00fcrden Sie aktuell keine Apps verwenden, die Synchronisation unterst\u00fctzen.", - "HeaderWelcomeToProjectServerDashboard": "Willkommen zur Emby Server \u00dcbersicht", - "HeaderWelcomeToProjectWebClient": "Willkommen zu Emby", - "ButtonTakeTheTour": "Mache die Tour", - "HeaderWelcomeBack": "Willkommen zur\u00fcck!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Gehen Sie auf Erkundung und erfahren Sie was neu ist", - "MessageNoSyncJobsFound": "Keine Synchronisierungs-Aufgaben gefunden. Um Synchronisierungs-Aufgaben zu erstellen verwenden Sie die dazugeh\u00f6rige Funktion im Web-Interface.", - "HeaderLibraryAccess": "Bibliothekszugriff", - "HeaderChannelAccess": "Channelzugriff", - "HeaderDeviceAccess": "Ger\u00e4te Zugang", - "HeaderSelectDevices": "Ger\u00e4t w\u00e4hlen", - "ButtonCancelItem": "Datei abw\u00e4hlen", - "ButtonQueueForRetry": "F\u00fcr Wiederholung in die Warteschlange setzen", - "ButtonReenable": "Reaktivierung", - "ButtonLearnMore": "Erfahre mehr", - "SyncJobItemStatusSyncedMarkForRemoval": "F\u00fcr L\u00f6schung markiert", - "LabelAbortedByServerShutdown": "(Durch herunterfahrenden Server abgebrochen)", - "LabelScheduledTaskLastRan": "Zuletzt ausgef\u00fchrt vor: {0}. Ben\u00f6tigte Zeit: {1}.", - "HeaderDeleteTaskTrigger": "Entferne Aufgabenausl\u00f6ser", - "MessageDeleteTaskTrigger": "Bist du dir sicher, dass du diesen Aufgabenausl\u00f6ser entfernen m\u00f6chtest?", - "MessageNoPluginsInstalled": "Du hast keine Plugins installiert.", - "MessageNoPluginsDueToAppStore": "Um plugins zu verwalten verwenden Sie bitte die Emby Web App.", - "LabelVersionInstalled": "{0} installiert", - "LabelNumberReviews": "{0} Bewertungen", - "LabelFree": "Frei", - "HeaderTo": "Nach", - "HeaderPlaybackError": "Wiedergabefehler", - "MessagePlaybackErrorNotAllowed": "Sie sind nicht befugt diese Inhalte wiederzugeben. Bitte kontaktieren Sie Ihren Systemadministrator f\u00fcr weitere Details.", - "MessagePlaybackErrorNoCompatibleStream": "Es sind keine kompatiblen Streams verf\u00fcgbar. Bitte versuchen Sie es sp\u00e4ter erneut oder kontaktieren Sie Ihren Systemadministrator f\u00fcr weitere Details.", - "MessagePlaybackErrorRateLimitExceeded": "Ihr Wiedergabelimit wurde \u00fcberschritten. Bitte kontaktieren Sie Ihren Systemadministrator f\u00fcr weitere Details.", - "MessagePlaybackErrorPlaceHolder": "Der gew\u00e4hlte Inhalt kann auf diesem Ger\u00e4t nicht abgespielt werden.", - "HeaderSelectAudio": "W\u00e4hle Audio", - "HeaderSelectSubtitles": "W\u00f6hle Untertitel", - "ButtonMarkForRemoval": "Entferne von Ger\u00e4t", - "ButtonUnmarkForRemoval": "Abbrechen von Entfernen von Ger\u00e4t", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Erzwungen)", - "LabelDefaultForcedStream": "(Standard\/Erzwungen)", - "LabelUnknownLanguage": "Unbekannte Sprache", - "MessageConfirmSyncJobItemCancellation": "Bist du dir sicher, dass du diese Datei abw\u00e4hlen m\u00f6chtest?", - "ButtonMute": "Stumm", - "ButtonUnmute": "Ton ein", - "ButtonStop": "Stop", - "ButtonNextTrack": "N\u00e4chster Titel", - "ButtonPause": "Pause", - "ButtonPlay": "Abspielen", - "ButtonEdit": "Bearbeiten", - "ButtonQueue": "Warteschlange", - "ButtonPlayTrailer": "Trailer abspielen", - "ButtonPlaylist": "Wiedergabeliste", - "ButtonPreviousTrack": "Vorheriger Titel", - "LabelEnabled": "Aktivieren", - "LabelDisabled": "Deaktiviert", - "ButtonMoreInformation": "mehr Informationen", - "LabelNoUnreadNotifications": "Keine ungelesenen Benachrichtigungen.", - "ButtonViewNotifications": "Benachrichtigungen anschauen", - "ButtonMarkTheseRead": "Als gelesen markieren", - "ButtonClose": "Schlie\u00dfen", - "LabelAllPlaysSentToPlayer": "Alle Wiedergaben werden zum ausgew\u00e4hlten Abspielger\u00e4t gesendet.", - "MessageInvalidUser": "Falscher Benutzername oder Passwort. Bitte versuche es noch einmal.", - "HeaderLoginFailure": "Login Fehler", - "HeaderAllRecordings": "Alle Aufnahmen", - "RecommendationBecauseYouLike": "Weil du auch {0} magst", - "RecommendationBecauseYouWatched": "Weil du auch {0} angesehen hast", - "RecommendationDirectedBy": "Unter der Regie von {0}", - "RecommendationStarring": "In der Hauptrolle {0}", - "HeaderConfirmRecordingCancellation": "Best\u00e4tige Aufzeichnungsabbruch", - "MessageConfirmRecordingCancellation": "Bis du dir sicher, diese Aufzeichnung abzubrechen?", - "MessageRecordingCancelled": "Aufzeichnung abgebrochen.", - "MessageRecordingScheduled": "Aufnahme geplant.", - "HeaderConfirmSeriesCancellation": "Best\u00e4tige Serienabbruch", - "MessageConfirmSeriesCancellation": "Bis du dir sicher, diese Serie abzubrechen?", - "MessageSeriesCancelled": "Serie abgebrochen.", - "HeaderConfirmRecordingDeletion": "Best\u00e4tige L\u00f6schung der Aufzeichnung", - "MessageConfirmRecordingDeletion": "Bis du dir sicher, diese Aufzeichnung zu l\u00f6schen?", - "MessageRecordingDeleted": "Aufnahme gel\u00f6scht", - "ButonCancelRecording": "Aufnahme abbrechen", - "MessageRecordingSaved": "Aufnahme gespeichert", - "OptionSunday": "Sonntag", - "OptionMonday": "Montag", - "OptionTuesday": "Dienstag", - "OptionWednesday": "Mittwoch", - "OptionThursday": "Donnerstag", - "OptionFriday": "Freitag", - "OptionSaturday": "Samstag", - "OptionEveryday": "T\u00e4glich", - "OptionWeekend": "Wochenenden", - "OptionWeekday": "Wochentage", - "HeaderConfirmDeletion": "Best\u00e4tige L\u00f6schung", - "MessageConfirmPathSubstitutionDeletion": "Bist du dir sicher die Pfadsubstitution l\u00f6schen zu wollen?", - "LiveTvUpdateAvailable": "(Update verf\u00fcgbar)", - "LabelVersionUpToDate": "Auf dem neuesten Stand!", - "ButtonResetTuner": "Tuner zur\u00fccksetzen", - "HeaderResetTuner": "Tuner zur\u00fccksetzen", - "MessageConfirmResetTuner": "Bist du dir sicher, dass du diesen Tuner zur\u00fccksetzen m\u00f6chtest? Alle aktiven Wiedergaben und Aufnahmen werden sofort beendet.", - "ButtonCancelSeries": "Serien abbrechen", - "HeaderSeriesRecordings": "Aufgezeichnete Serien", - "LabelAnytime": "Jederzeit", - "StatusRecording": "Aufnehmen", - "StatusWatching": "Anschauing", - "StatusRecordingProgram": "Aufzeichnung {0}", - "StatusWatchingProgram": "Gesehen {0}", - "HeaderSplitMedia": "Trenne Medien ab", - "MessageConfirmSplitMedia": "Bist du dir sicher, dass du die Medienquellen in separate Elemente aufteilen m\u00f6chtest?", - "HeaderError": "Fehler", - "MessageChromecastConnectionError": "Ihr Chromecast kann keine Verbindung mit dem Emby Server herstellen. Bitte \u00fcberpr\u00fcfen Sie die Verbindung und probieren Sie es erneut.", - "MessagePleaseSelectOneItem": "Bitte w\u00e4hle mindestens eine Option aus.", - "MessagePleaseSelectTwoItems": "Bitte w\u00e4hle mindestens zwei Optionen aus.", - "MessageTheSelectedItemsWillBeGrouped": "Die ausgew\u00e4hlten Videos werden in einem virtuellen Element gruppiert. Emby Anwendungen w\u00e4hlen automatisch die beste Version anhand des Ger\u00e4tes und der Netzwerkgeschwindigkeit. Sind Sie sich sicher, dass Sie fortfahren m\u00f6chten?", - "HeaderResume": "Fortsetzen", - "HeaderMyViews": "Meine Ansichten", - "HeaderLibraryFolders": "Medienverzeichnisse", - "HeaderLatestMedia": "Neueste Medien", - "ButtonMoreItems": "Mehr...", - "ButtonMore": "Mehr", - "HeaderFavoriteMovies": "Lieblingsfilme", - "HeaderFavoriteShows": "Lieblingsserien", - "HeaderFavoriteEpisodes": "Lieblingsepisoden", - "HeaderFavoriteGames": "Lieblingsspiele", - "HeaderRatingsDownloads": "Bewertung \/ Downloads", - "HeaderConfirmProfileDeletion": "Best\u00e4tige Profill\u00f6schung", - "MessageConfirmProfileDeletion": "Bist du dir sicher, dass du dieses Profil l\u00f6schen m\u00f6chtest?", - "HeaderSelectServerCachePath": "W\u00e4hle Server Cache Pfad:", - "HeaderSelectTranscodingPath": "W\u00e4hle Pfad f\u00fcr tempor\u00e4re Transkodierdateien", - "HeaderSelectImagesByNamePath": "W\u00e4hle 'Images By Name' Pfad", - "HeaderSelectMetadataPath": "W\u00e4hle Metadaten Pfad", - "HeaderSelectServerCachePathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von Server Cache Dateien an. Das Verzeichnis muss beschreibbar sein.", - "HeaderSelectTranscodingPathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von tempor\u00e4ren Transkodierdateien an. Das Verzeichnis muss beschreibbar sein.", - "HeaderSelectImagesByNamePathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von Namensdaten an. Das Verzeichnis muss beschreibbar sein.", - "HeaderSelectMetadataPathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von Metadaten an. Das Verzeichnis muss beschreibbar sein.", - "HeaderSelectChannelDownloadPath": "W\u00e4hle den Downloadpfad f\u00fcr Channel Plugins", - "HeaderSelectChannelDownloadPathHelp": "Suche oder gib den Pfad f\u00fcr die Speicherung von Channel Cache Dateien an. Das Verzeichnis muss beschreibbar sein.", - "OptionNewCollection": "Neu...", - "ButtonAdd": "Hinzuf\u00fcgen", - "ButtonRemove": "Entfernen", - "LabelChapterDownloaders": "Kapitel Downloader:", - "LabelChapterDownloadersHelp": "Aktiviere und ordne die Kapitel Downloader nach deinen Pr\u00e4ferenzen. Downloader mit geringer Priorit\u00e4t werden nur genutzt um fehlende Informationen zu erg\u00e4nzen.", - "HeaderFavoriteAlbums": "Lieblingsalben", - "HeaderLatestChannelMedia": "Neueste Channel Inhalte", - "ButtonOrganizeFile": "Organisiere Datei", - "ButtonDeleteFile": "L\u00f6sche Datei", - "HeaderOrganizeFile": "Organisiere Datei", - "HeaderDeleteFile": "L\u00f6sche Datei", - "StatusSkipped": "\u00dcbersprungen", - "StatusFailed": "Fehlgeschlagen", - "StatusSuccess": "Erfolgreich", - "MessageFileWillBeDeleted": "Die folgende Datei wird gel\u00f6scht:", - "MessageSureYouWishToProceed": "Bis du dir sicher fortfahren zu wollen?", - "MessageDuplicatesWillBeDeleted": "Zus\u00e4tzlich werden folgende Duplikate gel\u00f6scht:", - "MessageFollowingFileWillBeMovedFrom": "Die folgende Datei wird verschoben von:", - "MessageDestinationTo": "nach:", - "HeaderSelectWatchFolder": "W\u00e4hle \u00dcberwachungsverzeichnis", - "HeaderSelectWatchFolderHelp": "Suche oder gib den Pfad f\u00fcr das \u00dcberwachungsverzeichnis an. Das Verzeichnis muss beschreibbar sein.", - "OrganizePatternResult": "Ergebnis: {0}", - "AutoOrganizeError": "Fehler bei der Dateiorganisation", - "FileOrganizeManually": "Verwalte Datei", - "ErrorOrganizingFileWithErrorCode": "Ein Fehler trat bei der Dateiorganisation auf. Fehlercode: {0}.", - "HeaderRestart": "Neustart", - "HeaderShutdown": "Herunterfahren", - "MessageConfirmRestart": "M\u00f6chten Sie Emby Server wirklich neu starten?", - "MessageConfirmShutdown": "M\u00f6chsten Sie Emby Server wirklich beenden?", - "ButtonUpdateNow": "Jetzt aktualisieren", - "ValueItemCount": "{0} Eintrag", - "ValueItemCountPlural": "{0} Eintr\u00e4ge", - "NewVersionOfSomethingAvailable": "Eine neue Version von {0} ist verf\u00fcgbar!", - "VersionXIsAvailableForDownload": "Version {0} ist jetzt bereit zum download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transkodieren", - "LabelPlayMethodDirectStream": "Direktes Streaming", - "LabelPlayMethodDirectPlay": "Direktes Abspielen", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Lokale Adresse: {0}", - "LabelRemoteAccessUrl": "Fernzugriff: {0}", - "LabelRunningOnPort": "L\u00e4uft \u00fcber HTTP Port: {0}", - "LabelRunningOnPorts": "L\u00e4uft \u00fcber HTTP Port {0} und HTTPS Port {1}.", - "HeaderLatestFromChannel": "Neuestes von {0}", - "LabelUnknownLanaguage": "Unbekannte Sprache", - "HeaderCurrentSubtitles": "Aktuelle Untertitel", - "MessageDownloadQueued": "Der Download wurde in die Warteschlange verschoben.", - "MessageAreYouSureDeleteSubtitles": "Bist du dir sicher diese Untertitel Datei l\u00f6schen zu wollen?", - "ButtonRemoteControl": "Fernsteuerung", - "HeaderLatestTvRecordings": "Neueste Aufnahmen", - "ButtonOk": "Ok", - "ButtonCancel": "Abbrechen", - "ButtonRefresh": "Aktualisieren", - "LabelCurrentPath": "Aktueller Pfad:", - "HeaderSelectMediaPath": "W\u00e4hle einen Medienpfad:", - "HeaderSelectPath": "Verzeichnis W\u00e4hlen", - "ButtonNetwork": "Netzwerk", - "MessageDirectoryPickerInstruction": "Falls der Netzwerk Button deine Endger\u00e4te nicht automatisch findet, kannst du deren Netzwerkpfade auch manuell eintragen. Zum Beispiel {0} oder {1}.", - "MessageDirectoryPickerBSDInstruction": "F\u00fcr BSD m\u00fcssen Sie ggf. Speicherplatz auf Ihrem FreeNAS Jail f\u00fcr Empby freigeben.", - "MessageDirectoryPickerLinuxInstruction": "Auf Linuxsystemen m\u00fcssne Sie dem Emby-System User mindestens lesende Rechte auf Ihrem Medienlaufwerk erteilen.", - "HeaderMenu": "Men\u00fc", - "ButtonOpen": "\u00d6ffnen", - "ButtonOpenInNewTab": "\u00d6ffne in neuem Tab", - "ButtonShuffle": "Zufallswiedergabe", - "ButtonInstantMix": "Schnellmix", - "ButtonResume": "Fortsetzen", - "HeaderScenes": "Szenen", - "HeaderAudioTracks": "Audiospuren", - "HeaderLibraries": "Bibliotheken", - "HeaderSubtitles": "Untertitel", - "HeaderVideoQuality": "Videoqualit\u00e4t", - "MessageErrorPlayingVideo": "Es gab einen Fehler bei der Videowiedergabe.", - "MessageEnsureOpenTuner": "Bitte stelle sicher, dass ein freier Empf\u00e4nger verf\u00fcgbar ist.", - "ButtonHome": "Home", - "ButtonDashboard": "\u00dcbersicht", - "ButtonReports": "Berichte", - "ButtonMetadataManager": "Metadaten Manager", - "HeaderTime": "Zeit", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album-Interpret", - "HeaderArtist": "Interpret", - "LabelAddedOnDate": "Hinzugef\u00fcgt {0}", - "ButtonStart": "Start", - "HeaderChannels": "Kan\u00e4le", - "HeaderMediaFolders": "Medienverzeichnisse", - "HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit fehlender Altersfreigabe", - "OptionBlockOthers": "Andere", - "OptionBlockTvShows": "TV Serien", - "OptionBlockTrailers": "Trailer", - "OptionBlockMusic": "Musik", - "OptionBlockMovies": "Filme", - "OptionBlockBooks": "B\u00fccher", - "OptionBlockGames": "Spiele", - "OptionBlockLiveTvPrograms": "Live-TV Programm", - "OptionBlockLiveTvChannels": "Live-TV Kan\u00e4le", - "OptionBlockChannelContent": "Internet Channelinhalte", - "ButtonRevoke": "Zur\u00fccknehmen", - "MessageConfirmRevokeApiKey": "M\u00f6chten Sie diesen API Schl\u00fcssel wirklich l\u00f6schen? Die Verbindung der Anwendung zum Emby Server wird sofort unterbrochen.", - "HeaderConfirmRevokeApiKey": "Nehme API Schl\u00fcssel zur\u00fcck", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Bedingungen: {0}", - "LabelAll": "Alle", - "HeaderDeleteImage": "L\u00f6sche Bild", - "MessageFileNotFound": "Datei nicht gefunden.", - "MessageFileReadError": "Fehler beim lesen der Datei", - "ButtonNextPage": "N\u00e4chste Seite", - "ButtonPreviousPage": "Vorherige Seite", - "ButtonMoveLeft": "Nach links", - "ButtonMoveRight": "Nach rechts", - "ButtonBrowseOnlineImages": "Durchsuche Onlinebilder", - "HeaderDeleteItem": "L\u00f6sche Element", - "ConfirmDeleteItem": "L\u00f6schen dieses Eintrages bedeutet das L\u00f6schen der Datei und das Entfernen aus der Medien-Bibliothek. M\u00f6chten Sie wirklich fortfahren?", - "HeaderDeleteItems": "L\u00f6sche Objekte", - "ConfirmDeleteItems": "Das L\u00f6schen dieser Objekte l\u00f6scht die Dateien vom Laufwerk und Ihrer Medienbibliothek. Sind Sie sich wirklich sicher?", - "MessagePleaseEnterNameOrId": "Bitte gib einen Namen oder eine externe Id an.", - "MessageValueNotCorrect": "Der eingegeben Wert ist nicht korrekt. Bitte versuche es noch einmal.", - "MessageItemSaved": "Element gespeichert", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Bitte akzeptieren Sie die Nutzungsbedingungen bevor sie fortfahren.", - "OptionEnded": "Beendent", - "OptionContinuing": "Fortdauernd", - "OptionOff": "Aus", - "OptionOn": "Ein", - "ButtonSettings": "Einstellungen", - "ButtonUninstall": "Deinstallieren", - "HeaderEnabledFields": "Aktiviere Felder", - "HeaderEnabledFieldsHelp": "W\u00e4hlen Sie Felder ab um das \u00c4ndern von Daten zu verhindern.", - "HeaderLiveTV": "Live-TV", - "MissingLocalTrailer": "Fehlender lokaler Trailer.", - "MissingPrimaryImage": "Fehlendes Hauptbild.", - "MissingBackdropImage": "Fehlendes Hintergrundbild.", - "MissingLogoImage": "Fehlendes Logobild.", - "MissingEpisode": "Fehlende Episode", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Hintergr\u00fcnde", - "OptionImages": "Bilder", - "OptionKeywords": "Stichworte", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "\u00dcbersicht:", - "OptionGenres": "Genres", - "OptionParentalRating": "Altersfreigabe", - "OptionPeople": "Personen", - "OptionRuntime": "Dauer", - "OptionProductionLocations": "Produktionsst\u00e4tten", - "OptionBirthLocation": "Geburtsort", - "LabelAllChannels": "Alle Kan\u00e4le", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEU", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "\u00c4ndere Inhalte Typ", - "HeaderChangeFolderTypeHelp": "Um den Typ zu \u00e4ndern, bitte entferne die Bibliothek und erstelle sie mit dem neuen Medientyp erneut.", - "HeaderAlert": "Alarm", - "MessagePleaseRestart": "Dr\u00fccke auf Neustart um das Update abzuschlie\u00dfen", - "ButtonRestart": "Neu starten", - "MessagePleaseRefreshPage": "Bitte aktualisieren Sie diese Seite um Aktualisierungen von Emby Server zu erhalten.", - "ButtonHide": "Verstecke", - "MessageSettingsSaved": "Einstellungen gespeichert", - "ButtonSignOut": "Abmelden", - "ButtonMyProfile": "Mein Profil", - "ButtonMyPreferences": "Meine Einstellungen", - "MessageBrowserDoesNotSupportWebSockets": "Dieser Browser unterst\u00fctzt keine Websockets. Versuche f\u00fcr ein besseres Nutzungserlebnis einen neueren Browser wie beispielsweise Chrome, Firefox, IE10+, Safari (iOS) oder Opera.", - "LabelInstallingPackage": "Installiere {0}", - "LabelPackageInstallCompleted": "{0} Installation abgeschlossen", - "LabelPackageInstallFailed": "{0} Installation fehlgeschlagen", - "LabelPackageInstallCancelled": "{0} Installation abgebrochen", - "TabServer": "Server", - "TabUsers": "Benutzer", - "TabLibrary": "Bibliothek", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live-TV", - "TabAutoOrganize": "Autom.Organisation", - "TabPlugins": "Plugins", - "TabAdvanced": "Erweitert", - "TabHelp": "Hilfe", - "TabScheduledTasks": "Geplante Aufgaben", - "ButtonFullscreen": "Vollbild", - "ButtonAudioTracks": "Audiospuren", - "ButtonSubtitles": "Untertitel", - "ButtonScenes": "Szenen", - "ButtonQuality": "Qualit\u00e4t", - "HeaderNotifications": "Benachrichtigungen", - "HeaderSelectPlayer": "W\u00e4hle Videoplayer", - "ButtonSelect": "Ausw\u00e4hlen", - "ButtonNew": "Neu", - "MessageInternetExplorerWebm": "Installiere f\u00fcr die besten Ergebnisse mit dem Internet Explorer bitte das WebM Playback Plugin.", - "HeaderVideoError": "Video Fehler", - "ButtonAddToPlaylist": "Hinzuf\u00fcgen zur Wiedergabeliste", - "HeaderAddToPlaylist": "Zur Wiedergabeliste hinzuf\u00fcgen", - "LabelName": "Name:", - "ButtonSubmit": "Best\u00e4tigen", - "LabelSelectPlaylist": "Wiedergabeliste", - "OptionNewPlaylist": "Neue Wiedergabeliste...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Ansicht", - "ButtonViewSeriesRecording": "Zeige Serienaufnahmen an", - "ValueOriginalAirDate": "Urspr\u00fcngliches Ausstrahlungsdatum: {0}", - "ButtonRemoveFromPlaylist": "Von Wiedergabeliste entfernen", - "HeaderSpecials": "Extras", - "HeaderTrailers": "Trailer", - "HeaderAudio": "Audio", - "HeaderResolution": "Aufl\u00f6sung", - "HeaderVideo": "Video", - "HeaderRuntime": "Laufzeit", - "HeaderCommunityRating": "Community Bewertung", - "HeaderPasswordReset": "Passwort zur\u00fccksetzen", - "HeaderParentalRating": "Altersfreigabe", - "HeaderReleaseDate": "Ver\u00f6ffentlichungsdatum", - "HeaderDateAdded": "Datum hinzugef\u00fcgt", - "HeaderSeries": "Serien", - "HeaderSeason": "Staffel", - "HeaderSeasonNumber": "Staffel Nummer", - "HeaderNetwork": "Netzwerk", - "HeaderYear": "Jahr", - "HeaderGameSystem": "Spielesystem", - "HeaderPlayers": "Spieler", - "HeaderEmbeddedImage": "Integriertes Bild", - "HeaderTrack": "St\u00fcck", - "HeaderDisc": "Disc", - "OptionMovies": "Filme", - "OptionCollections": "Sammlungen", - "OptionSeries": "Serien", - "OptionSeasons": "Staffeln", - "OptionEpisodes": "Episoden", - "OptionGames": "Spiele", - "OptionGameSystems": "Spielsysteme", - "OptionMusicArtists": "Musik-Interpreten", - "OptionMusicAlbums": "Musik-Alben", - "OptionMusicVideos": "Musik-Videos", - "OptionSongs": "Lieder", - "OptionHomeVideos": "Heim-Videos", - "OptionBooks": "B\u00fccher", - "OptionAdultVideos": "Videos f\u00fcr Erwachsene", - "ButtonUp": "Hoch", - "ButtonDown": "Runter", - "LabelMetadataReaders": "Metadatenleser:", - "LabelMetadataReadersHelp": "Lege deine bevorzugte lokale Metadatenquelle fest und ordne sie nach Priorit\u00e4ten. Die erste Datei die gefunden wird, wird verwendet.", - "LabelMetadataDownloaders": "Metadatendownloader:", - "LabelMetadataDownloadersHelp": "Aktiviere und ordne deine bevorzugten Metadatendownloader nach Pr\u00e4ferenzen. Downloader mit niedriger Priorit\u00e4t werden nur genutzt um fehlende Informationen zu erg\u00e4nzen.", - "LabelMetadataSavers": "Metadatenspeicherer:", - "LabelMetadataSaversHelp": "W\u00e4hle das Dateiformat in dem deine Metadaten gespeichert werden sollen.", - "LabelImageFetchers": "Bildquellen", - "LabelImageFetchersHelp": "Aktiviere und ordne deine bevorzugten Bildquellen nach Pr\u00e4ferenzen.", - "ButtonQueueAllFromHere": "Setze alles von hier auf Warteschlange", - "ButtonPlayAllFromHere": "Spiele alles von hier", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identifiziere Element", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Reihenfolge Titeldarstellung:", - "OptionSortName": "Sortiername", - "OptionReleaseDate": "Ver\u00f6ffentlichungsdatum", - "LabelSeasonNumber": "Staffelnummer:", - "LabelDiscNumber": "Disc Nummer", - "LabelParentNumber": "Ursprungsnummer", - "LabelEpisodeNumber": "Episodennummer:", - "LabelTrackNumber": "St\u00fcck Nummer:", - "LabelNumber": "Nummer:", - "LabelReleaseDate": "Ver\u00f6ffentlichungsdatum:", - "LabelEndDate": "Endzeit:", - "LabelYear": "Jahr:", - "LabelDateOfBirth": "Geburtsatum:", - "LabelBirthYear": "Geburtsjahr:", - "LabelBirthDate": "Geburtsdatum:", - "LabelDeathDate": "Todesdatum:", - "HeaderRemoveMediaLocation": "Entferne Medienquelle", - "MessageConfirmRemoveMediaLocation": "Bist du dir sicher diese Medienquelle entfernen zu wollen?", - "HeaderRenameMediaFolder": "Benenne Medienverzeichnis um", - "LabelNewName": "Neuer Name:", - "HeaderAddMediaFolder": "F\u00fcge Medienverzeichnis hinzu", - "HeaderAddMediaFolderHelp": "Name (Filme, Musik, TV, etc):", - "HeaderRemoveMediaFolder": "Entferne Medienverzeichnis", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Die folgenden Medienverzeichnisse werden aus deiner Bibliothek entfernt:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Bist du dir sicher dieses Medienverzeichnis entfernen zu wollen?", - "ButtonRename": "Umbenennen", - "ButtonChangeContentType": "\u00c4ndere Inhalte-Typ", - "HeaderMediaLocations": "Medienquellen", - "LabelContentTypeValue": "Inhalte Typ: {0}", - "LabelPathSubstitutionHelp": "Optional: Die Pfadersetzung kann Serverpfade zu Netzwerkfreigaben umleiten, die von Endger\u00e4ten f\u00fcr die direkte Wiedergabe genutzt werden k\u00f6nnen.", - "FolderTypeUnset": "Keine Auswahl (gemischter Inhalt)", - "FolderTypeMovies": "Filme", - "FolderTypeMusic": "Musik", - "FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene", - "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "Musikvideos", - "FolderTypeHomeVideos": "Heimvideos", - "FolderTypeGames": "Spiele", - "FolderTypeBooks": "B\u00fccher", - "FolderTypeTvShows": "TV", - "TabMovies": "Filme", - "TabSeries": "Serie", - "TabEpisodes": "Episoden", - "TabTrailers": "Trailer", - "TabGames": "Spiele", - "TabAlbums": "Alben", - "TabSongs": "Songs", - "TabMusicVideos": "Musikvideos", - "BirthPlaceValue": "Geburtsort: {0}", - "DeathDateValue": "Gestorben: {0}", - "BirthDateValue": "Geboren: {0}", - "HeaderLatestReviews": "Neueste Bewertungen", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "Diese Version ist bereits installiert", - "ValueReviewCount": "{0} Bewertungen", - "MessageYouHaveVersionInstalled": "Du hast momentan Version {0} installiert.", - "MessageTrialExpired": "Die Testzeitraum f\u00fcr diese Funktion in ausgelaufen", - "MessageTrialWillExpireIn": "Der Testzeitraum f\u00fcr diese Funktion wird in {0} Tag(en) auslaufen", - "MessageInstallPluginFromApp": "Dieses Plugin muss von der App aus installiert werden, mit der du es benutzen willst.", - "ValuePriceUSD": "Preis: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "Sie sind f\u00fcr diese Funktion registriert und k\u00f6nnen diese mit einem aktiven Emby Premium Abo weiterhin benutzen.", - "MessageChangeRecurringPlanConfirm": "Nach vollendeter Bezahlung m\u00fcssen Sie Ihre zuvor gemachten Dauer-Spenden in Ihrem PayPal Konto beenden. Vielen Dank das Sie Emby unterst\u00fctzen.", - "ButtonDelete": "L\u00f6schen", - "HeaderEmbyAccountAdded": "Emby Konto hinzugef\u00fcgt", - "MessageEmbyAccountAdded": "Das Emby Konto wurde diesem Benutzer hinzugef\u00fcgt.", - "MessagePendingEmbyAccountAdded": "Das Emby Konto wurde diesem Benutzer hinzugef\u00fcgt. Eine Emails wird an den Besitzer dieses Kontos gesendet. Die Einladung muss mit einem Klick auf den Link in der Email best\u00e4tigt werden.", - "HeaderEmbyAccountRemoved": "Emby Konto entfernt", - "MessageEmbyAccontRemoved": "Das Emby Konto wurde von diesem Benutzer entfernt.", - "TooltipLinkedToEmbyConnect": "Verbunden mit Emby Connect", - "HeaderUnrated": "Nicht bewertet", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unbekanntes Datum", - "HeaderUnknownYear": "Unbekanntes Jahr", - "ValueMinutes": "{0} Minuten", - "ButtonPlayExternalPlayer": "Auf externem Ger\u00e4t abspielen", - "HeaderSelectExternalPlayer": "W\u00e4hle externes Abspielger\u00e4t aus", - "HeaderExternalPlayerPlayback": "Wiedergabe auf externem Abspielger\u00e4t", - "ButtonImDone": "Ich bin fertig", - "OptionWatched": "Gesehen", - "OptionUnwatched": "Nicht gesehen", - "ExternalPlayerPlaystateOptionsHelp": "Lege fest, wie die Wiedergabe dieses Videos das n\u00e4chste mal fortgesetzt werden soll.", - "LabelMarkAs": "Markieren als:", - "OptionInProgress": "Im Gange", - "LabelResumePoint": "Fortsetzungspunkt", - "ValueOneMovie": "1 Film", - "ValueMovieCount": "{0} Filme", - "ValueOneTrailer": "1 Trailer", - "ValueTrailerCount": "{0} Trailer", - "ValueOneSeries": "1 Serie", - "ValueSeriesCount": "{0} Serien", - "ValueOneEpisode": "1 Episode", - "ValueEpisodeCount": "{0} Episoden", - "ValueOneGame": "1 Spiel", - "ValueGameCount": "{0} Spiele", - "ValueOneAlbum": "1 Album", - "ValueAlbumCount": "{0} Alben", - "ValueOneSong": "1 Lied", - "ValueSongCount": "{0} Lieder", - "ValueOneMusicVideo": "1 Musikvideo", - "ValueMusicVideoCount": "{0} Musikvideos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Nicht ausgestrahlt", - "HeaderMissing": "Fehlend", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorit", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Gespielt", - "ValueSeriesYearToPresent": "{0}-heute", - "ValueAwards": "Auszeichnungen: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Einnahmen: {0}", - "ValuePremiered": "Premiere {0}", - "ValuePremieres": "Premieren {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links {0}", - "HeaderPeople": "Personen", - "HeaderCastAndCrew": "Besetzung & Mitwirkende", - "ValueArtist": "K\u00fcnstler: {0}", - "ValueArtists": "K\u00fcnstler: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Kamerahersteller", - "MediaInfoCameraModel": "Kamera-Modell", - "MediaInfoAltitude": "H\u00f6he", - "MediaInfoAperture": "Blende", - "MediaInfoExposureTime": "Belichtungszeit", - "MediaInfoFocalLength": "Brennweite", - "MediaInfoOrientation": "Ausrichtung", - "MediaInfoIsoSpeedRating": "ISO Empfindlichkeit", - "MediaInfoLatitude": "Breite", - "MediaInfoLongitude": "L\u00e4nge", - "MediaInfoShutterSpeed": "Verschlusszeit", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "Wenn du {0} magst, schau dir einmal das an...", - "HeaderPlotKeywords": "Handlungsstichworte", - "HeaderMovies": "Filme", - "HeaderAlbums": "Alben", - "HeaderGames": "Spiele", - "HeaderBooks": "B\u00fccher", - "HeaderEpisodes": "Episoden", - "HeaderSeasons": "Staffeln", - "HeaderTracks": "Lieder", - "HeaderItems": "Inhalte", - "HeaderOtherItems": "Andere Inhalte", - "ButtonFullReview": "Vollst\u00e4ndige Bewertung", - "ValueAsRole": "als {0}", - "ValueGuestStar": "Gaststar", - "MediaInfoSize": "Gr\u00f6\u00dfe", - "MediaInfoPath": "Pfad", - "MediaInfoFile": "Datei", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Voreinstellung", - "MediaInfoForced": "Erzwungen", - "MediaInfoExternal": "Extern", - "MediaInfoTimestamp": "Zeitstempel", - "MediaInfoPixelFormat": "Pixelformat", - "MediaInfoBitDepth": "Bit-Tiefe", - "MediaInfoSampleRate": "Sample-Rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Kan\u00e4le", - "MediaInfoLayout": "Darstellung", - "MediaInfoLanguage": "Sprache", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profil", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Seitenverh\u00e4ltnis", - "MediaInfoResolution": "Aufl\u00f6sung", - "MediaInfoAnamorphic": "Anamorph", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Daten", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Untertitel", - "MediaInfoStreamTypeEmbeddedImage": "Eingebettetes Bild", - "MediaInfoRefFrames": "Ref Frames", - "TabPlayback": "Wiedergabe", - "TabNotifications": "Benachrichtigungen", - "TabExpert": "Experte", - "HeaderSelectCustomIntrosPath": "W\u00e4hle einen benutzerdefinierten Pfad f\u00fcr Intros", - "HeaderRateAndReview": "Bewerten und Kommentieren", - "HeaderThankYou": "Danke", - "MessageThankYouForYourReview": "Vielen Dank f\u00fcr deine Bewertung.", - "LabelYourRating": "Deine Bewertung:", - "LabelFullReview": "Vollst\u00e4ndige Bewertung:", - "LabelShortRatingDescription": "Kurze Zusammenfassung der Bewertung:", - "OptionIRecommendThisItem": "Ich schlage diesen Inhalt vor", - "WebClientTourContent": "Schaue deine zuletzt hinzugef\u00fcgten Medien, n\u00e4chste Episoden und mehr an. Die gr\u00fcnen Kreise zeigen dir an, wie viele ungesehene Inhalte du hast.", - "WebClientTourMovies": "Spiele Filme, Trailer und mehr von jedem Ger\u00e4t mit einem Web-Browser", - "WebClientTourMouseOver": "Halte die Maus \u00fcber ein Plakat f\u00fcr den schnellen Zugriff auf wichtige Informationen", - "WebClientTourTapHold": "Tippe und halte, oder klicke auf ein Plakat f\u00fcr ein Kontextmen\u00fc", - "WebClientTourMetadataManager": "Klicke auf \"Bearbeiten\" um den Metadaten-Manager zu \u00f6ffnen", - "WebClientTourPlaylists": "Erstelle einfach Wiedergabelisten und Schnellmixe und spiele diese auf jedem Ger\u00e4t", - "WebClientTourCollections": "Erstelle Film Sammlungen um Box-Sets zusammenzuf\u00fchren", - "WebClientTourUserPreferences1": "Benutzereinstellungen erlauben die personalisierte Darstellung Ihrer Bibliothek in all unseren Emby Apps.", - "WebClientTourUserPreferences2": "Legen Sie die Sprachen f\u00fcr Audio und Untertitel einmalig f\u00fcr alle Emby Apps fest.", - "WebClientTourUserPreferences3": "Designe die Web-Client-Homepage nach deinen W\u00fcnschen", - "WebClientTourUserPreferences4": "Konfiguriere Hintergr\u00fcnde, Titelsongs und externe Abspieler", - "WebClientTourMobile1": "Der Web-Client funktioniert hervorragend auf Smartphones und Tablets ...", - "WebClientTourMobile2": "und steuern Sie auf einfache Weise andere Ger\u00e4te und Emby Apps", - "WebClientTourMySync": "Synchronisieren Sie pers\u00f6nliche Medien mit Ihren Ger\u00e4ten um diese offline anzuschauen.", - "MessageEnjoyYourStay": "Genie\u00dfe deinen Aufenthalt", - "DashboardTourDashboard": "Die Server\u00fcbersicht erlaubt es dir deinen Server und dessen Benutzer im Blick zu behalten. Somit wei\u00dft du immer wer gerade was macht und wo er sich befindet.", - "DashboardTourHelp": "Die In-App-Hilfe Schaltfl\u00e4che bietet eine schnelle M\u00f6glichkeit um eine Wiki-Seite zum aktuellen Inhalt zu \u00f6ffnen.", - "DashboardTourUsers": "Erstelle einfach Benutzeraccounts f\u00fcr Freunde und Familie. Jeder mit seinen individuellen Einstellungen bei Berechtigungen, Blibliothekenzugriff, Kindersicherung und mehr.", - "DashboardTourCinemaMode": "Der Kino-Modus bringt das Kinoerlebnis direkt in dein Wohnzimmer, mit der F\u00e4higkeit Trailer und benutzerdefinierte Intros vor dem Hauptfilm zu spielen.", - "DashboardTourChapters": "Aktiviere Kapitel-Bilder Generierung f\u00fcr Videos f\u00fcr eine bessere Darstellung.", - "DashboardTourSubtitles": "Lade automatisch Untertitel f\u00fcr jede Sprache f\u00fcr deine Videos herunter.", - "DashboardTourPlugins": "Installiere Plugins wie Internet Videoportale, Live-TV, Metadatenscanner und mehr.", - "DashboardTourNotifications": "Sende automatisch Benachrichtigungen von Serverereignissen auf dein mobiles Endger\u00e4t, per E-Mail und mehr.", - "DashboardTourScheduledTasks": "Verwalte einfach lang dauernde Aufgaben mit Hilfe von geplanten Aufgaben. Entscheide wann diese ausgef\u00fchrt werden und wie oft.", - "DashboardTourMobile": "Die Emby Server Startseite funktioniert super auf Smartphones oder Tabletts. Kontrollieren Sie Ihren Server zu jeder Zeit, egal wo.", - "DashboardTourSync": "Synchronisieren Sie pers\u00f6nliche Medien mit Ihren Ger\u00e4ten um diese offline anzuschauen.", - "MessageRefreshQueued": "Warteschlange aktualisieren", - "TabDevices": "Ger\u00e4te", - "TabExtras": "Extras", - "HeaderUploadImage": "Bild hochladen", - "DeviceLastUsedByUserName": "Zuletzt genutzt von {0}", - "HeaderDeleteDevice": "Ger\u00e4t l\u00f6schen", - "DeleteDeviceConfirmation": "Bist du dir sicher dieses Ger\u00e4t l\u00f6schen zu wollen? Es wird wieder angezeigt werden, sobald sich ein Uder dar\u00fcber einloggt.", - "LabelEnableCameraUploadFor": "Aktiviere den Kamera-Upload f\u00fcr:", - "HeaderSelectUploadPath": "W\u00e4hle Upload Pfad", - "LabelEnableCameraUploadForHelp": "Uploads erscheinen automatisch im Hintergrund wenn Sie mit Emby verbunden sind.", - "ErrorMessageStartHourGreaterThanEnd": "Die Endzeit muss gr\u00f6\u00dfer als die Startzeit sein.", - "ButtonLibraryAccess": "Bibliothekszugang", - "ButtonParentalControl": "Kindersicherung", - "HeaderInvitationSent": "Einladung verschickt", - "MessageInvitationSentToUser": "Eine E-Mail mit der Einladung zum Sharing ist an {0} geschickt worden.", - "MessageInvitationSentToNewUser": "Eine Email wurde an {0} mit einer Einladung zur Anmeldung an Emby gesendet.", - "HeaderConnectionFailure": "Verbindungsfehler", - "MessageUnableToConnectToServer": "Wir k\u00f6nnen gerade keine Verbindung zum gew\u00e4hlten Server herstellen. Bitte stellen Sie sicher das dieser l\u00e4uft und versuchen Sie es erneut.", - "ButtonSelectServer": "W\u00e4hle Server", - "MessagePluginConfigurationRequiresLocalAccess": "Melde dich bitte direkt an deinem lokalen Server an, um dieses Plugin konfigurieren zu k\u00f6nnen.", - "MessageLoggedOutParentalControl": "Der Zugriff ist derzeit eingeschr\u00e4nkt. Bitte versuche es sp\u00e4ter erneut.", - "DefaultErrorMessage": "Es gab einen Fehler beim verarbeiten der Anfrage. Bitte versuche es sp\u00e4ter erneut.", - "ButtonAccept": "Akzeptieren", - "ButtonReject": "Ablehnen", - "HeaderForgotPassword": "Passwort vergessen", - "MessageContactAdminToResetPassword": "Bitte kontaktiere deinen Systemadministrator, um dein Passwort zur\u00fccksetzen zu lassen.", - "MessageForgotPasswordInNetworkRequired": "Bitte versuche es erneut innerhalb deines Heimnetzwerks, um die Passwort Zur\u00fccksetzung zu starten.", - "MessageForgotPasswordFileCreated": "Die folgende Datei wurde auf deinem Server erstellt und enth\u00e4lt eine Anleitung, wie fortgefahren werden muss:", - "MessageForgotPasswordFileExpiration": "Der Zur\u00fccksetzungs-PIN wird am {0} auslaufen.", - "MessageInvalidForgotPasswordPin": "Ein ung\u00fcltiger oder abgelaufener PIN wurde eingegeben. Bitte versuche es noch einmal.", - "MessagePasswordResetForUsers": "Passw\u00f6rter wurden f\u00fcr die folgenden Benutzer entfernt. Zur Anmeldung verwenden Sie kein Passwort.", - "HeaderInviteGuest": "Lade G\u00e4ste ein", - "ButtonLinkMyEmbyAccount": "Verbinde mein Konto jetzt", - "MessageConnectAccountRequiredToInviteGuest": "Um G\u00e4ste einladen zu k\u00f6nnen, m\u00fcssen Sie erst Ihr Emby Konto mit diesem Server verbinden.", - "ButtonSync": "Synchronisieren", - "SyncMedia": "Synchronisiere Medien", - "HeaderCancelSyncJob": "Synchronisierung abbrechen", - "CancelSyncJobConfirmation": "Der Abbruch der Synchronisation wird bereits synchronisierte Medien bei der n\u00e4chsten Synchronisation vom Ger\u00e4t l\u00f6schen. M\u00f6chten Sie wirklich fortfahren?", - "TabSync": "Synchronisieren", - "MessagePleaseSelectDeviceToSyncTo": "Bitte w\u00e4hlen Sie ein zu synchronisierendes Ger\u00e4t.", - "MessageSyncJobCreated": "Synchronisations-Aufgabe erstellt.", - "LabelSyncTo": "Synchronisiere mit:", - "LabelSyncJobName": "Synchronisations-Aufgabe:", - "LabelQuality": "Qualit\u00e4t:", - "HeaderSettings": "Einstellungen", - "OptionAutomaticallySyncNewContent": "Synchronisiere neue Inhalte automatisch", - "OptionAutomaticallySyncNewContentHelp": "Neu hinzugef\u00fcgte Inhalte werden automatisch zum Ger\u00e4t synchronisiert.", - "OptionSyncUnwatchedVideosOnly": "Synchronisiere nur ungesehene Videos.", - "OptionSyncUnwatchedVideosOnlyHelp": "Nur ungesehene Video werden synchronisiert. Videos werden entfernt sobald diese auf dem Ger\u00e4t angeschaut wurden.", - "LabelItemLimit": "Maximale Anzahl:", - "LabelItemLimitHelp": "Optional. Legen Sie die maximale Anzahl der zu synchronisierenden Eintr\u00e4ge fest.", - "MessageBookPluginRequired": "Setzt die Installation des Bookshelf-Plugins voraus.", - "MessageGamePluginRequired": "Setzt die Installation des GameBrowser-Plugins voraus.", - "MessageUnsetContentHelp": "Inhalte werden als Verzeichnisse dargestellt. F\u00fcr eine besser Anzeige nutzen Sie nach M\u00f6glichkeit den Meta-Data Manager und w\u00e4hlen Sie einen Medien-Typen f\u00fcr Unterverzeichnisse.", - "SyncJobItemStatusQueued": "in Warteschlange", - "SyncJobItemStatusConverting": "Konvertiere", - "SyncJobItemStatusTransferring": "\u00dcbertrage", - "SyncJobItemStatusSynced": "Synchronisiert", - "SyncJobItemStatusFailed": "Fehlgeschlagen.", - "SyncJobItemStatusRemovedFromDevice": "Entfernt von Ger\u00e4t", - "SyncJobItemStatusCancelled": "Abgebrochen", - "LabelProfile": "Profil:", - "LabelBitrateMbps": "Datenrate (Mbps):", - "EmbyIntroDownloadMessage": "Um Emby herunterzuladen und zu installieren, besuchen Sie: {0}.", - "ButtonNewServer": "Neuer Server", - "ButtonSignInWithConnect": "Anmelden mit Emby Connect", - "HeaderNewServer": "Neuer Server", - "MyDevice": "Mein Ger\u00e4t", - "ButtonRemote": "Fernbedienung", - "TabInfo": "Info", - "TabCast": "Darsteller", - "TabScenes": "Szenen", - "HeaderUnlockApp": "App freischalten", - "HeaderUnlockSync": "Freischaltung Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Schalten Sie diese Funktion mit einer kleinen einmaligen Geb\u00fchr oder einem aktiven Emby Premium Abo frei.", - "MessageUnlockAppWithSupporter": "Schalten Sie diese Funktion mit einem aktiven Emby Premium Abo frei.", - "MessageToValidateSupporter": "Wenn Sie ein bestehendes Emby Premiere Abo haben, melden Sie sich einfach einmalig mit Ihrer App in Heim WLAN an.", - "MessagePaymentServicesUnavailable": "Die Zahlungsdienste stehen leider gerade nicht zur Verf\u00fcgung. Bitte versuchen Sie es sp\u00e4ter erneut.", - "MessagePleaseSignInLocalNetwork": "Bevor Sie fortsetzen sollten Sie sicher sein, dass Sie mit Ihrem Heimnetzwerk verbunden sind.", - "ButtonUnlockWithPurchase": "Freischalten durch Kauf", - "ButtonUnlockPrice": "Freischalten {0}", - "MessageLiveTvGuideRequiresUnlock": "Ihr TV-Guide ist begrenzt auf {0} Kan\u00e4le. Klicken Sie auf die Freischalten Schaltfl\u00e4che um weitere Informationen zu erhalten.", - "OptionEnableFullscreen": "Aktivieren Vollbild", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Bibliothek", - "HeaderMedia": "Medien", - "ButtonInbox": "Posteingang", - "HeaderAdvanced": "Erweitert", - "HeaderGroupVersions": "Gruppen Versionen", - "HeaderSaySomethingLike": "Sagen Sie etwas wie...", - "ButtonTryAgain": "Erneut versuchen", - "HeaderYouSaid": "Sie sagten....", - "MessageWeDidntRecognizeCommand": "Entschuldigung, dieses Kommando konnten wir nicht erkennen.", - "MessageIfYouBlockedVoice": "Wenn Sie die Sprachsteuerung f\u00fcr die App nicht erlaubt haben so m\u00fcssen Sie dies zuvor \u00e4ndern bevor Sie es erneut probieren.", - "MessageNoItemsFound": "Keine Eintr\u00e4ge gefunden.", - "ButtonManageServer": "Konfiguriere Server", - "ButtonEditSubtitles": "Untertitel bearbeiten", - "ButtonPreferences": "Einstellungen", - "ButtonViewArtist": "Zeige Darsteller", - "ButtonViewAlbum": "Zeige Album", - "ButtonEditImages": "Bilder bearbeiten", - "ErrorMessagePasswordNotMatchConfirm": "Das Passwort und die Passwort-Best\u00e4tigung m\u00fcssen \u00fcbereinstimmen.", - "ErrorMessageUsernameInUse": "Der Benutzername wird bereits verwenden. Bitte w\u00e4hlen Sie einen neuen Namen und versuchen Sie es erneut.", - "ErrorMessageEmailInUse": "Die Emailadresse wird bereits verwendet. Bitte verwenden Sie eine neue Emailadresse und versuchen Sie es erneut oder benutzen Sie die \"Passwort vergessen\" Funktion.", - "MessageThankYouForConnectSignUp": "Vielen Dank f\u00fcr Ihre Anmeldung bei Emby Connect. Eine Emails mit weiteren Schritten zur Anmeldung Ihres neuen Kontos wird Ihnen in K\u00fcrze zugestellt. Bitte best\u00e4tigen Sie Ihr Konto und kehren Sie dann hier her zur\u00fcck um sich anzumelden.", - "HeaderShare": "Teilen", - "ButtonShareHelp": "Teilen Sie eine Website mit Medieninformationen in einem sozialen Netzwerk. Medien werden niemals \u00f6ffentlich geteilt.", - "ButtonShare": "Teilen", - "HeaderConfirm": "Best\u00e4tigen", - "ButtonAdvancedRefresh": "Erweiterte Aktualiserung", - "MessageConfirmDeleteTunerDevice": "M\u00f6chten Sie dieses Ger\u00e4t wirklich l\u00f6schen?", - "MessageConfirmDeleteGuideProvider": "M\u00f6chten Sie diese Quelle wirklich l\u00f6schen?", - "HeaderDeleteProvider": "TV Verzeichnis l\u00f6schen", - "HeaderAddProvider": "TV Verzeichnis hinzuf\u00fcgen", - "ErrorAddingTunerDevice": "Es trat ein Fehler beim hinzuf\u00fcgen eines Tuners auf. Bitte stellen Sie sicher das dieser erreichbar ist und versuchen Sie es erneut.", - "ErrorSavingTvProvider": "Ein Fehler beim speichern des TV Verzeichnisses trat auf. Bitte stellen Sie sicher das dieser erreichbar ist und versuchen Sie es erneut.", - "ErrorGettingTvLineups": "Ein Fehler trat beim herunterladen des TV Programs auf. Bitte stellen Sie sicher, dass Ihre Informationen korrekt sind und versuchen Sie es erneut.", - "MessageCreateAccountAt": "Erstellen Sie ein Konto bei {0}", - "ErrorPleaseSelectLineup": "Bitte w\u00e4hlen Sie ein TV Programm und versuchen Sie es erneut. Wenn keine Programme verf\u00fcgbar sind pr\u00fcfen Sie bitte Benutzername, Passwort und Ihre Postleitzahl.", - "HeaderTryEmbyPremiere": "Probieren Sie Emby Premiere", - "ButtonBecomeSupporter": "Holen Sie Emby Premium", - "ButtonClosePlayVideo": "Schlie\u00dfe und starte meine Medien", - "MessageDidYouKnowCinemaMode": "Wussten Sie schon, das Sie mit Emby Premium, ihr Erlebnis mit Funktionen wie dem Kino-Modus, noch verbessern k\u00f6nnen?", - "MessageDidYouKnowCinemaMode2": "Der Kino-Modus bringt ihnen das richtige Kino-Erlebnis nach Hause, mit Trailern und eigenen Intros vor Ihrem Hauptfilm.", - "OptionEnableDisplayMirroring": "Aktiviere Display-Weiterleitung", - "HeaderSyncRequiresSupporterMembership": "Sync ben\u00f6tigt ein aktives Emby Premium Abo.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync ben\u00f6tigt eine Verbindung zu einem Emby Server mit aktivem Emby Premium Abo.", - "ErrorValidatingSupporterInfo": "Es gab einen Fehler beim Pr\u00fcfen ihrer Emby Premium Daten. Bitte versuche es sp\u00e4ter erneut.", - "HeaderSync": "Synchronisation", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Synchronisation gestartet", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster Karte", - "OptionTimeline": "Zeitlinie", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb Karte", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "Keine Diashow Bilder gefunden.", - "OptionPhotoSlideshow": "Diashow", - "OptionBackdropSlideshow": "Hintergrund Diashow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Aufnehmen", - "ButtonOther": "Andere", - "HeaderSortBy": "Sortiert nach", - "HeaderSortOrder": "Sortierreihenfolge", - "OptionAscending": "Aufsteigend", - "OptionDescending": "Absteigend", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Bewertung", - "OptionPremiereDate": "Premiere", - "OptionImdbRating": "IMDb Bewertung", - "OptionDatePlayed": "Abgespielt am", - "OptionDateAdded": "Hinzugef\u00fcgt am", - "OptionPlayCount": "Z\u00e4hler", - "ButtonDisconnect": "Verbindung trennen", - "OptionAlbumArtist": "Album-Interpret", - "OptionArtist": "Interpret", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Bewertung", - "ButtonSort": "Sortieren", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Kritiker Bewertung", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Einnahme", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "F\u00fcr weitere TV Quellen klicken Sie bitte auf den \"Externe Dienste\"-Reiter um weitere Optionen anzuzeigen.", - "ButtonGuide": "TV Guide", - "ButtonRecordedTv": "TV Aufnahmen", - "HeaderDisconnectFromPlayer": "Trenne von Player", - "ConfirmEndPlayerSession": "M\u00f6chten Sie Emby auf dem Ger\u00e4t schlie\u00dfen?", - "ButtonYes": "Ja", - "ButtonNo": "Nein", - "ButtonRestorePreviousPurchase": "Kauf wiederherstellen", - "AlreadyPaid": "Schon Bezahlt?", - "AlreadyPaidHelp1": "Wenn Sie bereits f\u00fcr die Installation einer \u00e4lteren Version von Media Browser f\u00fcr Android gezahlt haben, m\u00fcssen Sie f\u00fcr eine Freischaltung nicht erneut zahlen. Bet\u00e4tigen Sie OK um uns eine Email an {0} zu senden. Wir werden die App dann f\u00fcr Sie freischalten.", - "AlreadyPaidHelp2": "Sie haben bereits Emby Premiere? Dann brechen Sie diesen Dialog ab, melden Sie sich innerhalb der App innerhalb Ihres Heimnetzes an und die App wird automatisch freigeschaltet.", - "ButtonForYou": "F\u00fcr Sie", - "ButtonLibrary": "Biliothek", - "ButtonSearch": "Suche", - "ButtonNowPlaying": "L\u00e4uft", - "ButtonViewNewApp": "Zeige neue App", - "HeaderEmbyForAndroidHasMoved": "Emby f\u00fcr Android ist umgezogen!", - "MessageEmbyForAndroidHasMoved": "Emby f\u00fcr Android ist innerhalb des App-Stores umgezogen! Bitte schauen Sie sich die neue App an! Sie k\u00f6nnen alternativ diese App so lange verwenden, wie Sie es m\u00f6chten.", - "HeaderNextUp": "Als N\u00e4chstes", - "HeaderLatestMovies": "Neueste Filme", - "HeaderLatestEpisodes": "Neueste Episoden", - "EmbyPremiereMonthly": "Monatliche Emby Premiere", - "EmbyPremiereMonthlyWithPrice": "Emby Premium Monatlich {0}", - "HeaderEmailAddress": "E-Mail Adresse", - "TextPleaseEnterYourEmailAddressForSubscription": "Bitte geben Sie Ihre E-Mail Adresse", - "LoginDisclaimer": "Emby wurde designed um Sie bei der Verwaltung Ihrer Medienbibliothek, wie z.B Heimvideos oder Fotos, zu unterst\u00fctzen. Bitte lesen Sie unsere Nutzungsbedingungen. Die Verwendung jeglicher Emby Software bedingt die Zustimmung dieser Vereinbarung.", - "TermsOfUse": "Nutzungsbedingungen", - "HeaderTryMultiSelect": "Versuche Mehrfachauswahl", - "TryMultiSelectMessage": "F\u00fcr eine Mehrfachauswahl klicken und halten Sie ein Poster. W\u00e4hlen Sie die Eintr\u00e4ge die Sie bearbeiten m\u00f6chten. Versuchen SIe es!", - "NumLocationsValue": "{0} Verzeichnisse", - "ButtonAddMediaLibrary": "F\u00fcge Medienbibliothek hinzu", - "ButtonManageFolders": "Bearbeite Verzeichnisse", - "HeaderTryDragAndDrop": "Versuchen Sie Drag and Drop.", - "TryDragAndDropMessage": "Um Titel in der Playlist neu zu arrangieren, verwenden Sie einfach Drag an Drop. Versuchen Sie es!", - "HeaderTryMicrosoftEdge": "Versuche Microsoft Edge", - "MessageTryMicrosoftEdge": "F\u00fcr ein besseres Erlebnis mit Windows 10, probieren Sie den neuen Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Versuchen Sie einen modernen Browser", - "MessageTryModernBrowser": "F\u00fcr eine bessere Darstellung unter Windows probieren Sie mal einen modernen Browser wie z.B. Google Chrome, Firefox oder Opera.", - "ErrorAddingListingsToSchedulesDirect": "Ein Fehler trat beim hinzuf\u00fcgen Ihrer Zusammenstellung zu Ihrem Schedules Direct Konto auf. Schedules Direct erlaubt nur eine begrenzte Anzahl von Zusammenstellungen je Account. Sie sollten sich auf der Website in Ihrem Schedules-Direct Konto einloggen und ein paar Zusammenstellungen von Ihrem Konto l\u00f6schen bevor Sie fortfahren.", - "PleaseAddAtLeastOneFolder": "Bitte f\u00fcgen Sie mindestens ein Verzeichniss zur Bibliothek durch Klicken der \"Hinzuf\u00fcgen\"-Schaltfl\u00e4che hinzu.", - "ErrorAddingMediaPathToVirtualFolder": "Ein Fehler trat beim Hinzuf\u00fcgen eines Medienverzeichnisses auf. Bitte stellen Sie sicher, dass der Pfad g\u00fcltig ist und der Emby Server Prozess die notwendigen Zugriffsrechte besitzt.", - "ErrorRemovingEmbyConnectAccount": "Ein Fehler trat beim entfernen des Empy Connect Kontos auf. Bitte stellen Sie sicher, dass Sie \u00fcber eine aktive Internetverbindung verf\u00fcgen und versuchen Sie es erneut.", - "ErrorAddingEmbyConnectAccount1": "Ein Fehler trat beim hinzuf\u00fcgen des Emby-Connect Kontos auf. Haben Sie bereits ein Emby Konto? Melden Sie sich hier an: {0}.", - "ErrorAddingEmbyConnectAccount2": "Bitte stellen Sie sicher, dass Ihr Emby Konto nach den Anweisungen aus der Email, die Sie nach Erstellung des Kontos erhielten, aktiviert wurde. Wenn Sie keine Email erhalten haben, so senden Sie und bitte eine email an {0}. Benutzen Sie dazu bitte die Email-Adresse, die Sie bereits zur Erstellung Ihres Emby Kontos verwendet haben.", - "HeaderFavoriteArtists": "Lieblings K\u00fcnstler", - "HeaderFavoriteSongs": "Lieblings Songs", - "HeaderConfirmPluginInstallation": "Best\u00e4tige Plugin Installation", - "PleaseConfirmPluginInstallation": "Bitte best\u00e4tigen Sie mit OK, dass Sie den oben stehenden Text gelesen haben und die Installation des Plugins fortf\u00fchren m\u00f6chten.", - "MessagePluginInstallDisclaimer": "Plugins aus der Emby Community sind eine gute M\u00f6glichkeit um Emby mit weiteren Funktionen und Vorteilen aufzuwerten. Bevor Sie diese jedoch installieren, seien Sie sich den daraus resultierenden m\u00f6glichen Umst\u00e4nden f\u00fcr Emby bewusst. Dies k\u00f6nnen z.B. l\u00e4ngere Bibliotheken Scans, weiterf\u00fchrende Verarbeitung von Daten im Hintergrund sowie Systeminstabilit\u00e4t sein.", - "ButtonPlayOneMinute": "Eine Minute wiedergeben", - "ThankYouForTryingEnjoyOneMinute": "Genie\u00dfen sie eine Minute Wiedergabe. Danke, dass Sie Emby ausprobieren.", - "HeaderTryPlayback": "Wiedergabe ausprobieren", - "HeaderBenefitsEmbyPremiere": "Vorteile von Emby Premiere", - "MobileSyncFeatureDescription": "Synchronisieren Sie Ihre Medien f\u00fcr eine Offlinewiedergabe auf Ihr Smartphone und Tablett.", - "CoverArtFeatureDescription": "Cover Art erstellt z.B. lustige Cover und erlaubt Ihnen weitergehende pers\u00f6nliche Gestaltung Ihrer Medien Bilder.", - "HeaderMobileSync": "Mobile Synchronisation", - "HeaderCloudSync": "Cloud Synchronisation", - "CloudSyncFeatureDescription": "Synchronisieren Sie Ihre Medien in die Cloud f\u00fcr ein Backup, eine Archivierung und Konvertierung.", - "HeaderFreeApps": "Kostenlose Emby Apps", - "FreeAppsFeatureDescription": "Genie\u00dfen Sie Zugriff auf kostenlose Emby Apps f\u00fcr Ihre Ger\u00e4te", - "HeaderCinemaMode": "Kino-Modus", - "CinemaModeFeatureDescription": "Der Cinema Mode bringt das richtige Kinogef\u00fchl mit Trailern und eigenen Intros vor dem Hauptfilm.", - "CoverArt": "Cover Art", - "ButtonOff": "Ausschalten", - "TitleHardwareAcceleration": "Hardware Beschleunigung", - "HardwareAccelerationWarning": "Das Aktivieren der Hardwarebeschleunigung kann auf einigen Systemen zu Problemen f\u00fchren. Wenn Sie probleme w\u00e4hrend der Videowiedergabe feststellen, sollten Sie diese Einstellung zur\u00fcck auf \"Automatik\" stellen.", - "HeaderSelectCodecIntrosPath": "W\u00e4hlen Sie ein Codec Intro Verzeichnis", - "ButtonLocalRefresh": "Lokaler Refresh", - "ButtonAddMissingData": "Nur fehlende Daten hinzuf\u00fcgen", - "ButtonFullRefresh": "Kompletter Refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/el.json b/dashboard-ui/strings/javascript/el.json deleted file mode 100644 index e7962c0a14..0000000000 --- a/dashboard-ui/strings/javascript/el.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "\u039f\u03b9 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b1\u03bd", - "AddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", - "Users": "\u039f\u03b9 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2", - "Delete": "\u0394\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5", - "Administrator": "\u03c4\u03bf \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2", - "Password": "\u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2", - "DeleteImage": "\u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1;", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5", - "FileReadError": "\u03a0\u03b1\u03c1\u03bf\u03c5\u03c3\u03b9\u03ac\u03c3\u03c4\u03b7\u03ba\u03b5 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", - "DeleteUser": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2;", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c4\u03b7\u03ba\u03b5", - "PasswordMatchError": "\u039f \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03af\u03c9\u03c3\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03bf\u03c5\u03bd", - "OptionRelease": "\u0397 \u03b5\u03c0\u03af\u03c3\u03b7\u03bc\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7", - "OptionBeta": "\u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae", - "OptionDev": "\u0391\u03bd\u03ac\u03c0\u03c4\u03c5\u03be\u03b7 (\u03b1\u03c3\u03c4\u03b1\u03b8\u03ae\u03c2)", - "UninstallPluginHeader": "\u03b1\u03c0\u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b7\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf plugin", - "UninstallPluginConfirmation": "\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03cc\u03c4\u03b9 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5;", - "NoPluginConfigurationMessage": "\u0391\u03c5\u03c4\u03cc \u03c4\u03bf plugin \u03ad\u03c7\u03b5\u03b9 \u03c4\u03af\u03c0\u03bf\u03c4\u03b1 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03bc\u03bf\u03c1\u03c6\u03ce\u03c3\u03b5\u03c4\u03b5", - "NoPluginsInstalledMessage": "\u0388\u03c7\u03b5\u03c4\u03b5 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1 plugins ", - "BrowsePluginCatalogMessage": "\u03a0\u03bb\u03bf\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf\u03bd \u03ba\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf plugin \u03bc\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b1 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b1 plugins", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "\u03a7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 ", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1", - "ButtonSave": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7\u03bd \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "\u03a0\u03b1\u03c1\u03ac\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1: \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae \"\u03a0\u03cc\u03bb\u03b5\u03bc\u03bf\u03c2 \u03c4\u03c9\u03bd \u0386\u03c3\u03c4\u03c1\u03c9\u03bd\"", - "OptionSearchForInternetMetadata": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf \u03b4\u03b9\u03b1\u03b4\u03af\u03ba\u03c4\u03c5\u03bf \u03b3\u03b9\u03b1 \u03b5\u03be\u03ce\u03c6\u03c5\u03bb\u03bb\u03bf \u03ba\u03b1\u03b9 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2", - "LabelSelectCollection": "\u0395\u03c0\u03ad\u03bb\u03b5\u03be\u03b5 \u03c3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "\u039a\u03ac\u03bd\u03c4\u03b5 \u03c4\u03b7\u03bd \u039e\u03b5\u03bd\u03ac\u03b3\u03b7\u03c3\u03b7", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9", - "ButtonCancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 ", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "\u03a3\u03ba\u03b7\u03bd\u03ad\u03c2", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "\u039a\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1", - "HeaderMediaFolders": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9 \u03a0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "\u03c3\u03b2\u03b7\u03c3\u03c4\u03cc\u03c2", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "\u0394\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae", - "ButtonNew": "\u039d\u03ad\u03bf", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "\u038c\u03bd\u03bf\u03bc\u03b1:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "\u0389\u03c7\u03bf\u03c2", - "HeaderResolution": "Resolution", - "HeaderVideo": "\u0392\u03af\u03bd\u03c4\u03b5\u03bf", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", - "FolderTypeMusic": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ae", - "FolderTypeAdultVideos": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2 \u0395\u03bd\u03b7\u03bb\u03af\u03ba\u03c9\u03bd", - "FolderTypePhotos": "\u03a6\u03c9\u03c4\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b5\u03c2", - "FolderTypeMusicVideos": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ac \u0392\u03af\u03bd\u03c4\u03b5\u03bf", - "FolderTypeHomeVideos": "\u03a0\u03c1\u03bf\u03c3\u03c9\u03c0\u03b9\u03ba\u03ac \u0392\u03af\u03bd\u03c4\u03b5\u03bf", - "FolderTypeGames": "\u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1", - "FolderTypeBooks": "\u0392\u03b9\u03b2\u03bb\u03af\u03b1", - "FolderTypeTvShows": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7", - "TabMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", - "TabSeries": "Series", - "TabEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1", - "TabTrailers": "Trailers", - "TabGames": "\u03a0\u03b1\u03b9\u03c7\u03bd\u03af\u03b4\u03b9\u03b1", - "TabAlbums": "\u0386\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc", - "TabSongs": "\u03a4\u03c1\u03b1\u03b3\u03bf\u03cd\u03b4\u03b9\u03b1", - "TabMusicVideos": "\u039c\u03bf\u03c5\u03c3\u03b9\u03ba\u03ac \u03b2\u03af\u03bd\u03c4\u03b5\u03bf", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1", - "OptionPosterCard": "Poster card", - "OptionTimeline": "\u03a7\u03c1\u03bf\u03bd\u03bf\u03b4\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1", - "OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1", - "OptionNameSort": "\u038c\u03bd\u03bf\u03bc\u03b1", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", - "OptionDateAdded": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2", - "OptionPlayCount": "\u03a6\u03bf\u03c1\u03ad\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "\u03ac\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc \u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2", - "OptionArtist": " \u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2", - "OptionAlbum": "\u0386\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc", - "OptionTrackName": "\u038c\u03bd\u03bf\u03bc\u03b1 \u0391\u03c1\u03c7\u03b5\u03af\u03bf\u03c5", - "OptionCommunityRating": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2", - "ButtonSort": "\u03a4\u03b1\u03be\u03b9\u03bd\u03cc\u03bc\u03b7\u03c3\u03b7", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "\u03a6\u03af\u03bb\u03c4\u03c1\u03bf", - "OptionCriticRating": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1", - "OptionRevenue": "Revenue", - "OptionBudget": "\u03a0\u03c1\u03bf\u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf", - "HeaderLatestMovies": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 \u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2", - "HeaderLatestEpisodes": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/en-GB.json b/dashboard-ui/strings/javascript/en-GB.json deleted file mode 100644 index ef1f277e27..0000000000 --- a/dashboard-ui/strings/javascript/en-GB.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been cancelled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favourite Movies", - "HeaderFavoriteShows": "Favourite Shows", - "HeaderFavoriteEpisodes": "Favourite Episodes", - "HeaderFavoriteGames": "Favourite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favourite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organise File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organise File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organise", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favourite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalise your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/en-US.json b/dashboard-ui/strings/javascript/en-US.json deleted file mode 100644 index 6a7a4e0af4..0000000000 --- a/dashboard-ui/strings/javascript/en-US.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/es-AR.json b/dashboard-ui/strings/javascript/es-AR.json deleted file mode 100644 index 7b08c4e1b4..0000000000 --- a/dashboard-ui/strings/javascript/es-AR.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Disfrute los extras", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Agregar a la colecci\u00f3n", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Ejemplo: Colecci\u00f3n de Star Wars", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Seleccionar colecci\u00f3n:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "C\u00f3dec de audio: {0}", - "ValueVideoCodec": "C\u00f3dec de video: {0}", - "ValueCodec": "C\u00f3dec: {0}", - "ValueConditions": "Condiciones: {0}", - "LabelAll": "Todo", - "HeaderDeleteImage": "Borrar imagen", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "P\u00e1gina siguiente", - "ButtonPreviousPage": "P\u00e1gina anterior", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "TV en vivo", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Falta cap\u00edtulo.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Im\u00e1genes", - "OptionKeywords": "Palabras clave", - "OptionTags": "Etiquetas", - "OptionStudios": "Estudios", - "OptionName": "Nombre", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Lugar de nacimiento", - "LabelAllChannels": "Todos los canales", - "LabelLiveProgram": "EN VIVO", - "LabelNewProgram": "NUEVO", - "LabelPremiereProgram": "ESTRENO", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Cap\u00edtulos", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "\u00daltimos cap\u00edtulos", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/es-MX.json b/dashboard-ui/strings/javascript/es-MX.json deleted file mode 100644 index f7afc87af2..0000000000 --- a/dashboard-ui/strings/javascript/es-MX.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Configuraci\u00f3n guardada.", - "AddUser": "Agregar usuario", - "Users": "Usuarios", - "Delete": "Eliminar", - "Administrator": "Administrador", - "Password": "Contrase\u00f1a", - "DeleteImage": "Eliminar imagen", - "MessageThankYouForSupporting": "Gracias por apoyar Emby.", - "MessagePleaseSupportProject": "Por favor apoya Emby.", - "DeleteImageConfirmation": "\u00bfEst\u00e1 seguro de querer eliminar esta imagen?", - "FileReadCancelled": "La lectura del archivo ha sido cancelada.", - "FileNotFound": "Archivo no encontrado.", - "FileReadError": "Ha ocurrido un error al leer el archivo.", - "DeleteUser": "Eliminar Usuario", - "DeleteUserConfirmation": "\u00bfEst\u00e1 seguro de querer eliminar este usuario?", - "PasswordResetHeader": "Restablecer Contrase\u00f1a", - "PasswordResetComplete": "La contrase\u00f1a ha sido restablecida.", - "PinCodeResetComplete": "El c\u00f3digo pin ha sido restablecido.", - "PasswordResetConfirmation": "\u00bfEst\u00e1 seguro de querer restablecer la contrase\u00f1a?", - "PinCodeResetConfirmation": "\u00bfEsta seguro de querer restablecer el c\u00f3digo pin?", - "HeaderPinCodeReset": "Restablecer C\u00f3digo Pin", - "PasswordSaved": "Contrase\u00f1a guardada.", - "PasswordMatchError": "La Contrase\u00f1a y la confirmaci\u00f3n de la contrase\u00f1a deben coincidir.", - "OptionRelease": "Versi\u00f3n Oficial", - "OptionBeta": "Beta", - "OptionDev": "Desarrollo (Inestable)", - "UninstallPluginHeader": "Desinstalar Complemento", - "UninstallPluginConfirmation": "\u00bfEst\u00e1 seguro de querer desinstalar {0}?", - "NoPluginConfigurationMessage": "El complemento no requiere configuraci\u00f3n", - "NoPluginsInstalledMessage": "No tiene complementos instalados.", - "BrowsePluginCatalogMessage": "Explorar el catalogo de complementos para ver los complementos disponibles.", - "HeaderNewApiKey": "Nueva llave de API", - "LabelAppName": "Nombre del App", - "LabelAppNameExample": "Ejemplo: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Conceder acceso a una aplicaci\u00f3n para comunicarse con el Servidor Emby.", - "MessageKeyEmailedTo": "Clave enviada por correo a {0}.", - "MessageKeysLinked": "Llaves Vinculadas", - "HeaderConfirmation": "Confirmaci\u00f3n", - "MessageKeyUpdated": "Gracias. Su clave de Emby Premier se ha actualizado.", - "MessageKeyRemoved": "Gracias. Su clave de Emby Premier ha sido removida.", - "HeaderSupportTheTeam": "Apoye al equipo de Emby", - "TextEnjoyBonusFeatures": "Disfruta de Caracter\u00edsticas Premium", - "TitleLiveTV": "TV en Vivo", - "ButtonCancelSyncJob": "Cancelar Sinc", - "HeaderAddTag": "Agregar Etiqueta", - "LabelTag": "Etiqueta:", - "ButtonSelectView": "Seleccionar vista", - "TitleSync": "Sinc", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Seleccionar fecha", - "ServerUpdateNeeded": "Este Servidor Emby necesita ser actualizado. Para descargar la ultima versi\u00f3n, por favor visite {0}", - "ButtonIdentify": "Identificar", - "HeaderIdentifyItem": "Identificar \u00cdtem", - "LabelRecurringDonationCanBeCancelledHelp": "Las donaciones recurrentes pueden ser canceladas en cualquier momento desde su cuenta PayPal.", - "LabelFromHelp": "Ejemplo: {0} (en el servidor)", - "HeaderMyMedia": "Mis Medios", - "ButtonRemoveFromCollection": "Remover de la Colecci\u00f3n", - "LabelAutomaticUpdateLevel": "Nivel de actualizaci\u00f3n autom\u00e1tico:", - "LabelAutomaticUpdateLevelForPlugins": "Nivel de actualizaci\u00f3n autom\u00e1tico para complementos:", - "TitleNotifications": "Notificaciones", - "ErrorLaunchingChromecast": "Hubo un error iniciando chromecast. Por favor aseg\u00farate de que tu dispositivo este conectado a tu red inalambrica", - "MessageErrorLoadingSupporterInfo": "Ha ocurrido un error al cargar la informaci\u00f3n de Emby Premier. Por favor int\u00e9ntelo nuevamente m\u00e1s tarde.", - "MessageLinkYourSupporterKey": "Asocie su clave de Emby Premier con hasta {0} miembros de Emby Connect para disfrutar de acceso gratuito a las siguientes apps:", - "HeaderConfirmRemoveUser": "Eliminar Usuario", - "MessageConfirmRemoveConnectSupporter": "\u00bfEst\u00e1 usted seguro de querer remover los beneficios adiconales de Emby Premier de este usuario?", - "ValueTimeLimitSingleHour": "L\u00edmite de tiempo: 1 hora", - "ValueTimeLimitMultiHour": "L\u00edmite de tiempo: {0} horas", - "HeaderUsers": "Usuarios", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Proveedores de Contenido", - "PluginCategoryScreenSaver": "Protectores de Pantalla", - "PluginCategoryTheme": "Temas", - "PluginCategorySync": "Sinc", - "PluginCategorySocialIntegration": "Redes Sociales", - "PluginCategoryNotifications": "Notificaciones", - "PluginCategoryMetadata": "Metadatos", - "PluginCategoryLiveTV": "TV en Vivo", - "PluginCategoryChannel": "Canales", - "HeaderSearch": "Buscar", - "ValueDateCreated": "Fecha de creaci\u00f3n: {0}", - "LabelArtist": "Artista", - "LabelMovie": "Pel\u00edcula", - "LabelMusicVideo": "Video Musical", - "LabelEpisode": "Episodio", - "LabelSeries": "Series", - "LabelStopping": "Deteniendo", - "LabelCancelled": "(cancelado)", - "LabelFailed": "(fall\u00f3)", - "ButtonHelp": "Ayuda", - "ButtonSave": "Guardar", - "ButtonDownload": "Descargar", - "SyncJobStatusQueued": "En cola", - "SyncJobStatusConverting": "Convirti\u00e9ndo", - "SyncJobStatusFailed": "Fallido", - "SyncJobStatusCancelled": "Cancelado", - "SyncJobStatusCompleted": "Sincronizado", - "SyncJobStatusReadyToTransfer": "Listo para Transferir", - "SyncJobStatusTransferring": "Transfiri\u00e9ndo", - "SyncJobStatusCompletedWithError": "Sincronizado con errores", - "SyncJobItemStatusReadyToTransfer": "Listo para Transferir", - "LabelCollection": "Colecci\u00f3n", - "HeaderAddToCollection": "Agregar a Colecci\u00f3n.", - "HeaderNewCollection": "Nueva Colecci\u00f3n", - "NewCollectionNameExample": "Ejemplo: Colecci\u00f3n Guerra de las Galaxias", - "OptionSearchForInternetMetadata": "Buscar en internet ilustraciones y metadatos", - "LabelSelectCollection": "Elegir colecci\u00f3n:", - "HeaderDevices": "Dispositivos", - "ButtonScheduledTasks": "Tareas programadas", - "MessageItemsAdded": "\u00cdtems agregados", - "ButtonAddToCollection": "Agregar a colecci\u00f3n", - "HeaderSelectCertificatePath": "Seleccione Trayectoria del Certificado", - "ConfirmMessageScheduledTaskButton": "Esta operaci\u00f3n normalmente se ejecuta de manera autom\u00e1tica como una tarea programada y no requiere de ningun esfuerzo manual. Para configurar la tarea programada, vea:", - "HeaderSupporterBenefit": "Una suscripci\u00f3n Emby Premiere activa provee beneficios adicionales como acceso a sincronizacion, complementos premium, contenido de canales de internet, y mas. {0}Conocer mas{1}.", - "LabelSyncNoTargetsHelp": "Parece que actualmente no cuentas con ninguna app que soporte sinc.", - "HeaderWelcomeToProjectServerDashboard": "Bienvenido al Panel de Control de Emby", - "HeaderWelcomeToProjectWebClient": "Bienvenido a Emby", - "ButtonTakeTheTour": "Haga el recorrido", - "HeaderWelcomeBack": "\u00a1Bienvenido nuevamente!", - "TitlePlugins": "Complementos", - "ButtonTakeTheTourToSeeWhatsNew": "Inice el tour para ver que hay de nuevo", - "MessageNoSyncJobsFound": "No se han encontrado trabajos de sincronizaci\u00f3n. Cree trabajos de sincronizaci\u00f3n empleando los botones de Sinc que se encuentran en la intergface web.", - "HeaderLibraryAccess": "Acceso a la Biblioteca", - "HeaderChannelAccess": "Acceso a los Canales", - "HeaderDeviceAccess": "Acceso a Dispositivos", - "HeaderSelectDevices": "Seleccionar Dispositivos", - "ButtonCancelItem": "Cancelar \u00edtem.", - "ButtonQueueForRetry": "En cola para reintentar", - "ButtonReenable": "Re-habilitar", - "ButtonLearnMore": "Aprenda m\u00e1s", - "SyncJobItemStatusSyncedMarkForRemoval": "Marcado para remover", - "LabelAbortedByServerShutdown": "(Abortada por apagado del servidor)", - "LabelScheduledTaskLastRan": "Ejecutado hace {0}, tomando {1}.", - "HeaderDeleteTaskTrigger": "Borrar Disparador de Tarea", - "MessageDeleteTaskTrigger": "\u00bfEst\u00e1 seguro de querer eliminar este disparador de tarea?", - "MessageNoPluginsInstalled": "No tienes extensiones instaladas.", - "MessageNoPluginsDueToAppStore": "Para administrar los complementos, utilice por favor la web app de Emby.", - "LabelVersionInstalled": "{0} instalado", - "LabelNumberReviews": "{0} Rese\u00f1as", - "LabelFree": "Gratis", - "HeaderTo": "Hasta", - "HeaderPlaybackError": "Error de Reproducci\u00f3n", - "MessagePlaybackErrorNotAllowed": "Actualmente no esta autorizado para reproducir este contenido. Por favor contacte a su administrador de sistema para mas informaci\u00f3n.", - "MessagePlaybackErrorNoCompatibleStream": "No hay streams compatibles en este en este momento. Por favor intente de nuevo mas tarde o contacte a su administrador de sistema para mas detalles.", - "MessagePlaybackErrorRateLimitExceeded": "Su limite de transferencia ha sido excedido. Por favor contacte a su administrador de sistema para mas informaci\u00f3n.", - "MessagePlaybackErrorPlaceHolder": "No es posible reproducir el contenido seleccionado en este dispositivo.", - "HeaderSelectAudio": "Seleccionar Audio", - "HeaderSelectSubtitles": "Seleccionar Subtitulos", - "ButtonMarkForRemoval": "Remover de dispositivo", - "ButtonUnmarkForRemoval": "Cancelar remover de dispositivo", - "LabelDefaultStream": "(Por defecto)", - "LabelForcedStream": "(Forzado)", - "LabelDefaultForcedStream": "(Por Defecto\/Forzado)", - "LabelUnknownLanguage": "Idioma Desconocido", - "MessageConfirmSyncJobItemCancellation": "\u00bfEsta seguro que desea cancelar este \u00edtem?", - "ButtonMute": "Mudo", - "ButtonUnmute": "Quitar mudo", - "ButtonStop": "Detener", - "ButtonNextTrack": "Siguiente Pista", - "ButtonPause": "Pausar", - "ButtonPlay": "Reproducir", - "ButtonEdit": "Editar", - "ButtonQueue": "A cola", - "ButtonPlayTrailer": "Reproducir Avance", - "ButtonPlaylist": "Lista de Reprod.", - "ButtonPreviousTrack": "Pista Previa", - "LabelEnabled": "Habilitado", - "LabelDisabled": "Desactivado", - "ButtonMoreInformation": "Mas Informaci\u00f3n", - "LabelNoUnreadNotifications": "No hay notificaciones sin leer.", - "ButtonViewNotifications": "Ver notificaciones", - "ButtonMarkTheseRead": "Marcar como le\u00eddos", - "ButtonClose": "Cerrar", - "LabelAllPlaysSentToPlayer": "Todas las reproducciones se enviaran al reproductor seleccionado.", - "MessageInvalidUser": "Usuario o contrase\u00f1a inv\u00e1lidos. Por favor intenta de nuevo.", - "HeaderLoginFailure": "Fall\u00f3 el Inicio de Sesi\u00f3n", - "HeaderAllRecordings": "Todas las Grabaciones", - "RecommendationBecauseYouLike": "Porque te gust\u00f3 {0}", - "RecommendationBecauseYouWatched": "Porque viste {0}", - "RecommendationDirectedBy": "Dirigido por {0}", - "RecommendationStarring": "Protagonizado por {0}", - "HeaderConfirmRecordingCancellation": "Confirmar Cancelaci\u00f3n de la Grabaci\u00f3n", - "MessageConfirmRecordingCancellation": "\u00bfEst\u00e1 seguro de querer cancelar esta grabaci\u00f3n?", - "MessageRecordingCancelled": "Grabaci\u00f3n cancelada.", - "MessageRecordingScheduled": "Grabaci\u00f3n programada.", - "HeaderConfirmSeriesCancellation": "Confirmar Cancelaci\u00f3n de Serie", - "MessageConfirmSeriesCancellation": "\u00bfEst\u00e1 seguro de querer cancelar esta serie?", - "MessageSeriesCancelled": "Serie cancelada", - "HeaderConfirmRecordingDeletion": "Confirmar Eliminaci\u00f3n de Grabaci\u00f3n", - "MessageConfirmRecordingDeletion": "\u00bfEst\u00e1 seguro de querer eliminar esta grabaci\u00f3n?", - "MessageRecordingDeleted": "Grabaci\u00f3n eliminada.", - "ButonCancelRecording": "Cancelar Grabaci\u00f3n", - "MessageRecordingSaved": "Grabaci\u00f3n guardada.", - "OptionSunday": "Domingo", - "OptionMonday": "Lunes", - "OptionTuesday": "Martes", - "OptionWednesday": "Mi\u00e9rcoles", - "OptionThursday": "Jueves", - "OptionFriday": "Viernes", - "OptionSaturday": "S\u00e1bado", - "OptionEveryday": "Todos los d\u00edas", - "OptionWeekend": "Fines de Semana", - "OptionWeekday": "Entre semana", - "HeaderConfirmDeletion": "Confirmar Eliminaci\u00f3n", - "MessageConfirmPathSubstitutionDeletion": "\u00bfEst\u00e1 seguro de querer eliminar esta ruta alternativa?", - "LiveTvUpdateAvailable": "(Actualizaci\u00f3n disponible)", - "LabelVersionUpToDate": "\u00a1Actualizado!", - "ButtonResetTuner": "Resetear sintonizador", - "HeaderResetTuner": "Resetear Sintonizador", - "MessageConfirmResetTuner": "\u00bfEst\u00e1 seguro de querer restablecer las configuraciones de este sintonizador? Cualquier reproducci\u00f3n o grabaci\u00f3n sera interrumpida abruptamente.", - "ButtonCancelSeries": "Cancelar Series", - "HeaderSeriesRecordings": "Grabaciones de Series", - "LabelAnytime": "Cuando sea", - "StatusRecording": "Grabando", - "StatusWatching": "Viendo", - "StatusRecordingProgram": "Grabando {0}", - "StatusWatchingProgram": "Viendo {0}", - "HeaderSplitMedia": "Dividir y Separar Medios", - "MessageConfirmSplitMedia": "\u00bfEst\u00e1 seguro de querer separar estos medios en \u00edtems separados?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Su receptor Chromecast no puede conectarse con su Servidor Emby. Por favor revise las conexiones e intent\u00e9lo nuevamente.", - "MessagePleaseSelectOneItem": "Por favor selecciona al menos un \u00edtem.", - "MessagePleaseSelectTwoItems": "Por favor selecciona al menos dos \u00edtems.", - "MessageTheSelectedItemsWillBeGrouped": "Los videos seleccionados se agruparan en un solo \u00edtem virtual. Las aplicaciones Emby elegir\u00e1n autom\u00e1ticamente cual versi\u00f3n reproducir dependiendo del dispositivo y el rendimiento de la red. \u00bfEsta seguro de que desea continuar?", - "HeaderResume": "Continuar", - "HeaderMyViews": "Mis Vistas", - "HeaderLibraryFolders": "Carpetas de Medios", - "HeaderLatestMedia": "Agregadas Recientemente", - "ButtonMoreItems": "Mas...", - "ButtonMore": "M\u00e1s", - "HeaderFavoriteMovies": "Pel\u00edculas Preferidas", - "HeaderFavoriteShows": "Programas Preferidos", - "HeaderFavoriteEpisodes": "Episodios Preferidos", - "HeaderFavoriteGames": "Juegos Preferidos", - "HeaderRatingsDownloads": "Calificaciones \/ Descargas", - "HeaderConfirmProfileDeletion": "Confirmar Eliminaci\u00f3n del Perfil", - "MessageConfirmProfileDeletion": "\u00bfEst\u00e1 seguro de querer eliminar este perfil?", - "HeaderSelectServerCachePath": "Seleccionar Trayector\u00eda para Cach\u00e9 del Servidor", - "HeaderSelectTranscodingPath": "Seleccionar Ruta para Transcodificaci\u00f3n Temporal", - "HeaderSelectImagesByNamePath": "Seleccionar Ruta para Im\u00e1genes por Nombre", - "HeaderSelectMetadataPath": "Seleccionar Ruta para Metadatos", - "HeaderSelectServerCachePathHelp": "Explore o introduzca la ruta a utilizar para los archivos del cach\u00e9 del servidor. La carpeta debe tener permisos de escritura.", - "HeaderSelectTranscodingPathHelp": "Explore o introduzca la ruta a utilizar para los archivos temporales de transcodificaci\u00f3n. La carpeta debe tener permisos de escritura.", - "HeaderSelectImagesByNamePathHelp": "Explore o introduzca la ruta a utilizar para la carpeta de im\u00e1genes por nombre. La carpeta debe tener permisos de escritura.", - "HeaderSelectMetadataPathHelp": "Explore o introduzca la ruta donde desea almacenar los metadatos. La carpeta debe tener permisos de escritura.", - "HeaderSelectChannelDownloadPath": "Selecciona una ruta para la descarga del canal", - "HeaderSelectChannelDownloadPathHelp": "Explore o introduzca la ruta usada para almacenar los archivos temporales del canal. La carpeta debe tener permisos de escritura.", - "OptionNewCollection": "Nuevo...", - "ButtonAdd": "Agregar", - "ButtonRemove": "Eliminar", - "LabelChapterDownloaders": "Descargadores de Cap\u00edtulos:", - "LabelChapterDownloadersHelp": "Habilite y califique sus descargadores de cap\u00edtulos preferidos en orden de prioridad. Los descargadores con menor prioridad s\u00f3lo seran utilizados para completar informaci\u00f3n faltante.", - "HeaderFavoriteAlbums": "\u00c1lbumes Favoritos", - "HeaderLatestChannelMedia": "\u00cdtems Recientes de Canales", - "ButtonOrganizeFile": "Organizar Archivo", - "ButtonDeleteFile": "Eliminar Archivo", - "HeaderOrganizeFile": "Organizar Archivo", - "HeaderDeleteFile": "Eliminar Archivo", - "StatusSkipped": "Saltado", - "StatusFailed": "Fallido", - "StatusSuccess": "Exitoso", - "MessageFileWillBeDeleted": "El siguiente archivo sera eliminado:", - "MessageSureYouWishToProceed": "\u00bfEst\u00e1 seguro de querer continuar?", - "MessageDuplicatesWillBeDeleted": "Adicionalmente se eliminaran los siguientes duplicados:", - "MessageFollowingFileWillBeMovedFrom": "El siguiente archivo sera movido de:", - "MessageDestinationTo": "a:", - "HeaderSelectWatchFolder": "Elegir Carpeta Monitoreada", - "HeaderSelectWatchFolderHelp": "Explore o introduzca la ruta para la carpeta para monitorear. La carpeta debe tener permisos de escritura.", - "OrganizePatternResult": "Resultado: {0}", - "AutoOrganizeError": "Error organizando los archivos", - "FileOrganizeManually": "Organizar Archivo", - "ErrorOrganizingFileWithErrorCode": "Hubo un error organizando el archivo. C\u00f3digo de error: {0}", - "HeaderRestart": "Reiniciar", - "HeaderShutdown": "Apagar", - "MessageConfirmRestart": "\u00bfEsta seguro de que desea reiniciar el Servidor Emby?", - "MessageConfirmShutdown": "\u00bfEsta seguro de que desea detener el Servidor Emby?", - "ButtonUpdateNow": "Actualizar Ahora", - "ValueItemCount": "{0} \u00edtem", - "ValueItemCountPlural": "{0} \u00edtems", - "NewVersionOfSomethingAvailable": "\u00a1Una nueva versi\u00f3n de {0} esta disponible!", - "VersionXIsAvailableForDownload": "La versi\u00f3n {0} ahora esta disponible para descargar.", - "LabelVersionNumber": "Versi\u00f3n {0}", - "LabelPlayMethodTranscoding": "Trasncodificado", - "LabelPlayMethodDirectStream": "Transmisi\u00f3n Directa", - "LabelPlayMethodDirectPlay": "Reproducci\u00f3n Directa", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Direcci\u00f3n local: {0}", - "LabelRemoteAccessUrl": "Acceso remoto: {0}", - "LabelRunningOnPort": "Ejecut\u00e1ndose en el puerto http {0}.", - "LabelRunningOnPorts": "Ejecut\u00e1ndose en el puerto http {0} y el puerto https {1}.", - "HeaderLatestFromChannel": "M\u00e1s recientes desde {0}", - "LabelUnknownLanaguage": "Idioma desconocido", - "HeaderCurrentSubtitles": "Subtitulos Actuales", - "MessageDownloadQueued": "La descarga se ha agregado a la cola.", - "MessageAreYouSureDeleteSubtitles": "\u00bfEst\u00e1 seguro de querer eliminar este archivo de subtitulos?", - "ButtonRemoteControl": "Control Remoto", - "HeaderLatestTvRecordings": "Grabaciones Recientes", - "ButtonOk": "Ok", - "ButtonCancel": "Cancelar", - "ButtonRefresh": "Actualizar", - "LabelCurrentPath": "Ruta actual:", - "HeaderSelectMediaPath": "Seleccionar ruta a medios", - "HeaderSelectPath": "Seleccionar Trayectoria", - "ButtonNetwork": "Red", - "MessageDirectoryPickerInstruction": "Las rutas de red pueden ser introducidas manualmente en caso de que el bot\u00f3n de Red no pueda localizar sus dispositivos. Por ejemplo, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "Para BSD, quiz\u00e1s necesite configurar el almacenamiento dentro de su \"FreeNAS Jail\" de manera que permita a Emby accesarlo.", - "MessageDirectoryPickerLinuxInstruction": "Para Linux, debe dar al usuario de sistema Emby al menos permisos de lectura a las rutas de almacenamiento.", - "HeaderMenu": "Men\u00fa", - "ButtonOpen": "Abrir", - "ButtonOpenInNewTab": "Abrir en una pesta\u00f1a nueva", - "ButtonShuffle": "Aleatorio", - "ButtonInstantMix": "Mix instant\u00e1neo", - "ButtonResume": "Continuar", - "HeaderScenes": "Escenas", - "HeaderAudioTracks": "Pistas de Audio", - "HeaderLibraries": "Bibliotecas", - "HeaderSubtitles": "Subt\u00edtulos", - "HeaderVideoQuality": "Calidad de Video", - "MessageErrorPlayingVideo": "Ha ocurrido un error al reproducir el video.", - "MessageEnsureOpenTuner": "Por favor aseg\u00farese de que se encuentre disponible un sintonizador abierto.", - "ButtonHome": "Inicio", - "ButtonDashboard": "Panel de Control", - "ButtonReports": "Reportes", - "ButtonMetadataManager": "Administrador de Metadatos", - "HeaderTime": "Hora", - "HeaderName": "Nombre", - "HeaderAlbum": "\u00c1lbum", - "HeaderAlbumArtist": "Artista del \u00c1lbum", - "HeaderArtist": "Artista", - "LabelAddedOnDate": "Agregado {0}", - "ButtonStart": "Iniciar", - "HeaderChannels": "Canales", - "HeaderMediaFolders": "Carpetas de Medios", - "HeaderBlockItemsWithNoRating": "Bloquear contenido sin informaci\u00f3n de clasificaci\u00f3n:", - "OptionBlockOthers": "Otros", - "OptionBlockTvShows": "Programas de TV", - "OptionBlockTrailers": "Tr\u00e1ilers", - "OptionBlockMusic": "M\u00fasica", - "OptionBlockMovies": "Pel\u00edculas", - "OptionBlockBooks": "Libros", - "OptionBlockGames": "Juegos", - "OptionBlockLiveTvPrograms": "Programas de TV en Vivo", - "OptionBlockLiveTvChannels": "Canales de TV en Vivo", - "OptionBlockChannelContent": "Contenido de Canales de Internet", - "ButtonRevoke": "Revocar", - "MessageConfirmRevokeApiKey": "\u00bfEsta seguro de que desea revocar esta clave api? La conexi\u00f3n de la aplicaci\u00f3n con el Servidor Emby sera terminada abruptamente.", - "HeaderConfirmRevokeApiKey": "Revocar llave de API", - "ValueContainer": "Contenedor: {0}", - "ValueAudioCodec": "C\u00f3dec de Audio: {0}", - "ValueVideoCodec": "C\u00f3dec de Video: {0}", - "ValueCodec": "C\u00f3dec: {0}", - "ValueConditions": "Condiciones: {0}", - "LabelAll": "Todos", - "HeaderDeleteImage": "Eliminar Im\u00e1gen", - "MessageFileNotFound": "Archivo no encontrado.", - "MessageFileReadError": "Ha ocurrido un error al leer este archivo.", - "ButtonNextPage": "P\u00e1gina Siguiente", - "ButtonPreviousPage": "P\u00e1gina Anterior", - "ButtonMoveLeft": "Mover a la izquierda", - "ButtonMoveRight": "Mover a la derecha", - "ButtonBrowseOnlineImages": "Buscar im\u00e1genes en l\u00ednea", - "HeaderDeleteItem": "Eliminar \u00cdtem", - "ConfirmDeleteItem": "Al eliminar este \u00edtem se eliminar\u00e1 tanto del sistema de archivos como de su biblioteca de medios. \u00bfEsta seguro de querer continuar?", - "HeaderDeleteItems": "Borrar items", - "ConfirmDeleteItems": "Al borrar estos items ser\u00e1n eliminados tanto del sistema de archivos como de la librer\u00eda de medios. \u00bfEsta seguro que desea continuar?", - "MessagePleaseEnterNameOrId": "Por favor introduzca un nombre o id externo.", - "MessageValueNotCorrect": "El valor introducido no es correcto. Intente nuevamente por favor.", - "MessageItemSaved": "\u00cdtem guardado.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Por favor acepte los t\u00e9rminos del servicio antes de continuar.", - "OptionEnded": "Finalizado", - "OptionContinuing": "Continuando", - "OptionOff": "No", - "OptionOn": "Si", - "ButtonSettings": "Configuraci\u00f3n", - "ButtonUninstall": "Desinstalar", - "HeaderEnabledFields": "Campos Habilitados", - "HeaderEnabledFieldsHelp": "Desmarcar un campo para bloquearlo y prevenir que sus datos cambien.", - "HeaderLiveTV": "TV en Vivo", - "MissingLocalTrailer": "Falta tr\u00e1iler local.", - "MissingPrimaryImage": "Falta im\u00e1gen principal.", - "MissingBackdropImage": "Falta im\u00e1gen de fondo.", - "MissingLogoImage": "Falta im\u00e1gen de logo.", - "MissingEpisode": "Falta episodio.", - "OptionScreenshots": "Capuras de Pantalla", - "OptionBackdrops": "Fondos", - "OptionImages": "Im\u00e1genes", - "OptionKeywords": "Palabras clave", - "OptionTags": "Etiquetas", - "OptionStudios": "Estudios", - "OptionName": "Nombre", - "OptionOverview": "Sinopsis", - "OptionGenres": "G\u00e9neros", - "OptionParentalRating": "Clasificaci\u00f3n Parental", - "OptionPeople": "Personas", - "OptionRuntime": "Duraci\u00f3n", - "OptionProductionLocations": "Lugares de Producci\u00f3n", - "OptionBirthLocation": "Lugar de Nacimiento", - "LabelAllChannels": "Todos los canales", - "LabelLiveProgram": "EN VIVO", - "LabelNewProgram": "NUEVO", - "LabelPremiereProgram": "ESTRENO", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Cambiar Tipo de Contenido", - "HeaderChangeFolderTypeHelp": "Para cambiar el tipo, por favor elimine y reconstruya la biblioteca con el nuevo tipo.", - "HeaderAlert": "Alerta", - "MessagePleaseRestart": "Por favor reinicie para finalizar la actualizaci\u00f3n.", - "ButtonRestart": "Reiniciar", - "MessagePleaseRefreshPage": "Por favor vuelva a cargar esta pagina para recibir nuevas actualizaciones del Servidor Emby.", - "ButtonHide": "Ocultar", - "MessageSettingsSaved": "Configuraci\u00f3n guardada.", - "ButtonSignOut": "Cerrar Sesi\u00f3n", - "ButtonMyProfile": "Mi Perf\u00edl", - "ButtonMyPreferences": "Mis Preferencias", - "MessageBrowserDoesNotSupportWebSockets": "Este navegador no soporta sockets web. Para una mejor experiencia, pruebe con un navegador m\u00e1s nuevo como Chrome, Firefox, IE10+, Safari (iOS) u Opera.", - "LabelInstallingPackage": "Instalando {0}", - "LabelPackageInstallCompleted": "{0} instalaci\u00f3n completada.", - "LabelPackageInstallFailed": "{0} instalaci\u00f3n fallida.", - "LabelPackageInstallCancelled": "{0} instalaci\u00f3n cancelada.", - "TabServer": "Servidor", - "TabUsers": "Usuarios", - "TabLibrary": "Biblioteca", - "TabMetadata": "Metadatos", - "TabDLNA": "DLNA", - "TabLiveTV": "TV en Vivo", - "TabAutoOrganize": "Auto-Organizar", - "TabPlugins": "Complementos", - "TabAdvanced": "Avanzado", - "TabHelp": "Ayuda", - "TabScheduledTasks": "Tareas Programadas", - "ButtonFullscreen": "Pantalla completa", - "ButtonAudioTracks": "Pistas de Sonido", - "ButtonSubtitles": "Subt\u00edtulos", - "ButtonScenes": "Escenas", - "ButtonQuality": "Calidad", - "HeaderNotifications": "Notificaciones", - "HeaderSelectPlayer": "Seleccionar Reproductor", - "ButtonSelect": "Seleccionar", - "ButtonNew": "Nuevo", - "MessageInternetExplorerWebm": "Para mejores resultados con Internet Explorer por favor instale el complemento de reproducci\u00f3n WebM.", - "HeaderVideoError": "Error de Video", - "ButtonAddToPlaylist": "Agregar a lista de reproducci\u00f3n", - "HeaderAddToPlaylist": "Agregar a Lista de Reproducci\u00f3n", - "LabelName": "Nombre:", - "ButtonSubmit": "Enviar", - "LabelSelectPlaylist": "Lista de Reproducci\u00f3n:", - "OptionNewPlaylist": "Nueva lista de reproducci\u00f3n...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Vista", - "ButtonViewSeriesRecording": "Ver grabaciones de series", - "ValueOriginalAirDate": "Fecha de transmisi\u00f3n original: {0}", - "ButtonRemoveFromPlaylist": "Eliminar de la lista de reproducci\u00f3n", - "HeaderSpecials": "Especiales", - "HeaderTrailers": "Tr\u00e1ilers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resoluci\u00f3n", - "HeaderVideo": "Video", - "HeaderRuntime": "Duraci\u00f3n", - "HeaderCommunityRating": "Calificaci\u00f3n de la comunidad", - "HeaderPasswordReset": "Restablecer Contrase\u00f1a", - "HeaderParentalRating": "Clasificaci\u00f3n parental", - "HeaderReleaseDate": "Fecha de estreno", - "HeaderDateAdded": "Fecha de adici\u00f3n", - "HeaderSeries": "Series", - "HeaderSeason": "Temporada", - "HeaderSeasonNumber": "N\u00famero de temporada", - "HeaderNetwork": "Cadena", - "HeaderYear": "A\u00f1o", - "HeaderGameSystem": "Sistema de juegos", - "HeaderPlayers": "Reproductores", - "HeaderEmbeddedImage": "Im\u00e1gen embebida", - "HeaderTrack": "Pista", - "HeaderDisc": "Disco", - "OptionMovies": "Pel\u00edculas", - "OptionCollections": "Colecciones", - "OptionSeries": "Series", - "OptionSeasons": "Temporadas", - "OptionEpisodes": "Episodios", - "OptionGames": "Juegos", - "OptionGameSystems": "Sistemas de juegos", - "OptionMusicArtists": "Int\u00e9rpretes", - "OptionMusicAlbums": "\u00c1lbumes musicales", - "OptionMusicVideos": "Videos musicales", - "OptionSongs": "Canciones", - "OptionHomeVideos": "Videos caseros", - "OptionBooks": "Libros", - "OptionAdultVideos": "Videos para adultos", - "ButtonUp": "Arriba", - "ButtonDown": "Abajo", - "LabelMetadataReaders": "Lectores de metadatos:", - "LabelMetadataReadersHelp": "Ordene sus fuentes de metadatos locales por prioridad. El primer archivo encontrado ser\u00e1 le\u00eddo.", - "LabelMetadataDownloaders": "Recolectores de metadatos:", - "LabelMetadataDownloadersHelp": "Habilite y priorice sus recolectores de metadatos preferidos. Los recolectores de metadatos de menor prioridad solo ser\u00e1n utilizados para llenar informaci\u00f3n faltante.", - "LabelMetadataSavers": "Grabadores de metadatos:", - "LabelMetadataSaversHelp": "Seleccione los formatos de archivo con los que se guardaran sus metadatos.", - "LabelImageFetchers": "Recolectores de im\u00e1genes:", - "LabelImageFetchersHelp": "Habilite y priorice sus recolectores de im\u00e1genes preferidos.", - "ButtonQueueAllFromHere": "Encolar todos desde aqu\u00ed", - "ButtonPlayAllFromHere": "Reproducir todos desde aqu\u00ed", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identificar \u00edtem", - "PersonTypePerson": "Persona", - "LabelTitleDisplayOrder": "Ordenamiento de despliegue de t\u00edtulos:", - "OptionSortName": "Nombre para ordenar", - "OptionReleaseDate": "Fecha de estreno", - "LabelSeasonNumber": "N\u00famero de temporada:", - "LabelDiscNumber": "N\u00famero de disco", - "LabelParentNumber": "N\u00famero antecesor", - "LabelEpisodeNumber": "N\u00famero de episodio:", - "LabelTrackNumber": "N\u00famero de Pista:", - "LabelNumber": "N\u00famero:", - "LabelReleaseDate": "Fecha de estreno:", - "LabelEndDate": "Fecha de Fin:", - "LabelYear": "A\u00f1o:", - "LabelDateOfBirth": "Fecha de nacimiento:", - "LabelBirthYear": "A\u00f1o de nacimiento:", - "LabelBirthDate": "Fecha de Nacimiento:", - "LabelDeathDate": "Fecha de defunci\u00f3n:", - "HeaderRemoveMediaLocation": "Eliminar Ubicaci\u00f3n de Medios", - "MessageConfirmRemoveMediaLocation": "\u00bfEst\u00e1 seguro de querer eliminar esta ubicaci\u00f3n?", - "HeaderRenameMediaFolder": "Renombrar Carpeta de Medios", - "LabelNewName": "Nuevo nombre:", - "HeaderAddMediaFolder": "Agregar Carpeta de Medios", - "HeaderAddMediaFolderHelp": "Nombre (Pel\u00edculas, M\u00fascia, TV, etc.):", - "HeaderRemoveMediaFolder": "Eliminar Carpteta de Medios", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Las siguientes ubicaciones de medios ser\u00e1n eliminadas de su biblioteca:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "\u00bfEst\u00e1 seguro de querer eliminar esta carpeta de medios?", - "ButtonRename": "Renombrar", - "ButtonChangeContentType": "Cambiar tipo de contenido", - "HeaderMediaLocations": "Ubicaciones de Medios", - "LabelContentTypeValue": "Tipo de contenido: {0}", - "LabelPathSubstitutionHelp": "Opcional: La sustituci\u00f3n de trayectoras puede mapear trayectorias del servidor a recursos de red comaprtidos que los clientes pueden acceder para reproducir de manera directa.", - "FolderTypeUnset": "No establecido (contenido mixto)", - "FolderTypeMovies": "Pel\u00edculas", - "FolderTypeMusic": "M\u00fasica", - "FolderTypeAdultVideos": "Videos para adultos", - "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "Videos musicales", - "FolderTypeHomeVideos": "Videos caseros", - "FolderTypeGames": "Juegos", - "FolderTypeBooks": "Libros", - "FolderTypeTvShows": "TV", - "TabMovies": "Pel\u00edculas", - "TabSeries": "Series", - "TabEpisodes": "Episodios", - "TabTrailers": "Tr\u00e1ilers", - "TabGames": "Juegos", - "TabAlbums": "\u00c1lbumes", - "TabSongs": "Canciones", - "TabMusicVideos": "Videos Musicales", - "BirthPlaceValue": "Lugar de nacimiento: {0}", - "DeathDateValue": "Fallcimiento: {0}", - "BirthDateValue": "Nacimiento: {0}", - "HeaderLatestReviews": "Rese\u00f1as Recientes", - "HeaderPluginInstallation": "Instalaci\u00f3n de complemento", - "MessageAlreadyInstalled": "Esta versi\u00f3n ya se encuentra instalada.", - "ValueReviewCount": "{0} Rese\u00f1as", - "MessageYouHaveVersionInstalled": "Actualmente cuenta con la vesi\u00f3n {0} instalada.", - "MessageTrialExpired": "El periodo de prueba de esta caracter\u00edstica ya ha expirado.", - "MessageTrialWillExpireIn": "El periodo de prueba de esta caracter\u00edstica expirar\u00e1 en {0} d\u00eda(s).", - "MessageInstallPluginFromApp": "El complemento debe estar instalado desde la aplicaci\u00f3n en la que va a utilizarlo.", - "ValuePriceUSD": "Precio: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "Se encuentra registrado para esta caracter\u00edstica, y podr\u00e1 continuar us\u00e1ndola con una suscripci\u00f3n activa de Emby Premier.", - "MessageChangeRecurringPlanConfirm": "Despu\u00e9s de completar esta transacci\u00f3n necesitar\u00e1 cancelar su donaci\u00f3n recurrente previa desde su cuenta PayPal. Gracias por apoyar Emby.", - "ButtonDelete": "Eliminar", - "HeaderEmbyAccountAdded": "Cuenta Emby Agregada", - "MessageEmbyAccountAdded": "La cuenta Emby ha sido agregada a este usuario.", - "MessagePendingEmbyAccountAdded": "La cuenta Emby ha sido agregada a este usuario. Se enviara un correo electr\u00f3nico al propietario de la cuenta. La invitaci\u00f3n necesitara ser confirmada dando clic al enlace dentro del correo electr\u00f3nico.", - "HeaderEmbyAccountRemoved": "Cuenta Emby Eliminada", - "MessageEmbyAccontRemoved": "La cuenta Emby ha sido eliminada de este usuario.", - "TooltipLinkedToEmbyConnect": "Enlazado a Emby Connect", - "HeaderUnrated": "Sin clasificar", - "ValueDiscNumber": "Disco {0}", - "HeaderUnknownDate": "Fecha Desconocida", - "HeaderUnknownYear": "A\u00f1o Desconocido", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Reproducir con un reproductor externo", - "HeaderSelectExternalPlayer": "Seleccionar Reproductor Externo", - "HeaderExternalPlayerPlayback": "Reproducci\u00f3n con Reproductor Externo", - "ButtonImDone": "He Terminado", - "OptionWatched": "Vista", - "OptionUnwatched": "No vista", - "ExternalPlayerPlaystateOptionsHelp": "Especifique como desea reiniciar la reproducci\u00f3n de este video la pr\u00f3xima vez.", - "LabelMarkAs": "Marcar como:", - "OptionInProgress": "En Progreso", - "LabelResumePoint": "Punto de reinicio:", - "ValueOneMovie": "1 pel\u00edcula", - "ValueMovieCount": "{0} pel\u00edculas", - "ValueOneTrailer": "1 tr\u00e1iler", - "ValueTrailerCount": "{0} tr\u00e1ilers", - "ValueOneSeries": "1 serie", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episodio", - "ValueEpisodeCount": "{0} episodios", - "ValueOneGame": "1 juego", - "ValueGameCount": "{0} juegos", - "ValueOneAlbum": "1 \u00e1lbum", - "ValueAlbumCount": "{0} \u00e1lbumes", - "ValueOneSong": "1 canci\u00f3n", - "ValueSongCount": "{0} canciones", - "ValueOneMusicVideo": "1 video musical", - "ValueMusicVideoCount": "{0} videos musicales", - "HeaderOffline": "Fuera de L\u00ednea", - "HeaderUnaired": "No Emitido", - "HeaderMissing": "Falta", - "ButtonWebsite": "Sitio web", - "TooltipFavorite": "Favorito", - "TooltipLike": "Me gusta", - "TooltipDislike": "No me gusta", - "TooltipPlayed": "Reproducido", - "ValueSeriesYearToPresent": "{0}-Presente", - "ValueAwards": "Premios: {0}", - "ValueBudget": "Presupuesto: {0}", - "ValueRevenue": "Ingresos: {0}", - "ValuePremiered": "Estrenado: {0}", - "ValuePremieres": "Estrenos: {0}", - "ValueStudio": "Estudio: {0}", - "ValueStudios": "Estudios: {0}", - "ValueStatus": "Estado: {0}", - "ValueSpecialEpisodeName": "Especial: {0}", - "LabelLimit": "L\u00edmite:", - "ValueLinks": "Enlaces: {0}", - "HeaderPeople": "Personas", - "HeaderCastAndCrew": "Reparto & Personal:", - "ValueArtist": "Artista: {0}", - "ValueArtists": "Artistas: {0}", - "HeaderTags": "Etiquetas", - "MediaInfoCameraMake": "Marca de la c\u00e1mara", - "MediaInfoCameraModel": "Modelo de la c\u00e1mara", - "MediaInfoAltitude": "Altitud", - "MediaInfoAperture": "Apertura", - "MediaInfoExposureTime": "Tiempo de exposici\u00f3n", - "MediaInfoFocalLength": "Distancia focal", - "MediaInfoOrientation": "Orientaci\u00f3n", - "MediaInfoIsoSpeedRating": "Tasa de velocidad ISO", - "MediaInfoLatitude": "Latitud", - "MediaInfoLongitude": "Longitud", - "MediaInfoShutterSpeed": "Velocidad del obturador", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "Si te gust\u00f3 {0}, prueba con...", - "HeaderPlotKeywords": "Palabras clave de la Trama", - "HeaderMovies": "Pel\u00edculas", - "HeaderAlbums": "\u00c1lbumes", - "HeaderGames": "Juegos", - "HeaderBooks": "Libros", - "HeaderEpisodes": "Episodios", - "HeaderSeasons": "Temporadas", - "HeaderTracks": "Pistas", - "HeaderItems": "\u00cdtems", - "HeaderOtherItems": "Otros \u00cdtems", - "ButtonFullReview": "Rese\u00f1a completa", - "ValueAsRole": "como {0}", - "ValueGuestStar": "Estrella invitada", - "MediaInfoSize": "Tama\u00f1o", - "MediaInfoPath": "Trayectoria", - "MediaInfoFile": "Archivo", - "MediaInfoFormat": "Formato", - "MediaInfoContainer": "Contenedor", - "MediaInfoDefault": "Por defecto", - "MediaInfoForced": "Forzado", - "MediaInfoExternal": "Externo", - "MediaInfoTimestamp": "Fecha y hora", - "MediaInfoPixelFormat": "Formato de pixel", - "MediaInfoBitDepth": "Profundidad de bit", - "MediaInfoSampleRate": "Tasa de muestreo", - "MediaInfoBitrate": "Tasa de bits", - "MediaInfoChannels": "Canales", - "MediaInfoLayout": "Esquema", - "MediaInfoLanguage": "Lenguaje", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Etiqueta de Codec", - "MediaInfoProfile": "Perf\u00edl", - "MediaInfoLevel": "Nivel", - "MediaInfoAspectRatio": "Relaci\u00f3n de aspecto", - "MediaInfoResolution": "Resoluci\u00f3n", - "MediaInfoAnamorphic": "Anam\u00f3rfico", - "MediaInfoInterlaced": "Entrelazado", - "MediaInfoFramerate": "Velocidad de cuadro", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Datos", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subt\u00edtulo", - "MediaInfoStreamTypeEmbeddedImage": "Im\u00e1gen Embebida", - "MediaInfoRefFrames": "Tramas de referencia", - "TabPlayback": "Reproducci\u00f3n", - "TabNotifications": "Notificaciones", - "TabExpert": "Experto", - "HeaderSelectCustomIntrosPath": "Seleccionar Trayectoria de Intros Personalizados", - "HeaderRateAndReview": "Clasificar y Rese\u00f1ar", - "HeaderThankYou": "Gracias", - "MessageThankYouForYourReview": "Gracias por su rese\u00f1a.", - "LabelYourRating": "Su calificaci\u00f3n:", - "LabelFullReview": "Rese\u00f1a completa:", - "LabelShortRatingDescription": "Res\u00famen corto de calificaci\u00f3n:", - "OptionIRecommendThisItem": "Yo recomiendo este \u00edtem", - "WebClientTourContent": "Vea sus medios recientemente a\u00f1adidos, siguientes ep\u00ecsodios y m\u00e1s. Los c\u00edrculos verdes indican cuantos medios sin reproducir tiene.", - "WebClientTourMovies": "Reproduzca pel\u00edculas, tr\u00e1ilers y m\u00e1s desde cualquier dispositivo con un navegador web.", - "WebClientTourMouseOver": "Mantenga el rat\u00f3n sobre cualquier p\u00f3ster para un acceso r\u00e1pido a informaci\u00f3n importante.", - "WebClientTourTapHold": "Mantenga presionado o haga clic derecho en cualquier p\u00f3ster para mostrar un men\u00fa contextual", - "WebClientTourMetadataManager": "Haga clic en editar para abrir el administrador de metadatos", - "WebClientTourPlaylists": "Cree f\u00e1cilmente listas de reproducci\u00f3n y mezclas instant\u00e1neas, y reprod\u00fazcalas en cualquier dispositivo", - "WebClientTourCollections": "Cree colecciones de pel\u00edculas para agruparlas en sets de pel\u00edculas", - "WebClientTourUserPreferences1": "Las preferencias de usuario le permiten personalizar la manera que que su biblioteca es mostrada en todas tus aplicaciones Emby.", - "WebClientTourUserPreferences2": "Configure sus preferencias de audio y subtitulos una vez, por cada aplicaci\u00f3n Emby.", - "WebClientTourUserPreferences3": "Dise\u00f1e a su gusto la p\u00e1gina principal del cliente web", - "WebClientTourUserPreferences4": "Configure im\u00e1genes de fondo, canciones de tema y reproductores externos", - "WebClientTourMobile1": "El cliente web funciona de maravilla en tel\u00e9fonos inteligentes y tabletas...", - "WebClientTourMobile2": "y controla f\u00e1cilmente otros dispositivos y aplicaciones Emby", - "WebClientTourMySync": "Sincronice sus medios personales a sus dispositivos para reproducirlos fuera de l\u00ednea.", - "MessageEnjoyYourStay": "Disfrute su visita", - "DashboardTourDashboard": "El panel de control del servidor le permite monitorear su servidor y sus usuarios. Siempre sabr\u00e1 quien est\u00e1 haciendo qu\u00e9 y donde se encuentran.", - "DashboardTourHelp": "La ayuda dentro de la app proporciona botones simples para abrir p\u00e1ginas de la wiki relacionadas con el contenido en pantalla.", - "DashboardTourUsers": "Cree cuentas f\u00e1cilmente para sus amigos y familia, cada una con sus propios permisos, accesos a la biblioteca, controles parentales y m\u00e1s.", - "DashboardTourCinemaMode": "El modo cine trae la experiencia del cine directo a su sala de TV con la capacidad de reproducir tr\u00e1ilers e intros personalizados antes de la presentaci\u00f3n estelar.", - "DashboardTourChapters": "Active la generaci\u00f3n de im\u00e1genes de cap\u00edtulos de sus videos para una presentaci\u00f3n m\u00e1s agradable al desplegar.", - "DashboardTourSubtitles": "Descargue autom\u00e1ticamente subt\u00edtulos para sus videos en cualquier idioma.", - "DashboardTourPlugins": "Instale complementos como canales de video de Internet, TV en vivo, buscadores de metadatos y m\u00e1s.", - "DashboardTourNotifications": "Env\u00ede notificaciones automatizadas de eventos del servidor a sus dispositivos m\u00f3viles, correo electr\u00f3nico y m\u00e1s.", - "DashboardTourScheduledTasks": "Administre f\u00e1cilmente operaciones de larga duraci\u00f3n con tareas programadas. Decida cuando se ejecutar\u00e1n y con que periodicidad.", - "DashboardTourMobile": "El panel de control del Servidor Emby funciona genial en smartphones y tablets. Administre su servidor desde la palma de su mano en cualquier momento y en cualquier lugar.", - "DashboardTourSync": "Sincronice sus medios personales a sus dispositivos para reproducirlos fuera de l\u00ednea.", - "MessageRefreshQueued": "Actualizaci\u00f3n programada", - "TabDevices": "Dispositivos", - "TabExtras": "Extras", - "HeaderUploadImage": "Subir im\u00e1gen", - "DeviceLastUsedByUserName": "\u00daltimo usado por {0}", - "HeaderDeleteDevice": "Eliminar Dispositivo", - "DeleteDeviceConfirmation": "\u00bfEst\u00e1 seguro de querer eliminar este dispositivo? Volver\u00e1 a aparecer la siguiente vez que un usuario inicie sesi\u00f3n en \u00e9l.", - "LabelEnableCameraUploadFor": "Habilitar subir desde la c\u00e1mara para:", - "HeaderSelectUploadPath": "Seleccionar ruta de subida", - "LabelEnableCameraUploadForHelp": "La transferencias ocurrir\u00e1n autom\u00e1ticamente en segundo plano cuando haya iniciado sesi\u00f3n en Emby.", - "ErrorMessageStartHourGreaterThanEnd": "El horario de fin debe ser mayor al de comienzo.", - "ButtonLibraryAccess": "Acceso a biblioteca", - "ButtonParentalControl": "Control parental", - "HeaderInvitationSent": "Invitaci\u00f3n Enviada", - "MessageInvitationSentToUser": "Se ha enviado un correo electr\u00f3nico a {0}, invit\u00e1ndolo a aceptar tu invitaci\u00f3n para compartir.", - "MessageInvitationSentToNewUser": "Un correo electr\u00f3nico se ha enviado a {0} invit\u00e1ndolos a registrarse en Emby.", - "HeaderConnectionFailure": "Falla de Conexi\u00f3n", - "MessageUnableToConnectToServer": "No es posible conectarse al servidor seleccionado en este momento. Por favor aseg\u00farese de que se encuentra en ejecuci\u00f3n e int\u00e9ntelo nuevamente.", - "ButtonSelectServer": "Seleccionar Servidor", - "MessagePluginConfigurationRequiresLocalAccess": "Para configurar este complemento por favor inicie sesi\u00f3n en su servidor local directamente.", - "MessageLoggedOutParentalControl": "El acceso se encuentra restringido en este momento. Por favor int\u00e9ntelo de nuevo mas tarde.", - "DefaultErrorMessage": "Ha ocurrido un error al procesar la solicitud. Por favor int\u00e9ntelo de nuevo mas tarde.", - "ButtonAccept": "Aceptar", - "ButtonReject": "Rechazar", - "HeaderForgotPassword": "Contrase\u00f1a Olvidada", - "MessageContactAdminToResetPassword": "Por favor contacte a su administrador para restablecer su contrase\u00f1a.", - "MessageForgotPasswordInNetworkRequired": "Por favor intente de nuevo dentro de su red de hogar para iniciar el proceso de restablecimiento de contrase\u00f1a.", - "MessageForgotPasswordFileCreated": "El siguiente archivo fue creado en tu servidor y contiene instrucciones de como proceder.", - "MessageForgotPasswordFileExpiration": "El pin de restablecimiento expirara en {0}.", - "MessageInvalidForgotPasswordPin": "Se introdujo un pin expirado o invalido. Por favor intente de nuevo.", - "MessagePasswordResetForUsers": "Las contrase\u00f1as han sido eliminadas para los siguientes usuarios. Para acceder, inicie sesi\u00f3n con la contrase\u00f1a en blanco.", - "HeaderInviteGuest": "Agregar un Invitado", - "ButtonLinkMyEmbyAccount": "Enlazar mi cuenta ahora", - "MessageConnectAccountRequiredToInviteGuest": "Para poder enviar invitaciones necesita primero enlazar su cuenta Emby con este servidor.", - "ButtonSync": "Sinc", - "SyncMedia": "Sincronizar Medios", - "HeaderCancelSyncJob": "Cancelar Sinc.", - "CancelSyncJobConfirmation": "Cancelando el trabajo de sincronizaci\u00f3n eliminara los medios sincronizados del dispositivo durante el pr\u00f3ximo proceso de sincronizaci\u00f3n. \u00bfEsta seguro de que desea continuar?", - "TabSync": "Sinc", - "MessagePleaseSelectDeviceToSyncTo": "Por favor seleccione un dispositivo con el que desea sincronizar.", - "MessageSyncJobCreated": "Trabajo de sincronizaci\u00f3n creado.", - "LabelSyncTo": "Sincronizar con:", - "LabelSyncJobName": "Nombre del trabajo de sinc:", - "LabelQuality": "Calidad:", - "HeaderSettings": "Configuraci\u00f3n", - "OptionAutomaticallySyncNewContent": "Sincronizar autom\u00e1ticamente nuevos contenidos", - "OptionAutomaticallySyncNewContentHelp": "Los contenidos nuevos agregados ser\u00e1n sincronizados autom\u00e1ticamente con el dispositivo.", - "OptionSyncUnwatchedVideosOnly": "Sincronizar \u00fanicamente videos no vistos", - "OptionSyncUnwatchedVideosOnlyHelp": "Solamente los videos a\u00fan no vistos ser\u00e1n sincronizados, se eliminar\u00e1n los videos del dispositivo conforme \u00e9stos sean vistos.", - "LabelItemLimit": "L\u00edmite de \u00cdtems:", - "LabelItemLimitHelp": "Opcional. Establece un l\u00edmite en el n\u00famero de \u00edtems que ser\u00e1n sincronizados.", - "MessageBookPluginRequired": "Requiere instalaci\u00f3n del complemento Bookshelf", - "MessageGamePluginRequired": "Requiere instalaci\u00f3n del complemento de GameBrowser", - "MessageUnsetContentHelp": "El contenido ser\u00e1 desplegado como carpetas simples. Para mejores resultados utilice el administrador de metadatos para establecer los tipos de contenido para las sub-carpetas.", - "SyncJobItemStatusQueued": "En cola", - "SyncJobItemStatusConverting": "Convirti\u00e9ndo", - "SyncJobItemStatusTransferring": "Transfiri\u00e9ndo", - "SyncJobItemStatusSynced": "Sincronizado", - "SyncJobItemStatusFailed": "Fall\u00f3", - "SyncJobItemStatusRemovedFromDevice": "Eliminado del dispositivo", - "SyncJobItemStatusCancelled": "Cancelado", - "LabelProfile": "Perf\u00edl:", - "LabelBitrateMbps": "Tasa de bits (Mbps):", - "EmbyIntroDownloadMessage": "Para descargar e instalar el Servidor Emby visite {0}.", - "ButtonNewServer": "Nuevo Servidor", - "ButtonSignInWithConnect": "Inicie con su cuenta de Emby Connect", - "HeaderNewServer": "Nuevo Servidor", - "MyDevice": "Mi Dispositivo", - "ButtonRemote": "Remoto", - "TabInfo": "Info", - "TabCast": "Reparto", - "TabScenes": "Escenas", - "HeaderUnlockApp": "Desbloquear App", - "HeaderUnlockSync": "Desbloquear Emby Sinc", - "MessageUnlockAppWithPurchaseOrSupporter": "Desbloquee esta caracter\u00edstica con una peque\u00f1a compra \u00fanica, o con una suscripci\u00f3n activa de Emby Premier.", - "MessageUnlockAppWithSupporter": "Desbloquee esta caracter\u00edstica con una suscripci\u00f3n activa de Emby Premier.", - "MessageToValidateSupporter": "Si tiene una activa una suscripci\u00f3n Emby Premiere, solo acceda a la aplicaci\u00f3n una vez usando su conexi\u00f3n Wifi dentro de su red de hogar.", - "MessagePaymentServicesUnavailable": "Los servicios de pago no se encuentran disponibles actualmente. Por favor intente de nuevo mas tarde.", - "MessagePleaseSignInLocalNetwork": "Antes de continuar, por favor aseg\u00farese de que esta conectado a su red local usando una conexi\u00f3n Wifi o LAN.", - "ButtonUnlockWithPurchase": "Desbloquear con una compra", - "ButtonUnlockPrice": "Desbloquear {0}", - "MessageLiveTvGuideRequiresUnlock": "La Guia de TV en Vivo actualmente esta limitada a {0} canales. De clic en el bot\u00f3n Desbloquear para saber como desbloquear la experiencia completa.", - "OptionEnableFullscreen": "Habilitar Pantalla Completa", - "ButtonServer": "Servidor", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Biblioteca", - "HeaderMedia": "Medios", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Avanzado", - "HeaderGroupVersions": "Agrupar Versiones", - "HeaderSaySomethingLike": "Decir Algo Como...", - "ButtonTryAgain": "Intentar de Nuevo", - "HeaderYouSaid": "Ha Dicho...", - "MessageWeDidntRecognizeCommand": "Lo sentimos, no reconocimos ese comando.", - "MessageIfYouBlockedVoice": "Si ha negado el acceso a la voz a la aplicaci\u00f3n necesitara reconfigurar antes de intentarlo de nuevo.", - "MessageNoItemsFound": "No se encontraron \u00edtems.", - "ButtonManageServer": "Administrar Servidor", - "ButtonEditSubtitles": "Editar subt\u00edtulos", - "ButtonPreferences": "Preferencias", - "ButtonViewArtist": "Ver artista", - "ButtonViewAlbum": "Ver album", - "ButtonEditImages": "Editar im\u00e1genes", - "ErrorMessagePasswordNotMatchConfirm": "La Contrase\u00f1a y la confirmaci\u00f3n de la contrase\u00f1a deben coincidir.", - "ErrorMessageUsernameInUse": "El Nombre de Usuario ya esta en uso. Por favor seleccione un nuevo nombre e intente de nuevo.", - "ErrorMessageEmailInUse": "La direcci\u00f3n de correo electr\u00f3nico ya esta en uso. Por favor ingrese un correo electr\u00f3nico nuevo e intente de nuevo, o si olvido la contrase\u00f1a use la opci\u00f3n \"Olvide mi contrase\u00f1a\".", - "MessageThankYouForConnectSignUp": "Gracias por registrarse a Emby Connect. Un correo electr\u00f3nico sera enviado a su direcci\u00f3n con instrucciones de como confirmar su nueva cuenta. Por favor confirme la cuente y regrese aqu\u00ed para iniciar sesi\u00f3n.", - "HeaderShare": "Compartir", - "ButtonShareHelp": "Compartir paginas web que contengan informaci\u00f3n sobre los medios con redes sociales. Los archivos de los medios nunca son compartidos p\u00fablicamente.", - "ButtonShare": "Compartir", - "HeaderConfirm": "Confirmar", - "ButtonAdvancedRefresh": "Actualizaci\u00f3n Avanzada", - "MessageConfirmDeleteTunerDevice": "\u00bfEst\u00e1 seguro de querer eliminar este dispositivo?", - "MessageConfirmDeleteGuideProvider": "\u00bfEst\u00e1 seguro de querer eliminar este proveedor de gu\u00eda?", - "HeaderDeleteProvider": "Eliminar Proveedor", - "HeaderAddProvider": "Agregar Proveedor", - "ErrorAddingTunerDevice": "Hubo un error al agregar el dispositivo sintonizador. Por favor aseg\u00farese de que este disponible e intente de nuevo.", - "ErrorSavingTvProvider": "Hubo un error al salvar el proveedor de TV. Por favor aseg\u00farese de que este disponible e intente de nuevo.", - "ErrorGettingTvLineups": "Hubo un error al descargar la programaci\u00f3n de TV. Por favor aseg\u00farese que su informaci\u00f3n este correctas e intente de nuevo.", - "MessageCreateAccountAt": "Crear una cuenta en {0}", - "ErrorPleaseSelectLineup": "Por favor seleccione una programaci\u00f3n e intente de nuevo. Si no hay disponible ninguna, entonces por favor verifique que su nombre de usuario, contrase\u00f1a, y c\u00f3digo postal sean correctos.", - "HeaderTryEmbyPremiere": "Intente Emby Premiere", - "ButtonBecomeSupporter": "Obtener Emby Premier", - "ButtonClosePlayVideo": "Cerrar y reproducir mi medio", - "MessageDidYouKnowCinemaMode": "\u00bfSab\u00eda que con Emby Premier, puede mejorar su experiencia con caracter\u00edsticas como Modo Cine?", - "MessageDidYouKnowCinemaMode2": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la presentaci\u00f3n estelar.", - "OptionEnableDisplayMirroring": "Habilitar duplicaci\u00f3n de pantalla", - "HeaderSyncRequiresSupporterMembership": "Sinc requiere de una suscripci\u00f3n activa de Emby Premier.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sinc requiere conectarse a un Servidor Emby con una suscripci\u00f3n activa de Emby Premier.", - "ErrorValidatingSupporterInfo": "Ha ocurrido un error al validar su informaci\u00f3n de Emby Premier. Por favor int\u00e9ntelo nuevamente m\u00e1s tarde.", - "HeaderSync": "Sinc", - "LabelLocalSyncStatusValue": "Estado: {0}", - "MessageSyncStarted": "Sincronizaci\u00f3n iniciada", - "OptionPoster": "P\u00f3ster", - "OptionPosterCard": "Tarjeta de P\u00f3ster", - "OptionTimeline": "L\u00ednea de Tiempo", - "OptionList": "Lista", - "OptionThumb": "Miniatura", - "OptionThumbCard": "Tarjeta de Miniatura", - "OptionBanner": "Cart\u00e9l", - "NoSlideshowContentFound": "No se encontraron presentaciones de im\u00e1genes.", - "OptionPhotoSlideshow": "Presentaci\u00f3n de fotograf\u00edas", - "OptionBackdropSlideshow": "Presentaci\u00f3n de Im\u00e1genes de Fondo", - "HeaderTopPlugins": "Complementos Destacados", - "ButtonRecord": "Grabar", - "ButtonOther": "Otros", - "HeaderSortBy": "Ordenar Por", - "HeaderSortOrder": "Ordenado Por", - "OptionAscending": "Ascendente", - "OptionDescending": "Descendente", - "OptionNameSort": "Nombre", - "OptionTvdbRating": "Calificaci\u00f3n de Tvdb", - "OptionPremiereDate": "Fecha de Estreno", - "OptionImdbRating": "Calificaci\u00f3n de IMDb", - "OptionDatePlayed": "Fecha de Reproducci\u00f3n", - "OptionDateAdded": "Fecha de Adici\u00f3n", - "OptionPlayCount": "Contador", - "ButtonDisconnect": "Desconectar", - "OptionAlbumArtist": "Artista del \u00c1lbum", - "OptionArtist": "Artista", - "OptionAlbum": "\u00c1lbum", - "OptionTrackName": "Nombre de la Pista", - "OptionCommunityRating": "Calificaci\u00f3n de la Comunidad", - "ButtonSort": "Ordenar", - "ButtonMenu": "Men\u00fa", - "OptionDefaultSort": "Por defecto", - "ButtonFilter": "Filtro", - "OptionCriticRating": "Calificaci\u00f3n de la Cr\u00edtica", - "OptionVideoBitrate": "Tasa de bits de Video", - "OptionMetascore": "Metascore", - "OptionRevenue": "Recaudaci\u00f3n", - "OptionBudget": "Presupuesto", - "ForAdditionalLiveTvOptions": "Para proveedores adicionales de TV en Vivo, de clic en la pesta\u00f1a de Servicios Externos para ver las opciones disponibles.", - "ButtonGuide": "Gu\u00eda", - "ButtonRecordedTv": "Grabaciones de TV", - "HeaderDisconnectFromPlayer": "Desconectar del Reproductor", - "ConfirmEndPlayerSession": "\u00bfDesea cerrar Emby en el dispositivo?", - "ButtonYes": "Si", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restaurar Compra", - "AlreadyPaid": "\u00bfYa esta pagado?", - "AlreadyPaidHelp1": "Si ya ha pagado para instalar una versi\u00f3n antigua de Media Browser para Android, no necesita pagar de nuevo para activar esta app. De clic en OK para enviarnos un correo electr\u00f3nico a {0} y nosotros la activaremos por usted.", - "AlreadyPaidHelp2": "\u00bfYa tiene Emby Premiere? Solo de cancelar a este cuadro de dialogo, inicie sesi\u00f3n con la app desde la red WIFI de su hogar, y sera desbloqueado autom\u00e1ticamente.", - "ButtonForYou": "Para T\u00ed", - "ButtonLibrary": "Biblioteca", - "ButtonSearch": "B\u00fasqueda", - "ButtonNowPlaying": "Reproduci\u00e9ndo Ahora", - "ButtonViewNewApp": "Ver nueva app", - "HeaderEmbyForAndroidHasMoved": "\u00a1Emby para Android se ha mudado!", - "MessageEmbyForAndroidHasMoved": "Emby para Android se ha mudado a una nueva casa en la tienda de apps. Por favor considere probar la nueva app. Usted puede usar esta app por todo el tiempo que lo desee.", - "HeaderNextUp": "A Continuaci\u00f3n", - "HeaderLatestMovies": "Pel\u00edculas Recientes", - "HeaderLatestEpisodes": "Episodios Recientes", - "EmbyPremiereMonthly": "Emby Premier Mensual", - "EmbyPremiereMonthlyWithPrice": "Emby Premier Mensual {0}", - "HeaderEmailAddress": "Direcci\u00f3n de Correo", - "TextPleaseEnterYourEmailAddressForSubscription": "Por favor ingrese su direcci\u00f3n de correo electr\u00f3nico.", - "LoginDisclaimer": "Emby esta dise\u00f1ado para ayudarlo a administrar su biblioteca de medios personal, tales como videos caseros y fotograf\u00edas. Por favor lea nuestros t\u00e9rminos de uso. El uso de cualquier software de Emby constituye la aceptaci\u00f3n de estos t\u00e9rminos.", - "TermsOfUse": "T\u00e9rminos de uso", - "HeaderTryMultiSelect": "Intente Multi-Selecci\u00f3n", - "TryMultiSelectMessage": "Para editar m\u00faltiples medios, solo de clic sostenido sobre cualquier p\u00f3ster y elija los items que desea administrar. \u00a1int\u00e9ntelo!", - "NumLocationsValue": "{0} carpetas", - "ButtonAddMediaLibrary": "Agregar Biblioteca de Medios", - "ButtonManageFolders": "Administrar carpetas", - "HeaderTryDragAndDrop": "Intente Arrastrar y Soltar", - "TryDragAndDropMessage": "Para reacomodar items de la lista de reproducci\u00f3n, solo arrastre y suelte. \u00a1int\u00e9ntelo!", - "HeaderTryMicrosoftEdge": "Intente Microsoft Edge", - "MessageTryMicrosoftEdge": "Para una mejor experiencia en Windows 10, intente el nuevo navegador Microsoft Edge", - "HeaderTryModernBrowser": "Intente con un Navegador Web moderno", - "MessageTryModernBrowser": "Para una mejor experiencia en Windows, intente un navegador modernno como Google Chrome, Firefox u Opera", - "ErrorAddingListingsToSchedulesDirect": "Hubo un error agregando la programaci\u00f3n de su cuenta de Schedules Direct. Schedules Direct solo permite un numero limitado de programaciones por cuenta. Tal vez necesite acceder al sitio web de Schedules Direct y eliminar otras programaciones de su cuenta antes de continuar.", - "PleaseAddAtLeastOneFolder": "Por favor agregue al menos una carpeta a esta biblioteca dando clic al bot\u00f3n de Agregar.", - "ErrorAddingMediaPathToVirtualFolder": "Hubo un error agregando la ruta de medios. Por favor aseg\u00farese de que la ruta es valida y que el proceso del Servidor Emby tenga acceso a ese destino.", - "ErrorRemovingEmbyConnectAccount": "Hubo un error retirando la cuenta de Emby Connect. Por favor aseg\u00farese que su conexi\u00f3n a internet esta activa e intente de nuevo.", - "ErrorAddingEmbyConnectAccount1": "Hubo un error agregando la cuenta de Emby Connect. \u00bfYa ha creado una cuenta de Emby? Registrese en {0}.", - "ErrorAddingEmbyConnectAccount2": "Por favor aseg\u00farese que la cuenta Emby ha sido activada siguiendo las instrucciones incluidas en el correo electr\u00f3nico que recibi\u00f3 al crear la cuenta. Si no recibi\u00f3 dicho correo electr\u00f3nico por favor escriba uno a {0} desde la direcci\u00f3n de correo electr\u00f3nico usada con la cuenta Emby.", - "HeaderFavoriteArtists": "Artistas Favoritos", - "HeaderFavoriteSongs": "Canciones Favoritas", - "HeaderConfirmPluginInstallation": "Confirmar Instalaci\u00f3n de Complemento", - "PleaseConfirmPluginInstallation": "Por favor haga clic en OK para confirmar que ha leido lo que se encuentra arriba y que desea proceder con la instalaci\u00f3n del complemento.", - "MessagePluginInstallDisclaimer": "Los complementos desarrollados por miembros de la comunidad Emby son una gran forma de mejorar su experiencia con Emby con caracter\u00edsticas y beneficios adicionales. Antes de instalar, conozca el impacto que pueden ocasionar en su Servidor Emby, tales como exploraci\u00f3n de la biblioteca que puede tomar m\u00e1s tiempo, procesamiento en segundo plano adicional y estabilidad del sistema reducida.", - "ButtonPlayOneMinute": "Reproducir un minuto", - "ThankYouForTryingEnjoyOneMinute": "Por favor disfrute un minuto de reproducci\u00f3n. Gracias por probar Emby.", - "HeaderTryPlayback": "Intente Reproducir", - "HeaderBenefitsEmbyPremiere": "Emby Premiere", - "MobileSyncFeatureDescription": "Sincronice sus medios a sus smartphones y tablets para f\u00e1cil acceso fuera de linea.", - "CoverArtFeatureDescription": "Cover Art crea divertidas caratulas y da otros tratamientos para ayudar a personalizar las im\u00e1genes de sus medios.", - "HeaderMobileSync": "Sincronizaci\u00f3n M\u00f3vil", - "HeaderCloudSync": "Sinc. en la Nube", - "CloudSyncFeatureDescription": "Sincroniza tus medios a la nube para un f\u00e1cil respaldo, archivo y conversi\u00f3n.", - "HeaderFreeApps": "Aplicaciones Emby Gratuitas", - "FreeAppsFeatureDescription": "Disfrute acceso gratuito para elegir aplicaciones Emby para sus dispositivos.", - "HeaderCinemaMode": "Modo cine", - "CinemaModeFeatureDescription": "El Modo Cine le da una verdadera experiencia de cine con trailers e intros personalizados antes de la funci\u00f3n.", - "CoverArt": "Cover Art", - "ButtonOff": "Apagar", - "TitleHardwareAcceleration": "Aceleraci\u00f3n por Hardware", - "HardwareAccelerationWarning": "Habilitar la aceleraci\u00f3n por hardware puede ocasionar inestabilidad en algunos ambientes. Si tiene dificultad para reproducir algunos videos despu\u00e9s de habilitar esta opci\u00f3n, tendr\u00e1 que regresar la configuraci\u00f3n a Auto.", - "HeaderSelectCodecIntrosPath": "Seleccionar Trayectoria de Intros de C\u00f3dec", - "ButtonLocalRefresh": "Actualizaci\u00f3n local", - "ButtonAddMissingData": "S\u00f3lo agregar datos faltantes", - "ButtonFullRefresh": "Actualizaci\u00f3n completa", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Hecho" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/es-VE.json b/dashboard-ui/strings/javascript/es-VE.json deleted file mode 100644 index af0265be8b..0000000000 --- a/dashboard-ui/strings/javascript/es-VE.json +++ /dev/null @@ -1,826 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your supporter key has been updated.", - "MessageKeyRemoved": "Thank you. Your supporter key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync job", - "TitleSync": "Sync", - "HeaderSelectDate": "Select Date", - "ButtonDonate": "Donate", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "HeaderMyMedia": "My Media", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading supporter information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your supporter key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageSwipeDownOnRemoteControl": "Welcome to remote control. Select the device to control by clicking the cast icon in the upper right corner. Swipe down anywhere on this screen to go back to where you came from.", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional supporter benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series:", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "Failed", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task. It can also be run manually here. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "A supporter membership provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "ButtonPlayTrailer": "Play trailer", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "HeaderTaskTriggers": "Task Triggers", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheFollowingItemsWillBeGrouped": "The following titles will be grouped into one item:", - "MessageConfirmItemGrouping": "Emby apps will automatically choose the optimal version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelEpisodeNumber": "Episode number:", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "LabelSeasonNumber": "Season number:", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "OptionReleaseDate": "Release date", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderFields": "Fields", - "HeaderFieldsHelp": "Slide a field to 'off' to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the folder with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from the server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Toggle fullscreen", - "ButtonAudioTracks": "Audio tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player:", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeType": "Change type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active supporter membership.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "MessageSupporterMembershipExpiredOn": "Your supporter membership expired on {0}.", - "MessageYouHaveALifetimeMembership": "You have a lifetime supporter membership. You can provide additional donations on a one-time or recurring basis using the options below. Thank you for supporting Emby.", - "MessageYouHaveAnActiveRecurringMembership": "You have an active {0} membership. You can upgrade your plan using the options below.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes:", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users:", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "MessageUnlockAppWithPurchase": "Unlock the full features of the app with a small one-time purchase.", - "MessageUnlockAppWithPurchaseOrSupporter": "Unlock the full features of the app with a small one-time purchase, or by signing in with an active Emby Supporter Membership.", - "MessageUnlockAppWithSupporter": "Unlock the full features of the app by signing in with an active Emby Supporter Membership.", - "MessageToValidateSupporter": "If you have an active Emby Supporter Membership, simply sign into the app using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "ButtonUnlockWithSupporter": "Sign in with Emby Supporter Membership", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your username and password are correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryCinemaMode": "Try Cinema Mode", - "ButtonBecomeSupporter": "Become an Emby Supporter", - "ButtonClosePlayVideo": "Close and play my media", - "MessageDidYouKnowCinemaMode": "Did you know that by becoming an Emby Supporter, 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.", - "OptionEnableDisplayMirroring": "Enable display mirroring" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/es.json b/dashboard-ui/strings/javascript/es.json deleted file mode 100644 index c254fa61a9..0000000000 --- a/dashboard-ui/strings/javascript/es.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Configuraci\u00f3n guardada", - "AddUser": "Agregar usuario", - "Users": "Usuarios", - "Delete": "Borrar", - "Administrator": "Administrador", - "Password": "Contrase\u00f1a", - "DeleteImage": "Borrar Imagen", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Est\u00e1 seguro que desea borrar esta imagen?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "Archivo no encontrado.", - "FileReadError": "Se encontr\u00f3 un error al leer el archivo.", - "DeleteUser": "Borrar Usuario", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "La contrase\u00f1a se ha restablecido.", - "PinCodeResetComplete": "El c\u00f3digo PIN se ha restablecido.", - "PasswordResetConfirmation": "Esta seguro que desea restablecer la contrase\u00f1a?", - "PinCodeResetConfirmation": "\u00bfEst\u00e1 seguro que desea restablecer el c\u00f3digo PIN?", - "HeaderPinCodeReset": "Restablecer C\u00f3digo PIN", - "PasswordSaved": "Contrase\u00f1a guardada.", - "PasswordMatchError": "La contrase\u00f1a y la confirmaci\u00f3n de la contrase\u00f1a deben de ser iguales.", - "OptionRelease": "Release Oficial", - "OptionBeta": "Beta", - "OptionDev": "Desarrollo (inestable)", - "UninstallPluginHeader": "Desinstalar Plugin", - "UninstallPluginConfirmation": "Esta seguro que desea desinstalar {0}?", - "NoPluginConfigurationMessage": "El plugin no requiere configuraci\u00f3n", - "NoPluginsInstalledMessage": "No tiene plugins instalados.", - "BrowsePluginCatalogMessage": "Navegar el catalogo de plugins para ver los plugins disponibles.", - "HeaderNewApiKey": "Nueva Clave Api", - "LabelAppName": "Nombre de la app", - "LabelAppNameExample": "Ejemplo: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Clave enviada por email a {0}.", - "MessageKeysLinked": "Claves vinculadas.", - "HeaderConfirmation": "Confirmaci\u00f3n", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Apoye al equipo de Emby", - "TextEnjoyBonusFeatures": "Disfrute los extras", - "TitleLiveTV": "Tv en vivo", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Seleccionar Fecha", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Donaciones recurrentes se pueden cancelar en cualquier momento desde su cuenta de PayPal.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notificaciones", - "ErrorLaunchingChromecast": "Ha habido un error al lanzar chromecast. Asegurese que su dispositivo est\u00e1 conectado a su red inal\u00e1mbrica.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Usuarios", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Buscar", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artista", - "LabelMovie": "Pel\u00edcula", - "LabelMusicVideo": "Video Musical", - "LabelEpisode": "Episodio", - "LabelSeries": "Series", - "LabelStopping": "Deteniendo", - "LabelCancelled": "(cancelado)", - "LabelFailed": "(fracasado)", - "ButtonHelp": "Ayuda", - "ButtonSave": "Grabar", - "ButtonDownload": "Descargar", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "A\u00f1adir a la colecci\u00f3n", - "HeaderNewCollection": "Nueva colecci\u00f3n", - "NewCollectionNameExample": "Ejemplo: Colecci\u00f3n de Star Wars", - "OptionSearchForInternetMetadata": "Buscar en internet ilustraciones y metadatos", - "LabelSelectCollection": "Seleccionar colecci\u00f3n:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Hacer un recorrido", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Complementos", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Acceso de Equipo", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Abortado por cierre del servidor)", - "LabelScheduledTaskLastRan": "\u00daltima ejecuci\u00f3n {0}, teniendo {1}.", - "HeaderDeleteTaskTrigger": "Eliminar tarea de activaci\u00f3n", - "MessageDeleteTaskTrigger": "\u00bfEst\u00e1 seguro que desea eliminar esta tarea de activaci\u00f3n?", - "MessageNoPluginsInstalled": "No tiene plugins instalados.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} instalado", - "LabelNumberReviews": "{0} Revisiones", - "LabelFree": "Libre", - "HeaderTo": "Hasta", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Seleccionar Audio", - "HeaderSelectSubtitles": "Seleccionar Subt\u00edtulos", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Por defecto)", - "LabelForcedStream": "(Forzado)", - "LabelDefaultForcedStream": "(Por defecto\/Forzado)", - "LabelUnknownLanguage": "Idioma desconocido", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Silencio", - "ButtonUnmute": "Activar audio", - "ButtonStop": "Detener", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pausa", - "ButtonPlay": "Reproducir", - "ButtonEdit": "Editar", - "ButtonQueue": "En cola", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Lista de reproducci\u00f3n", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Activado", - "LabelDisabled": "Desactivado", - "ButtonMoreInformation": "M\u00e1s informaci\u00f3n", - "LabelNoUnreadNotifications": "No hay notificaciones sin leer.", - "ButtonViewNotifications": "Ver notificaciones", - "ButtonMarkTheseRead": "Marcar como le\u00eddo", - "ButtonClose": "Cerrar", - "LabelAllPlaysSentToPlayer": "Todas las reproducciones se enviar\u00e1n al reproductor seleccionado.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "Todas la grabaciones", - "RecommendationBecauseYouLike": "Como le gusta {0}", - "RecommendationBecauseYouWatched": "Ya que vi\u00f3 {0}", - "RecommendationDirectedBy": "Dirigida por {0}", - "RecommendationStarring": "Protagonizada por {0}", - "HeaderConfirmRecordingCancellation": "Confirmar la cancelaci\u00f3n de la grabaci\u00f3n", - "MessageConfirmRecordingCancellation": "\u00bfEst\u00e1 seguro que desea cancelar esta grabaci\u00f3n?", - "MessageRecordingCancelled": "Grabaci\u00f3n cancelada.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirmar cancelaci\u00f3n de serie", - "MessageConfirmSeriesCancellation": "\u00bfEst\u00e1 seguro que desea cancelar esta serie?", - "MessageSeriesCancelled": "Serie cancelada", - "HeaderConfirmRecordingDeletion": "Confirmar borrado de la grabaci\u00f3n", - "MessageConfirmRecordingDeletion": "\u00bfEst\u00e1 seguro que desea borrar esta grabaci\u00f3n?", - "MessageRecordingDeleted": "Grabaci\u00f3n eliminada.", - "ButonCancelRecording": "Cancelar Grabaci\u00f3n", - "MessageRecordingSaved": "Grabaci\u00f3n guardada.", - "OptionSunday": "Domingo", - "OptionMonday": "Lunes", - "OptionTuesday": "Martes", - "OptionWednesday": "Mi\u00e9rcoles", - "OptionThursday": "Jueves", - "OptionFriday": "Viernes", - "OptionSaturday": "S\u00e1bado", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirmar borrado", - "MessageConfirmPathSubstitutionDeletion": "\u00bfEst\u00e1 seguro que desea borrar esta ruta de sustituci\u00f3n?", - "LiveTvUpdateAvailable": "(Actualizaci\u00f3n disponible)", - "LabelVersionUpToDate": "\u00a1Actualizado!", - "ButtonResetTuner": "Reiniciar sintonizador", - "HeaderResetTuner": "Restablecer el sintonizador", - "MessageConfirmResetTuner": "\u00bfEst\u00e1 seguro que desea reiniciar este sintonizador? Cualquier reproducci\u00f3n o grabaci\u00f3n activa se detendr\u00e1 inmediatamente.", - "ButtonCancelSeries": "Cancelar serie", - "HeaderSeriesRecordings": "Grabaciones de series", - "LabelAnytime": "A cualquier hora", - "StatusRecording": "Grabando", - "StatusWatching": "Viendo", - "StatusRecordingProgram": "Grabando {0}", - "StatusWatchingProgram": "Viendo {0}", - "HeaderSplitMedia": "Divisi\u00f3n de medios", - "MessageConfirmSplitMedia": "\u00bfEst\u00e1 seguro que desea dividir los medios en partes separadas?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Seleccione al menos un elemento.", - "MessagePleaseSelectTwoItems": "Seleccione al menos dos elementos.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Continuar", - "HeaderMyViews": "Mis vistas", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "\u00daltimos medios", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Pel\u00edculas favoritas", - "HeaderFavoriteShows": "Programas favoritos", - "HeaderFavoriteEpisodes": "Episodios favoritos", - "HeaderFavoriteGames": "Juegos favoritos", - "HeaderRatingsDownloads": "\nClasificaci\u00f3n \/ Descargas", - "HeaderConfirmProfileDeletion": "Confirmar borrado del perfil", - "MessageConfirmProfileDeletion": "\u00bfEst\u00e1 seguro que desea eliminar este perfil?", - "HeaderSelectServerCachePath": "Seleccione la ruta para el cach\u00e9 del servidor", - "HeaderSelectTranscodingPath": "Seleccione la ruta temporal del transcodificador", - "HeaderSelectImagesByNamePath": "Seleccione la ruta para im\u00e1genes", - "HeaderSelectMetadataPath": "Seleccione la ruta para Metadatos", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Busque o escriba la ruta de acceso que se utilizar\u00e1 para la transcodificaci\u00f3n de archivos temporales. La carpeta debe tener permiso de escritura.", - "HeaderSelectImagesByNamePathHelp": "Busque o escriba la ruta de sus elementos por nombre de carpeta. La carpeta debe tener permisos de escritura.", - "HeaderSelectMetadataPathHelp": "Busque o escriba la ruta donde desea almacenar los metadatos. La carpeta debe tener permiso de escritura.", - "HeaderSelectChannelDownloadPath": "Seleccione la ruta de descargas de canal", - "HeaderSelectChannelDownloadPathHelp": "Navege o escriba la ruta para guardar el los archivos de cach\u00e9 de canales. La carpeta debe tener permisos de escritura.", - "OptionNewCollection": "Nuevo...", - "ButtonAdd": "A\u00f1adir", - "ButtonRemove": "Quitar", - "LabelChapterDownloaders": "Downloaders de cap\u00edtulos:", - "LabelChapterDownloadersHelp": "Habilitar y clasificar sus descargadores de cap\u00edtulos preferidos en orden de prioridad. Descargadores de menor prioridad s\u00f3lo se utilizar\u00e1n para completar la informaci\u00f3n que falta.", - "HeaderFavoriteAlbums": "\u00c1lbumes favoritos", - "HeaderLatestChannelMedia": "\u00dcltimos elementos de canal", - "ButtonOrganizeFile": "Organizar archivos", - "ButtonDeleteFile": "Borrar archivos", - "HeaderOrganizeFile": "Organizar archivos", - "HeaderDeleteFile": "Borrar archivos", - "StatusSkipped": "Saltado", - "StatusFailed": "Err\u00f3neo", - "StatusSuccess": "\u00c9xito", - "MessageFileWillBeDeleted": "El siguiente archivo se eliminar\u00e1:", - "MessageSureYouWishToProceed": "\u00bfEst\u00e1 seguro que desea proceder?", - "MessageDuplicatesWillBeDeleted": "Adem\u00e1s se eliminar\u00e1n los siguientes duplicados:", - "MessageFollowingFileWillBeMovedFrom": "El siguiente archivo se mover\u00e1 desde:", - "MessageDestinationTo": "hasta:", - "HeaderSelectWatchFolder": "Seleccionar carpeta para el reloj", - "HeaderSelectWatchFolderHelp": "Navegue o introduzca la ruta para la carpeta para el reloj. La carpeta debe tener permisos de escritura.", - "OrganizePatternResult": "Resultado: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Reiniciar", - "HeaderShutdown": "Apagar", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Actualizar ahora", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "\u00a1Hay disponible una nueva versi\u00f3n de {0}!", - "VersionXIsAvailableForDownload": "La versi\u00f3n {0} est\u00e1 disponible para su descarga.", - "LabelVersionNumber": "Versi\u00f3n {0}", - "LabelPlayMethodTranscoding": "Transcodificaci\u00f3n", - "LabelPlayMethodDirectStream": "Streaming directo", - "LabelPlayMethodDirectPlay": "Reproducci\u00f3n directa", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Acceso remoto: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Lo \u00faltimo de {0}", - "LabelUnknownLanaguage": "Idioma desconocido", - "HeaderCurrentSubtitles": "Subt\u00edtulos actuales", - "MessageDownloadQueued": "La descarga se ha a\u00f1adido a la cola", - "MessageAreYouSureDeleteSubtitles": "\u00bfEst\u00e1 seguro que desea eliminar este archivo de subt\u00edtulos?", - "ButtonRemoteControl": "Control remoto", - "HeaderLatestTvRecordings": "\u00daltimas grabaciones", - "ButtonOk": "OK", - "ButtonCancel": "Cancelar", - "ButtonRefresh": "Refrescar", - "LabelCurrentPath": "Ruta actual:", - "HeaderSelectMediaPath": "Seleccionar la ruta para Medios", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Red", - "MessageDirectoryPickerInstruction": "Rutas de red pueden ser introducidas manualmente en el caso de que el bot\u00f3n de la red no pueda localizar sus dispositivos. Por ejemplo, {0} o {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Men\u00fa", - "ButtonOpen": "Abrir", - "ButtonOpenInNewTab": "Abrir en nueva pesta\u00f1a", - "ButtonShuffle": "Mezclar", - "ButtonInstantMix": "Mix instant\u00e1neo", - "ButtonResume": "Continuar", - "HeaderScenes": "Escenas", - "HeaderAudioTracks": "Pistas de audio", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subt\u00edtulos", - "HeaderVideoQuality": "Calidad de video", - "MessageErrorPlayingVideo": "Ha habido un error reproduciendo el video.", - "MessageEnsureOpenTuner": "Aseg\u00farese que hay un sintonizador disponible.", - "ButtonHome": "Inicio", - "ButtonDashboard": "Panel de control", - "ButtonReports": "Informes", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Duraci\u00f3n", - "HeaderName": "Nombre", - "HeaderAlbum": "\u00c1lbum", - "HeaderAlbumArtist": "Artista del album", - "HeaderArtist": "Artista", - "LabelAddedOnDate": "A\u00f1adido {0}", - "ButtonStart": "Inicio", - "HeaderChannels": "Canales", - "HeaderMediaFolders": "Carpetas de medios", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Otros", - "OptionBlockTvShows": "Tv Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "M\u00fasica", - "OptionBlockMovies": "Pel\u00edculas", - "OptionBlockBooks": "Libros", - "OptionBlockGames": "Juegos", - "OptionBlockLiveTvPrograms": "Programas de TV en vivo", - "OptionBlockLiveTvChannels": "Canales de Tv en vivo", - "OptionBlockChannelContent": "Contenido de canales de Internet", - "ButtonRevoke": "Revocar", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revocar Clave Api", - "ValueContainer": "Contenedor: {0}", - "ValueAudioCodec": "Codec de audio: {0}", - "ValueVideoCodec": "Codec de video: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Condiciones: {0}", - "LabelAll": "Todo", - "HeaderDeleteImage": "Borrar imagen", - "MessageFileNotFound": "Archivo no encontrado.", - "MessageFileReadError": "Ha ocurrido un error leyendo este archivo.", - "ButtonNextPage": "P\u00e1gina siguiente", - "ButtonPreviousPage": "P\u00e1gina anterior", - "ButtonMoveLeft": "Mover izquierda", - "ButtonMoveRight": "Mover derecha", - "ButtonBrowseOnlineImages": "Navegar im\u00e1genes online", - "HeaderDeleteItem": "Borrar elemento", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Introduzca un nombre o un identificador externo.", - "MessageValueNotCorrect": "El valor introducido no es correcto. Intentelo de nuevo.", - "MessageItemSaved": "Elemento grabado.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Finalizado", - "OptionContinuing": "Continuando", - "OptionOff": "Apagado", - "OptionOn": "Encendido", - "ButtonSettings": "Opciones", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Tv en vivo", - "MissingLocalTrailer": "Falta trailer local.", - "MissingPrimaryImage": "Falta imagen principal.", - "MissingBackdropImage": "Falta imagen de fondo.", - "MissingLogoImage": "Falta logo.", - "MissingEpisode": "Falta episodio.", - "OptionScreenshots": "Capturas del pantalla", - "OptionBackdrops": "Im\u00e1genes de fondo", - "OptionImages": "Im\u00e1genes", - "OptionKeywords": "Palabras clave", - "OptionTags": "Etiquetas", - "OptionStudios": "Estudios", - "OptionName": "Nombre", - "OptionOverview": "Sinopsis", - "OptionGenres": "G\u00e9neros", - "OptionParentalRating": "Clasificaci\u00f3n parental", - "OptionPeople": "Gente", - "OptionRuntime": "Tiempo", - "OptionProductionLocations": "Localizaciones de producci\u00f3n", - "OptionBirthLocation": "Lugar de nacimiento", - "LabelAllChannels": "Todos los canales", - "LabelLiveProgram": "EN VIVO", - "LabelNewProgram": "NUEVO", - "LabelPremiereProgram": "ESTRENO", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Reiniciar", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Servidor", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadatos", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Avanzado", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subt\u00edtulos", - "ButtonScenes": "Escenas", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Seleccionar", - "ButtonNew": "Nuevo", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Nombre:", - "ButtonSubmit": "Enviar", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Pel\u00edculas", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodios", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Peliculas", - "FolderTypeMusic": "Musica", - "FolderTypeAdultVideos": "Videos para adultos", - "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "Videos Musicales", - "FolderTypeHomeVideos": "Videos caseros", - "FolderTypeGames": "Juegos", - "FolderTypeBooks": "Libros", - "FolderTypeTvShows": "TV", - "TabMovies": "Pel\u00edculas", - "TabSeries": "Series", - "TabEpisodes": "Episodios", - "TabTrailers": "Trailers", - "TabGames": "Juegos", - "TabAlbums": "\u00c1lbumes", - "TabSongs": "Canciones", - "TabMusicVideos": "Videos Musicales", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Borrar", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notificaciones", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "Se ingres\u00f3 un c\u00f3digo PIN inv\u00e1lido o expirado. Por favor, int\u00e9ntelo de nuevo.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Actualizar Manualmente", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sincronizar", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Cartelera", - "OptionTimeline": "L\u00ednea de tiempo", - "OptionList": "Lista", - "OptionThumb": "Miniatura", - "OptionThumbCard": "Cartel postal", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Grabar", - "ButtonOther": "Other", - "HeaderSortBy": "Ordenar por:", - "HeaderSortOrder": "Ordenado por:", - "OptionAscending": "Ascendente", - "OptionDescending": "Descendente", - "OptionNameSort": "Nombre", - "OptionTvdbRating": "Valoraci\u00f3n tvdb", - "OptionPremiereDate": "Fecha de estreno", - "OptionImdbRating": "Valoraci\u00f3n IMDb", - "OptionDatePlayed": "Fecha de reproducci\u00f3n", - "OptionDateAdded": "A\u00f1adido el", - "OptionPlayCount": "N\u00famero de reproducc.", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artista", - "OptionArtist": "Artista", - "OptionAlbum": "\u00c1lbum", - "OptionTrackName": "Nombre de pista", - "OptionCommunityRating": "Valoraci\u00f3n comunidad", - "ButtonSort": "Ordenar", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Por defecto", - "ButtonFilter": "Filtro", - "OptionCriticRating": "Valoraci\u00f3n cr\u00edtica", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metavalor", - "OptionRevenue": "Recaudaci\u00f3n", - "OptionBudget": "Presupuesto", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Buscar", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Siguiendo", - "HeaderLatestMovies": "\u00daltimas pel\u00edculas", - "HeaderLatestEpisodes": "Ultimos episodios", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/fi.json b/dashboard-ui/strings/javascript/fi.json deleted file mode 100644 index 040afbc854..0000000000 --- a/dashboard-ui/strings/javascript/fi.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Asetukset tallennettu.", - "AddUser": "Lis\u00e4\u00e4 K\u00e4ytt\u00e4j\u00e4", - "Users": "K\u00e4ytt\u00e4j\u00e4t", - "Delete": "Poista", - "Administrator": "Administrator", - "Password": "Salasana", - "DeleteImage": "Poista Kuva", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Oletko varma ett\u00e4 haluat poistaa t\u00e4m\u00e4n kuvan?", - "FileReadCancelled": "Tiedoston luku on peruutettu.", - "FileNotFound": "Tiedostoa ei l\u00f6ydy.", - "FileReadError": "Virhe tiedoston luvun aikana.", - "DeleteUser": "Poista k\u00e4ytt\u00e4j\u00e4", - "DeleteUserConfirmation": "Oletko varma ett\u00e4 haluat poistaa t\u00e4m\u00e4n k\u00e4ytt\u00e4j\u00e4n?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "Salasana on palauttettu.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Oletko varma, ett\u00e4 haluat palauttaa salasanan?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Salasana tallennettu.", - "PasswordMatchError": "Salasana ja salasanan vahvistuksen pit\u00e4\u00e4 olla samat.", - "OptionRelease": "Virallinen Julkaisu", - "OptionBeta": "Beta", - "OptionDev": "Kehittely (Ei vakaa)", - "UninstallPluginHeader": "Poista Lis\u00e4osa", - "UninstallPluginConfirmation": "Oletko varma, ett\u00e4 haluat poistaa {0}?", - "NoPluginConfigurationMessage": "T\u00e4ll\u00e4 lis\u00e4osalla ei ole mit\u00e4\u00e4n muokattavaa.", - "NoPluginsInstalledMessage": "Sinulla ei ole mit\u00e4\u00e4n lis\u00e4osia asennettuna.", - "BrowsePluginCatalogMessage": "Selaa meid\u00e4n lis\u00e4osa listaa katsoaksesi saatavilla olevia lis\u00e4osia.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Tallenna", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Lopeta", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/fr.json b/dashboard-ui/strings/javascript/fr.json deleted file mode 100644 index 193a913ff3..0000000000 --- a/dashboard-ui/strings/javascript/fr.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Param\u00e8tres sauvegard\u00e9s.", - "AddUser": "Ajouter un utilisateur", - "Users": "Utilisateurs", - "Delete": "Supprimer", - "Administrator": "Administrateur", - "Password": "Mot de passe", - "DeleteImage": "Supprimer l'image", - "MessageThankYouForSupporting": "Merci de supporter Emby.", - "MessagePleaseSupportProject": "Merci de supporter Emby.", - "DeleteImageConfirmation": "\u00cates-vous s\u00fbr de vouloir supprimer l'image?", - "FileReadCancelled": "La lecture du fichier a \u00e9t\u00e9 annul\u00e9e.", - "FileNotFound": "Fichier introuvable.", - "FileReadError": "Un erreur est survenue pendant la lecture du fichier.", - "DeleteUser": "Supprimer l'utilisateur", - "DeleteUserConfirmation": "\u00cates-vous s\u00fbr de vouloir supprimer cet utilisateur?", - "PasswordResetHeader": "R\u00e9initialiser le mot de passe", - "PasswordResetComplete": "Le mot de passe a \u00e9t\u00e9 r\u00e9initialis\u00e9.", - "PinCodeResetComplete": "Le code Easy Pin a \u00e9t\u00e9 r\u00e9initialis\u00e9.", - "PasswordResetConfirmation": "\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser le mot de passe?", - "PinCodeResetConfirmation": "Etes-vous s\u00fbr de vouloir r\u00e9initialiser le code pin ?", - "HeaderPinCodeReset": "R\u00e9initialiser le code Pin", - "PasswordSaved": "Mot de passe sauvegard\u00e9.", - "PasswordMatchError": "Le mot de passe et sa confirmation doivent correspondre.", - "OptionRelease": "Version officielle", - "OptionBeta": "Beta", - "OptionDev": "Dev (Instable)", - "UninstallPluginHeader": "D\u00e9sinstaller Plug-in", - "UninstallPluginConfirmation": "\u00cates-vous s\u00fbr de vouloir d\u00e9sinstaller {0}?", - "NoPluginConfigurationMessage": "Ce plugin n'a rien \u00e0 configurer.", - "NoPluginsInstalledMessage": "Vous n'avez aucun plugin install\u00e9.", - "BrowsePluginCatalogMessage": "Explorer notre catalogue des plugins pour voir les plugins disponibles.", - "HeaderNewApiKey": "Nouvelle cl\u00e9 API", - "LabelAppName": "Nom de l'app", - "LabelAppNameExample": "Exemple: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Permet \u00e0 une application de communiquer avec le serveur Emby.", - "MessageKeyEmailedTo": "Cl\u00e9 envoy\u00e9e par courriel \u00e0 {0}", - "MessageKeysLinked": "Cl\u00e9s associ\u00e9es.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Merci. Votre cl\u00e9 Emby Premiere a \u00e9t\u00e9 mise \u00e0 jour.", - "MessageKeyRemoved": "Merci. Votre cl\u00e9 Emby Premiere a \u00e9t\u00e9 supprim\u00e9e.", - "HeaderSupportTheTeam": "Aidez l'\u00e9quipe Emby", - "TextEnjoyBonusFeatures": "Profitez bien des fonctionnalit\u00e9s bonus", - "TitleLiveTV": "TV en direct", - "ButtonCancelSyncJob": "Annuler la synchronisation", - "HeaderAddTag": "Ajouter un tag", - "LabelTag": "Tag:", - "ButtonSelectView": "S\u00e9lectionnez un affichage", - "TitleSync": "Sync.", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "S\u00e9lectionnez la date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identifier", - "HeaderIdentifyItem": "Identification de l'\u00e9l\u00e9ment", - "LabelRecurringDonationCanBeCancelledHelp": "Des donations r\u00e9currentes peuvent \u00eatre annul\u00e9es \u00e0 tout moment depuis votre compte PayPal.", - "LabelFromHelp": "Exemple: {0} (sur le serveur)", - "HeaderMyMedia": "Mes medias", - "ButtonRemoveFromCollection": "Supprimer de la collection", - "LabelAutomaticUpdateLevel": "Niveau de mise \u00e0 jour automatique :", - "LabelAutomaticUpdateLevelForPlugins": "Niveau de mise \u00e0 jour automatique des plugins :", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "Une erreur a \u00e9t\u00e9 rencontr\u00e9e lors du lancement de Chromecast. Veuillez vous assurer que votre appareil est bien connect\u00e9 \u00e0 votre r\u00e9seau sans-fil.", - "MessageErrorLoadingSupporterInfo": "Une erreur s'est produite lors du chargement des informations Emby Premiere. Veuillez r\u00e9essayer plus tard.", - "MessageLinkYourSupporterKey": "Connectez votre cl\u00e9 Emby Premiere avec jusqu'\u00e0 {0} membres Emby Premiere pour acc\u00e9der gratuitement aux applications suivantes :", - "HeaderConfirmRemoveUser": "Supprimer l'utilisateur", - "MessageConfirmRemoveConnectSupporter": "Etes-vous s\u00fbr de vouloir retirer les avantages suppl\u00e9mentaires Emby Premiere pour cet utilisateur ?", - "ValueTimeLimitSingleHour": "Limite de temps : 1 heure", - "ValueTimeLimitMultiHour": "Limite de temps : {0} heures", - "HeaderUsers": "Utilisateurs", - "PluginCategoryGeneral": "G\u00e9n\u00e9ral", - "PluginCategoryContentProvider": "Fournisseurs de contenus", - "PluginCategoryScreenSaver": "Ecrans de veille", - "PluginCategoryTheme": "Th\u00e8mes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "R\u00e9seaux sociaux", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "M\u00e9tadonn\u00e9es", - "PluginCategoryLiveTV": "TV en Direct", - "PluginCategoryChannel": "Cha\u00eenes", - "HeaderSearch": "Recherche", - "ValueDateCreated": "Date de cr\u00e9ation : {0}", - "LabelArtist": "Artiste", - "LabelMovie": "Film", - "LabelMusicVideo": "Clip vid\u00e9o", - "LabelEpisode": "\u00c9pisode", - "LabelSeries": "S\u00e9ries", - "LabelStopping": "En cours d'arr\u00eat", - "LabelCancelled": "(annul\u00e9)", - "LabelFailed": "(\u00e9chou\u00e9)", - "ButtonHelp": "Aide", - "ButtonSave": "Sauvegarder", - "ButtonDownload": "T\u00e9l\u00e9chargement", - "SyncJobStatusQueued": "Mis en file d'attente", - "SyncJobStatusConverting": "Conversion en cours", - "SyncJobStatusFailed": "Echec", - "SyncJobStatusCancelled": "Annul\u00e9", - "SyncJobStatusCompleted": "Synchronis\u00e9", - "SyncJobStatusReadyToTransfer": "Pr\u00eat pour le transfert", - "SyncJobStatusTransferring": "Transfert en cours", - "SyncJobStatusCompletedWithError": "Synchronis\u00e9, mais des erreurs sont apparues", - "SyncJobItemStatusReadyToTransfer": "Pr\u00eat pour le transfert", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Ajouter \u00e0 la collection", - "HeaderNewCollection": "Nouvelle collection", - "NewCollectionNameExample": "Exemple: Collection Star Wars", - "OptionSearchForInternetMetadata": "Rechercher sur Internet les images et m\u00e9tadonn\u00e9es", - "LabelSelectCollection": "S\u00e9lectionner la collection :", - "HeaderDevices": "Appareils", - "ButtonScheduledTasks": "T\u00e2ches planifi\u00e9es", - "MessageItemsAdded": "Items ajout\u00e9s", - "ButtonAddToCollection": "Ajouter \u00e0 une collection", - "HeaderSelectCertificatePath": "S\u00e9lectionnez le chemin du certificat", - "ConfirmMessageScheduledTaskButton": "Cette op\u00e9ration s'ex\u00e9cute normalement automatiquement en tant que t\u00e2che planifi\u00e9e et ne requiert aucune action manuelle. Pour configurer cette t\u00e2che, voir :", - "HeaderSupporterBenefit": "Un abonnement \u00e0 Emby Premier actif, vous offre des avantages suppl\u00e9mentaires tels que la synchronisation entre vos appareils, un plugins premium, du contenu de cha\u00eene sur internet, et plus encore. {0}En savoir plus{1}.", - "LabelSyncNoTargetsHelp": "Il semble que vous n'ayez actuellement aucune application qui supporte la synchronisation.", - "HeaderWelcomeToProjectServerDashboard": "Bienvenue dans le tableau de bord du serveur Emby", - "HeaderWelcomeToProjectWebClient": "Bienvenue dans Emby", - "ButtonTakeTheTour": "Visite guid\u00e9e", - "HeaderWelcomeBack": "Bienvenue !", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Suivez le guide pour d\u00e9couvrir les nouveaut\u00e9s", - "MessageNoSyncJobsFound": "Aucune t\u00e2che de synchronisation trouv\u00e9e. Vous pouvez cr\u00e9er des t\u00e2ches de synchronisation gr\u00e2ce aux boutons 'Synchroniser' partout dans l'interface web.", - "HeaderLibraryAccess": "Acc\u00e8s \u00e0 la librairie", - "HeaderChannelAccess": "Acc\u00e8s Cha\u00eene", - "HeaderDeviceAccess": "Acc\u00e8s \u00e0 l'appareil", - "HeaderSelectDevices": "S\u00e9lectionnez un appareil", - "ButtonCancelItem": "Annuler l'\u00e9l\u00e9ment", - "ButtonQueueForRetry": "File d'attente pour une nouvelle tentative", - "ButtonReenable": "R\u00e9activer", - "ButtonLearnMore": "En savoir plus", - "SyncJobItemStatusSyncedMarkForRemoval": "Marquer pour suppression", - "LabelAbortedByServerShutdown": "(Annul\u00e9 par fermeture du serveur)", - "LabelScheduledTaskLastRan": "Derni\u00e8re ex\u00e9cution {0}, dur\u00e9e {1}.", - "HeaderDeleteTaskTrigger": "Supprimer le d\u00e9clencheur de t\u00e2che", - "MessageDeleteTaskTrigger": "\u00cates-vous s\u00fbr de vouloir supprimer ce d\u00e9clencheur de t\u00e2che?", - "MessageNoPluginsInstalled": "Vous n'avez aucun plugin install\u00e9.", - "MessageNoPluginsDueToAppStore": "Pour g\u00e9rer vos plugins, utilisez l'application web Emby.", - "LabelVersionInstalled": "{0} install\u00e9(s)", - "LabelNumberReviews": "{0} Critique(s)", - "LabelFree": "Gratuit", - "HeaderTo": "\u00c0", - "HeaderPlaybackError": "Erreur de lecture", - "MessagePlaybackErrorNotAllowed": "Vous n'\u00eates pas autoris\u00e9 \u00e0 lire ce contenu. Veuillez contacter votre administrateur syst\u00e8me pour plus de d\u00e9tails.", - "MessagePlaybackErrorNoCompatibleStream": "Aucun flux compatible n'est actuellement disponible. Veuillez r\u00e9essayer plus tard ou contactez votre administrateur pour plus de d\u00e9tails.", - "MessagePlaybackErrorRateLimitExceeded": "Vous avez d\u00e9pass\u00e9 votre limite de lecture. Veuillez contacter votre administrateur syst\u00e8me pour plus de d\u00e9tails.", - "MessagePlaybackErrorPlaceHolder": "Impossible de lire le contenu choisi sur cet appareil", - "HeaderSelectAudio": "S\u00e9lectionner audio", - "HeaderSelectSubtitles": "S\u00e9lectionner sous-titres", - "ButtonMarkForRemoval": "Supprimer de l'appareil", - "ButtonUnmarkForRemoval": "Annuler la suppression de l'appareil", - "LabelDefaultStream": "(Par d\u00e9faut)", - "LabelForcedStream": "(Forc\u00e9)", - "LabelDefaultForcedStream": "(Par d\u00e9faut\/Forc\u00e9)", - "LabelUnknownLanguage": "Langue inconnue", - "MessageConfirmSyncJobItemCancellation": "Vouslez vous vraiment annuler cet action?", - "ButtonMute": "Sourdine", - "ButtonUnmute": "D\u00e9sactiver sourdine", - "ButtonStop": "Arr\u00eat", - "ButtonNextTrack": "Piste suivante", - "ButtonPause": "Pause", - "ButtonPlay": "Lire", - "ButtonEdit": "Modifier", - "ButtonQueue": "En file d'attente", - "ButtonPlayTrailer": "Lire la bande-annonce", - "ButtonPlaylist": "Liste de lecture", - "ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente", - "LabelEnabled": "Activ\u00e9", - "LabelDisabled": "D\u00e9sactiv\u00e9", - "ButtonMoreInformation": "Plus d'information", - "LabelNoUnreadNotifications": "Aucune notification non lue", - "ButtonViewNotifications": "Voir notifications", - "ButtonMarkTheseRead": "Marquer comme lus", - "ButtonClose": "Fermer", - "LabelAllPlaysSentToPlayer": "Toutes les lectures seront envoy\u00e9es au lecteur s\u00e9lectionn\u00e9.", - "MessageInvalidUser": "Nom d'utilisateur ou mot de passe incorrect. R\u00e9essayer.", - "HeaderLoginFailure": "\u00c9chec de la connection", - "HeaderAllRecordings": "Tous les enregistrements", - "RecommendationBecauseYouLike": "Parce que vous aimez {0}", - "RecommendationBecauseYouWatched": "Parce que vous avez regard\u00e9 {0}", - "RecommendationDirectedBy": "R\u00e9alis\u00e9 par {0}", - "RecommendationStarring": "Mettant en vedette {0}", - "HeaderConfirmRecordingCancellation": "Confirmer l'annulation de l'enregistrement.", - "MessageConfirmRecordingCancellation": "\u00cates-vous s\u00fbr de vouloir annuler cet enregistrement?", - "MessageRecordingCancelled": "Enregistrement annul\u00e9.", - "MessageRecordingScheduled": "Enregistrement planifi\u00e9.", - "HeaderConfirmSeriesCancellation": "Confirmez l'annulation de la s\u00e9rie", - "MessageConfirmSeriesCancellation": "\u00cates-vous s\u00fbr de vouloir annuler cette s\u00e9rie?", - "MessageSeriesCancelled": "S\u00e9rie annul\u00e9e", - "HeaderConfirmRecordingDeletion": "Confirmez la suppression de l'enregistrement", - "MessageConfirmRecordingDeletion": "\u00cates-vous s\u00fbr de vouloir supprimer cet enregistrement?", - "MessageRecordingDeleted": "Enregistrement supprim\u00e9.", - "ButonCancelRecording": "Enregistrement annul\u00e9.", - "MessageRecordingSaved": "Enregistrement sauvegard\u00e9.", - "OptionSunday": "Dimanche", - "OptionMonday": "Lundi", - "OptionTuesday": "Mardi", - "OptionWednesday": "Mercredi", - "OptionThursday": "Jeudi", - "OptionFriday": "Vendredi", - "OptionSaturday": "Samedi", - "OptionEveryday": "Tous les jours", - "OptionWeekend": "Week-ends", - "OptionWeekday": "Jours de semaine", - "HeaderConfirmDeletion": "Confirmer la suppression", - "MessageConfirmPathSubstitutionDeletion": "\u00cates-vous s\u00fbr de vouloir supprimer cette substitution de chemin d'acc\u00e8s?", - "LiveTvUpdateAvailable": "(Mise \u00e0 jour disponible)", - "LabelVersionUpToDate": "\u00c0 jour!", - "ButtonResetTuner": "R\u00e9initialiser le tuner", - "HeaderResetTuner": "R\u00e9initialiser le tuner", - "MessageConfirmResetTuner": "\u00cates-vous s\u00fbr de vouloir r\u00e9initialiser ce tuner ? Tout les lecteurs ou enregistrements actifs seront brusquement interrompus.", - "ButtonCancelSeries": "Annuler s\u00e9ries", - "HeaderSeriesRecordings": "Enregistrements de s\u00e9ries", - "LabelAnytime": "N'importe quelle heure", - "StatusRecording": "Enregistrement", - "StatusWatching": "En lecture", - "StatusRecordingProgram": "Enregistre {0}", - "StatusWatchingProgram": "En lecture de {0}", - "HeaderSplitMedia": "S\u00e9parer les m\u00e9dias", - "MessageConfirmSplitMedia": "\u00cates vous s\u00fbrs de vouloir diviser les sources de m\u00e9dia dans des items s\u00e9par\u00e9s ?", - "HeaderError": "Erreur", - "MessageChromecastConnectionError": "Votre cl\u00e9 Chromecast ne peut pas se connecter \u00e0 votre serveur Emby. Veuillez v\u00e9rifier les connections et recommencer.", - "MessagePleaseSelectOneItem": "Veuillez s\u00e9lectionner au moins un item.", - "MessagePleaseSelectTwoItems": "Veuillez s\u00e9lectionner au moins deux items.", - "MessageTheSelectedItemsWillBeGrouped": "Les vid\u00e9os s\u00e9lectionn\u00e9es seront regroup\u00e9es dans un objet virtuel. L'application Emby choisra automatiquement quelle version jouer d'apr\u00e8s le pr\u00e9irph\u00e9rique et la performance du r\u00e9seau. \u00cates vous s\u00fbre de vouloir continuer ?", - "HeaderResume": "Reprendre", - "HeaderMyViews": "Mes affichages", - "HeaderLibraryFolders": "R\u00e9pertoires de m\u00e9dias", - "HeaderLatestMedia": "Derniers m\u00e9dias", - "ButtonMoreItems": "Plus...", - "ButtonMore": "Voir la suite", - "HeaderFavoriteMovies": "Films favoris", - "HeaderFavoriteShows": "S\u00e9ries favorites", - "HeaderFavoriteEpisodes": "\u00c9pisodes favoris", - "HeaderFavoriteGames": "Jeux favoris", - "HeaderRatingsDownloads": "Notes \/ T\u00e9l\u00e9chargements", - "HeaderConfirmProfileDeletion": "Confirmer la suppression de profil", - "MessageConfirmProfileDeletion": "\u00cates-vous s\u00fbr de vouloir supprimer ce profil?", - "HeaderSelectServerCachePath": "S\u00e9lectionner le chemin d'acc\u00e8s du cache de serveur", - "HeaderSelectTranscodingPath": "S\u00e9lectionnez le chemin d'acc\u00e8s du r\u00e9pertoire temporaire de transcodage", - "HeaderSelectImagesByNamePath": "S\u00e9lectionner le chemin d'acc\u00e8s du \"Images By Name\"", - "HeaderSelectMetadataPath": "S\u00e9lectionner le chemin d'acc\u00e8s des m\u00e9tadonn\u00e9es", - "HeaderSelectServerCachePathHelp": "Parcourir ou entrer le chemin d'acc\u00e8s \u00e0 utiliser pour les fichiers caches du serveur. Le dossier doit \u00eatre accessible en \u00e9criture.", - "HeaderSelectTranscodingPathHelp": "Parcourir ou saisir le chemin d'acc\u00e8s \u00e0 utiliser pour le transcodage des fichiers temporaires. Le dossier devra \u00eatre accessible en \u00e9criture.", - "HeaderSelectImagesByNamePathHelp": "Parcourir ou saisir le chemin d'acc\u00e8s de vos items par le nom de dossier. Le dossier devra \u00eatre accessible en \u00e9criture.", - "HeaderSelectMetadataPathHelp": "Parcourir ou saisir le chemin d'acc\u00e8s o\u00f9 vous aimeriez stocker les m\u00e9tadonn\u00e9es. Le r\u00e9pertoire doit \u00eatre accessible en \u00e9criture.", - "HeaderSelectChannelDownloadPath": "S\u00e9lectionnez le chemin de t\u00e9l\u00e9chargement des cha\u00eenes.", - "HeaderSelectChannelDownloadPathHelp": "Parcourir ou saisir le chemin destin\u00e9 au stockage des fichers cache des cha\u00eenes. Le r\u00e9pertoire doit \u00eatre accessible en \u00e9criture.", - "OptionNewCollection": "Nouveau...", - "ButtonAdd": "Ajouter", - "ButtonRemove": "Supprimer", - "LabelChapterDownloaders": "Agents de t\u00e9l\u00e9chargement de chapitres:", - "LabelChapterDownloadersHelp": "Activez cette option pour classer vos sources pr\u00e9f\u00e9r\u00e9es de t\u00e9l\u00e9chargement de chapitres par ordre de priorit\u00e9. Les sources de t\u00e9l\u00e9chargement avec une priorit\u00e9 basse seront utilis\u00e9es uniquement pour compl\u00e9ter les informations manquantes.", - "HeaderFavoriteAlbums": "Albums favoris", - "HeaderLatestChannelMedia": "Derniers items de la cha\u00eene", - "ButtonOrganizeFile": "Organiser le fichier", - "ButtonDeleteFile": "Supprimer le fichier", - "HeaderOrganizeFile": "Organiser le fichier", - "HeaderDeleteFile": "Supprimer le fichier", - "StatusSkipped": "Saut\u00e9s", - "StatusFailed": "\u00c9chou\u00e9", - "StatusSuccess": "Succ\u00e8s", - "MessageFileWillBeDeleted": "Le fichier suivant sera supprim\u00e9 :", - "MessageSureYouWishToProceed": "\u00cates-vous s\u00fbr de vouloir continuer?", - "MessageDuplicatesWillBeDeleted": "De plus, les doublons suivants vont \u00eatre supprim\u00e9s :", - "MessageFollowingFileWillBeMovedFrom": "Le fichier suivant sera d\u00e9plac\u00e9 de:", - "MessageDestinationTo": "\u00c0 :", - "HeaderSelectWatchFolder": "S\u00e9lectionner le r\u00e9pertoire surveill\u00e9", - "HeaderSelectWatchFolderHelp": "Parcourir ou saisir le chemin de votre r\u00e9pertoire de surveillance. Le r\u00e9pertoire doit \u00eatre accessible en \u00e9criture.", - "OrganizePatternResult": "R\u00e9sultat : {0}", - "AutoOrganizeError": "Erreur pendant l'organisation du fichier", - "FileOrganizeManually": "Organiser les fichiers", - "ErrorOrganizingFileWithErrorCode": "Une erreur est survenue pendant l'orgnisation du fichier. Le code erreur: {0}.", - "HeaderRestart": "Red\u00e9marrer", - "HeaderShutdown": "\u00c9teindre", - "MessageConfirmRestart": "Etes-vous s\u00fbr de vouloir red\u00e9marrer le serveur Emby ?", - "MessageConfirmShutdown": "Etes-vous s\u00fbr de vouloir \u00e9teindre le serveur Emby ?", - "ButtonUpdateNow": "Mettre \u00e0 jour maintenant", - "ValueItemCount": "{0} \u00e9l\u00e9ment", - "ValueItemCountPlural": "{0} \u00e9l\u00e9ments", - "NewVersionOfSomethingAvailable": "Une nouvelle version de {0} est disponible!", - "VersionXIsAvailableForDownload": "La version {0} est maintenant disponible au t\u00e9l\u00e9chargement.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcodage", - "LabelPlayMethodDirectStream": "Direct Stream", - "LabelPlayMethodDirectPlay": "Direct Play", - "LabelAudioCodec": "Audio : {0}", - "LabelVideoCodec": "Vid\u00e9o : {0}", - "LabelLocalAccessUrl": "Acc\u00e8s local : {0}", - "LabelRemoteAccessUrl": "URL d'acc\u00e8s \u00e0 distance: {0}", - "LabelRunningOnPort": "En cours d'ex\u00e9cution sur le port http {0}.", - "LabelRunningOnPorts": "En cours d'ex\u00e9cution sur le port http {0} et https {1}.", - "HeaderLatestFromChannel": "Les plus r\u00e9cents de {0}", - "LabelUnknownLanaguage": "Langue inconnue", - "HeaderCurrentSubtitles": "Sous-titres actuels", - "MessageDownloadQueued": "Le t\u00e9l\u00e9chargement a \u00e9t\u00e9 mis en file d'attente.", - "MessageAreYouSureDeleteSubtitles": "\u00cates-vous s\u00fbr de vouloir supprimer ce fichier de sous-titres ?", - "ButtonRemoteControl": "Contr\u00f4le \u00e0 distance", - "HeaderLatestTvRecordings": "Les plus r\u00e9cents enregistrements", - "ButtonOk": "Ok", - "ButtonCancel": "Annuler", - "ButtonRefresh": "Actualiser", - "LabelCurrentPath": "Chemin d'acc\u00e8s actuel :", - "HeaderSelectMediaPath": "S\u00e9lectionnez le chemin du m\u00e9dia", - "HeaderSelectPath": "S\u00e9lectionnez un chemin", - "ButtonNetwork": "R\u00e9seau", - "MessageDirectoryPickerInstruction": "Les chemins r\u00e9seaux peuvent \u00eatre saisis manuellement dans le cas o\u00f9 l'utilisation du bouton \"R\u00e9seau\" ne parvient pas \u00e0 localiser les ressources. Par exemple, {0} ou {1}.", - "MessageDirectoryPickerBSDInstruction": "Sur BSD, vous devrez peut-\u00eatre configurer le stockage de votre FreeNAS Jail pour autoriser Emby \u00e0 y acc\u00e9der.", - "MessageDirectoryPickerLinuxInstruction": "Pour Linux, vous devez au moins donner les acc\u00e8s en lecture \u00e0 l'utilisateur Emby pour vos r\u00e9pertoires de stockage.", - "HeaderMenu": "Menu", - "ButtonOpen": "Ouvrir", - "ButtonOpenInNewTab": "Ouvrir dans un nouvel onglet", - "ButtonShuffle": "M\u00e9langer", - "ButtonInstantMix": "Instantan\u00e9", - "ButtonResume": "Reprendre", - "HeaderScenes": "Sc\u00e8nes", - "HeaderAudioTracks": "Pistes audio", - "HeaderLibraries": "Bilblioth\u00e8ques", - "HeaderSubtitles": "Sous-titres", - "HeaderVideoQuality": "Qualit\u00e9 vid\u00e9o", - "MessageErrorPlayingVideo": "La lecture de la vid\u00e9o a rencontr\u00e9 une erreur", - "MessageEnsureOpenTuner": "Veuillez vous assurer qu'un tuner est bien disponible.", - "ButtonHome": "Accueil", - "ButtonDashboard": "Tableau de bord", - "ButtonReports": "Rapports", - "ButtonMetadataManager": "Gestionnaire de m\u00e9tadonn\u00e9es", - "HeaderTime": "Heure", - "HeaderName": "Nom", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Artiste de l'album", - "HeaderArtist": "Artiste", - "LabelAddedOnDate": "Ajout\u00e9 {0}", - "ButtonStart": "Commencer", - "HeaderChannels": "Cha\u00eenes", - "HeaderMediaFolders": "R\u00e9pertoires de m\u00e9dias", - "HeaderBlockItemsWithNoRating": "Bloquer le contenu ne comportant aucune information de classement:", - "OptionBlockOthers": "Autres", - "OptionBlockTvShows": "S\u00e9ries TV", - "OptionBlockTrailers": "Bandes-annonces", - "OptionBlockMusic": "Musique", - "OptionBlockMovies": "Films", - "OptionBlockBooks": "Livres", - "OptionBlockGames": "Jeux", - "OptionBlockLiveTvPrograms": "Programmes TV en direct", - "OptionBlockLiveTvChannels": "Cha\u00eenes TV en direct", - "OptionBlockChannelContent": "Cha\u00eenes Internet", - "ButtonRevoke": "R\u00e9voquer", - "MessageConfirmRevokeApiKey": "Etes-vous s\u00fbr de vouloir r\u00e9voquer cette cl\u00e9 d'api ? La connexion de cette application au serveur Emby sera brutalement interrompue.", - "HeaderConfirmRevokeApiKey": "R\u00e9voquer la cl\u00e9 API", - "ValueContainer": "Conteneur : {0}", - "ValueAudioCodec": "Codec Audio : {0}", - "ValueVideoCodec": "Codec Vid\u00e9o : {0}", - "ValueCodec": "Codec : {0}", - "ValueConditions": "Conditions : {0}", - "LabelAll": "Tout", - "HeaderDeleteImage": "Supprimer l'image", - "MessageFileNotFound": "Fichier introuvable.", - "MessageFileReadError": "Une erreur a \u00e9t\u00e9 rencontr\u00e9e pendant la lecture de ce fichier.", - "ButtonNextPage": "Page suivante", - "ButtonPreviousPage": "Page pr\u00e9c\u00e9dente", - "ButtonMoveLeft": "D\u00e9placer \u00e0 gauche", - "ButtonMoveRight": "D\u00e9placer \u00e0 droite", - "ButtonBrowseOnlineImages": "Parcourir les images en ligne", - "HeaderDeleteItem": "Supprimer l'\u00e9l\u00e9ment", - "ConfirmDeleteItem": "Supprimer cet \u00e9l\u00e9ment l'effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre biblioth\u00e8que de medias. Etes-vous s\u00fbr de vouloir continuer ?", - "HeaderDeleteItems": "Supprimer les \u00e9l\u00e9ments", - "ConfirmDeleteItems": "Supprimer ces \u00e9l\u00e9ments l'effacera \u00e0 la fois du syst\u00e8me de fichiers et de votre biblioth\u00e8que de m\u00e9dias. \u00cates-vous s\u00fbr de vouloir continuer ?", - "MessagePleaseEnterNameOrId": "Veuillez saisir un nom ou un identifiant externe.", - "MessageValueNotCorrect": "La valeur saisie est incorrecte. Veuillez r\u00e9essayer.", - "MessageItemSaved": "Item sauvegard\u00e9.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Veuillez accepter les conditions d'utilisation avant de poursuivre.", - "OptionEnded": "Termin\u00e9", - "OptionContinuing": "En continuation", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Param\u00e8tres", - "ButtonUninstall": "D\u00e9sinstaller", - "HeaderEnabledFields": "Activer les champs", - "HeaderEnabledFieldsHelp": "D\u00e9cocher un champ pour le verrouiller et emp\u00eacher ainsi ses donn\u00e9es d'\u00eatre modifi\u00e9es.", - "HeaderLiveTV": "TV en direct", - "MissingLocalTrailer": "Bande-annonce locale manquante.", - "MissingPrimaryImage": "Image principale manquante.", - "MissingBackdropImage": "Image d'arri\u00e8re-plan manquante.", - "MissingLogoImage": "Image logo manquante.", - "MissingEpisode": "Episode manquant.", - "OptionScreenshots": "Captures d'\u00e9cran", - "OptionBackdrops": "Arri\u00e8re-plans", - "OptionImages": "Images", - "OptionKeywords": "Mots-cl\u00e9s", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Nom", - "OptionOverview": "Aper\u00e7u", - "OptionGenres": "Genres", - "OptionParentalRating": "Classification parentale", - "OptionPeople": "People", - "OptionRuntime": "Dur\u00e9e", - "OptionProductionLocations": "Sites de production", - "OptionBirthLocation": "Lieu de naissance", - "LabelAllChannels": "Toutes les cha\u00eenes", - "LabelLiveProgram": "DIRECT", - "LabelNewProgram": "NOUVEAUTE", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Modifier le type de contenu", - "HeaderChangeFolderTypeHelp": "Pour modifier le type, veuillez d'abord le supprimer et le recr\u00e9er avec le nouveau type.", - "HeaderAlert": "Alerte", - "MessagePleaseRestart": "Veuillez red\u00e9marrer pour finaliser les mises \u00e0 jour.", - "ButtonRestart": "Red\u00e9marrer", - "MessagePleaseRefreshPage": "Veuillez rafraichir la page pour recevoir de nouvelles mises \u00e0 jour d'Emby Server.", - "ButtonHide": "Cacher", - "MessageSettingsSaved": "Param\u00e8tres sauvegard\u00e9s.", - "ButtonSignOut": "D\u00e9connexion", - "ButtonMyProfile": "Mon profil", - "ButtonMyPreferences": "Mes pr\u00e9f\u00e9rences", - "MessageBrowserDoesNotSupportWebSockets": "Ce navigateur ne supporte pas les sockets Web. Pour un meilleur confort d'utilisation, essayez avec un navigateur moderne tel que Chrome, Firefox, IE10+, Safari (iOS) ou Opera.", - "LabelInstallingPackage": "Installation de {0}", - "LabelPackageInstallCompleted": "L'installation de {0} est termin\u00e9e.", - "LabelPackageInstallFailed": "L'installation de {0} a \u00e9chou\u00e9.", - "LabelPackageInstallCancelled": "L'installation de {0} a \u00e9t\u00e9 annul\u00e9e.", - "TabServer": "Serveur", - "TabUsers": "Utilisateurs", - "TabLibrary": "Biblioth\u00e8que", - "TabMetadata": "M\u00e9tadonn\u00e9es", - "TabDLNA": "DLNA", - "TabLiveTV": "TV en direct", - "TabAutoOrganize": "Auto-organisation", - "TabPlugins": "Plugins", - "TabAdvanced": "Avanc\u00e9", - "TabHelp": "Aide", - "TabScheduledTasks": "T\u00e2ches planifi\u00e9es", - "ButtonFullscreen": "Plein \u00e9cran", - "ButtonAudioTracks": "Pistes audio", - "ButtonSubtitles": "Sous-titres", - "ButtonScenes": "Sc\u00e8nes", - "ButtonQuality": "Qualit\u00e9", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "S\u00e9lectionnez le lecteur", - "ButtonSelect": "S\u00e9lectionner", - "ButtonNew": "Nouveau", - "MessageInternetExplorerWebm": "Pour de meilleurs r\u00e9sultats avec Internet Explorer, merci d'installer le plugin WebM pour IE.", - "HeaderVideoError": "Erreur vid\u00e9o", - "ButtonAddToPlaylist": "Ajouter \u00e0 la liste de lecture", - "HeaderAddToPlaylist": "Ajouter \u00e0 la liste de lecture", - "LabelName": "Nom", - "ButtonSubmit": "Soumettre", - "LabelSelectPlaylist": "Liste de lecture :", - "OptionNewPlaylist": "Nouvelle liste de lecture...", - "MessageAddedToPlaylistSuccess": "OK", - "ButtonView": "Affichage", - "ButtonViewSeriesRecording": "Voir les enregistrements de s\u00e9ries", - "ValueOriginalAirDate": "Date de diffusion originale: {0}", - "ButtonRemoveFromPlaylist": "Supprimer de la liste de lecture", - "HeaderSpecials": "Episodes sp\u00e9ciaux", - "HeaderTrailers": "Bandes-annonces", - "HeaderAudio": "Audio", - "HeaderResolution": "R\u00e9solution", - "HeaderVideo": "Vid\u00e9o", - "HeaderRuntime": "Dur\u00e9e", - "HeaderCommunityRating": "Note de la communaut\u00e9", - "HeaderPasswordReset": "Mot de passe r\u00e9initialis\u00e9", - "HeaderParentalRating": "Classification parentale", - "HeaderReleaseDate": "Date de sortie ", - "HeaderDateAdded": "Date d'ajout", - "HeaderSeries": "S\u00e9ries", - "HeaderSeason": "Saison", - "HeaderSeasonNumber": "Num\u00e9ro de saison", - "HeaderNetwork": "R\u00e9seau", - "HeaderYear": "Ann\u00e9e", - "HeaderGameSystem": "Plateforme de jeu", - "HeaderPlayers": "Lecteurs", - "HeaderEmbeddedImage": "Image int\u00e9gr\u00e9e", - "HeaderTrack": "Piste", - "HeaderDisc": "Disque", - "OptionMovies": "Films", - "OptionCollections": "Collections", - "OptionSeries": "S\u00e9ries", - "OptionSeasons": "Saisons", - "OptionEpisodes": "\u00c9pisodes", - "OptionGames": "Jeux", - "OptionGameSystems": "Plateformes de jeu", - "OptionMusicArtists": "Artistes musicaux", - "OptionMusicAlbums": "Albums de musique", - "OptionMusicVideos": "Vid\u00e9oclips", - "OptionSongs": "Chansons", - "OptionHomeVideos": "Vid\u00e9os personnelles", - "OptionBooks": "Livres", - "OptionAdultVideos": "Vid\u00e9os adultes", - "ButtonUp": "Haut", - "ButtonDown": "Bas", - "LabelMetadataReaders": "Lecteurs de m\u00e9tadonn\u00e9es :", - "LabelMetadataReadersHelp": "Classez vos sources locales de m\u00e9tadonn\u00e9es pr\u00e9f\u00e9r\u00e9es dans l'ordre de priorit\u00e9. Le premier fichier trouv\u00e9 sera lu.", - "LabelMetadataDownloaders": "T\u00e9l\u00e9chargeurs de m\u00e9tadonn\u00e9es:", - "LabelMetadataDownloadersHelp": "Activez et classez vos sources de t\u00e9l\u00e9chargement de m\u00e9tadonn\u00e9es pr\u00e9f\u00e9r\u00e9es dans l'ordre de priorit\u00e9. Les plus basses seront utilis\u00e9es uniquement pour remplir les informations manquantes.", - "LabelMetadataSavers": "Enregistreurs de m\u00e9tadonn\u00e9es :", - "LabelMetadataSaversHelp": "S\u00e9lectionnez un format de fichier pour la sauvegarde des m\u00e9tadonn\u00e9es.", - "LabelImageFetchers": "R\u00e9cup\u00e9rateurs d'image :", - "LabelImageFetchersHelp": "Activez cette option pour classer vos r\u00e9cup\u00e9rateurs d'images par ordre de priorit\u00e9.", - "ButtonQueueAllFromHere": "Tout mette en file d'attente \u00e0 partir d'ici", - "ButtonPlayAllFromHere": "Tout lire \u00e0 partir d'ici", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identification de l'\u00e9l\u00e9ment", - "PersonTypePerson": "Personne", - "LabelTitleDisplayOrder": "Ordre d'affichage des titres:", - "OptionSortName": "Clef de tri", - "OptionReleaseDate": "Date de diffusion", - "LabelSeasonNumber": "Num\u00e9ro de saison :", - "LabelDiscNumber": "Num\u00e9ro de disque", - "LabelParentNumber": "Num\u00e9ro parent", - "LabelEpisodeNumber": "Num\u00e9ro d'\u00e9pisode :", - "LabelTrackNumber": "Num\u00e9ro de piste:", - "LabelNumber": "Num\u00e9ro:", - "LabelReleaseDate": "Date de sortie", - "LabelEndDate": "Date de fin:", - "LabelYear": "Ann\u00e9e", - "LabelDateOfBirth": "Date de naissance :", - "LabelBirthYear": "Ann\u00e9e de naissance :", - "LabelBirthDate": "Date de naissance :", - "LabelDeathDate": "Date de d\u00e9c\u00e8s :", - "HeaderRemoveMediaLocation": "Supprimer l'emplacement m\u00e9dia", - "MessageConfirmRemoveMediaLocation": "Etes vous s\u00fbr de vouloir supprimer cet emplacement?", - "HeaderRenameMediaFolder": "Renommer le r\u00e9pertoire de m\u00e9dia", - "LabelNewName": "Nouveau nom :", - "HeaderAddMediaFolder": "Ajouter un r\u00e9pertoire de m\u00e9dias", - "HeaderAddMediaFolderHelp": "Nom (Film, Musique, TV, etc):", - "HeaderRemoveMediaFolder": "Supprimer le r\u00e9pertoire de m\u00e9dias", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "L'emplacement m\u00e9dia suivant va \u00eatre supprim\u00e9 de votre biblioth\u00e8que :", - "MessageAreYouSureYouWishToRemoveMediaFolder": "\u00cates-vous s\u00fbr de vouloir supprimer ce r\u00e9pertoire de m\u00e9dia?", - "ButtonRename": "Renommer", - "ButtonChangeContentType": "Changer le type de contenu", - "HeaderMediaLocations": "Emplacement des m\u00e9dias", - "LabelContentTypeValue": "Type de contenu : {0}", - "LabelPathSubstitutionHelp": "Optionnel : la substitution de chemin peut rediriger les chemins serveurs vers des partages r\u00e9seau pour une lecture directe par les clients.", - "FolderTypeUnset": "Non d\u00e9fini (contenu m\u00e9lang\u00e9)", - "FolderTypeMovies": "Films", - "FolderTypeMusic": "Musique", - "FolderTypeAdultVideos": "Vid\u00e9os Adultes", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Vid\u00e9os Musical", - "FolderTypeHomeVideos": "Vid\u00e9os personnelles", - "FolderTypeGames": "Jeux", - "FolderTypeBooks": "Livres", - "FolderTypeTvShows": "TV", - "TabMovies": "Films", - "TabSeries": "S\u00e9ries", - "TabEpisodes": "\u00c9pisodes", - "TabTrailers": "Bandes-annonces", - "TabGames": "Jeux", - "TabAlbums": "Albums", - "TabSongs": "Chansons", - "TabMusicVideos": "Videos musicales", - "BirthPlaceValue": "Lieu de naissance: {0}", - "DeathDateValue": "D\u00e9c\u00e9d\u00e9(e): {0}", - "BirthDateValue": "N\u00e9(e): {0}", - "HeaderLatestReviews": "Derni\u00e8res critiques", - "HeaderPluginInstallation": "Installation du plug-in", - "MessageAlreadyInstalled": "Cette version est d\u00e9j\u00e0 install\u00e9e.", - "ValueReviewCount": "{0} Critiques", - "MessageYouHaveVersionInstalled": "Actuellement , vous avez la version {0} install\u00e9e", - "MessageTrialExpired": "La p\u00e9riode d'essai de cette fonctionnalit\u00e9 a expir\u00e9", - "MessageTrialWillExpireIn": "La p\u00e9riode d'essai de cette fonctionnalit\u00e9 expire dans {0} jour(s)", - "MessageInstallPluginFromApp": "Ce plugin doit-\u00eatre install\u00e9 depuis l'application dans laquelle vous voulez l'utiliser", - "ValuePriceUSD": "Prix: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "Cette fonctionnalit\u00e9 vous est accessible ; vous pourrez l'utiliser tant que vous aurez une souscription Emby Premiere active.", - "MessageChangeRecurringPlanConfirm": "Apr\u00e8s avoir termin\u00e9 cette transaction, vous devrez annuler votre donation r\u00e9currente depuis votre compte PayPal. Merci de supporter Emby.", - "ButtonDelete": "Supprimer", - "HeaderEmbyAccountAdded": "Compte Emby ajout\u00e9", - "MessageEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur.", - "MessagePendingEmbyAccountAdded": "Le compte Emby a \u00e9t\u00e9 ajout\u00e9 \u00e0 cet utilisateur. Un email va \u00eatre envoy\u00e9 au propri\u00e9taire du compte. L'invitation devra \u00eatre confirm\u00e9e en cliquant sur le lien contenu dans l'email.", - "HeaderEmbyAccountRemoved": "Compte Emby supprim\u00e9", - "MessageEmbyAccontRemoved": "Le compte Emby a \u00e9t\u00e9 supprim\u00e9 pour cet utilisateur.", - "TooltipLinkedToEmbyConnect": "Li\u00e9 \u00e0 Emby Connect", - "HeaderUnrated": "Non not\u00e9", - "ValueDiscNumber": "Disque {0}", - "HeaderUnknownDate": "Date inconnue", - "HeaderUnknownYear": "Ann\u00e9e inconnue", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Lire avec lecteur externe", - "HeaderSelectExternalPlayer": "S\u00e9lectionner le lecteur externe", - "HeaderExternalPlayerPlayback": "Lecture avec lecteur externe", - "ButtonImDone": "J'ai fini", - "OptionWatched": "Vu", - "OptionUnwatched": "Non vu", - "ExternalPlayerPlaystateOptionsHelp": "Sp\u00e9cifiez la mani\u00e8re dont vous souhaitez reprendre la lecture de la vid\u00e9o la prochaine fois.", - "LabelMarkAs": "Marqu\u00e9 comme :", - "OptionInProgress": "En cours", - "LabelResumePoint": "Point de reprise", - "ValueOneMovie": "1 Film", - "ValueMovieCount": "{0} films", - "ValueOneTrailer": "1 bande-annonce", - "ValueTrailerCount": "{0} bandes-annonces", - "ValueOneSeries": "1 S\u00e9rie", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 \u00e9pisode", - "ValueEpisodeCount": "{0} \u00e9pisodes", - "ValueOneGame": "1 jeu", - "ValueGameCount": "{0} jeux", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 chanson", - "ValueSongCount": "{0} chansons", - "ValueOneMusicVideo": "1 vid\u00e9o musicale", - "ValueMusicVideoCount": "{0} music Videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Non diffus\u00e9", - "HeaderMissing": "Manquant", - "ButtonWebsite": "Site Web", - "TooltipFavorite": "Favoris", - "TooltipLike": "Aime bien", - "TooltipDislike": "N'aime pas", - "TooltipPlayed": "Lu", - "ValueSeriesYearToPresent": "{0}-Pr\u00e9sent", - "ValueAwards": "R\u00e9compenses:{0}", - "ValueBudget": "Budget:{0}", - "ValueRevenue": "Recettes:{0}", - "ValuePremiered": "Avant premi\u00e8re {0}", - "ValuePremieres": "Acteurs principaux {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Etat: {0}", - "ValueSpecialEpisodeName": "Sp\u00e9cial - {0}", - "LabelLimit": "Limite :", - "ValueLinks": "Liens : {0}", - "HeaderPeople": "Personnes", - "HeaderCastAndCrew": "Distribution et \u00e9quipe", - "ValueArtist": "Artiste : {0}", - "ValueArtists": "Artistes : {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Fabricant", - "MediaInfoCameraModel": "Mod\u00e8le de l'appareil photo", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Ouverture", - "MediaInfoExposureTime": "Temps d'exposition", - "MediaInfoFocalLength": "Longueur focale", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Vitesse Iso", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Vitesse d'opturation", - "MediaInfoSoftware": "Logiciel", - "HeaderIfYouLikeCheckTheseOut": "Si vous aimez {0}, essayez ceci..", - "HeaderPlotKeywords": "afficher les mots cl\u00e9s", - "HeaderMovies": "Films", - "HeaderAlbums": "Albums", - "HeaderGames": "Jeux", - "HeaderBooks": "Livres", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Saisons", - "HeaderTracks": "Pistes", - "HeaderItems": "El\u00e9ments", - "HeaderOtherItems": "Autres \u00e9l\u00e9ments", - "ButtonFullReview": "Revue comp\u00e8te", - "ValueAsRole": "alias {0}", - "ValueGuestStar": "R\u00f4le principal", - "MediaInfoSize": "Taille", - "MediaInfoPath": "Chemin", - "MediaInfoFile": "Fichier", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Conteneur", - "MediaInfoDefault": "D\u00e9faut", - "MediaInfoForced": "Forc\u00e9", - "MediaInfoExternal": "Externe", - "MediaInfoTimestamp": "Rep\u00e9rage temps", - "MediaInfoPixelFormat": "Format de pixel", - "MediaInfoBitDepth": "Profondeur en Bit", - "MediaInfoSampleRate": "D\u00e9bit \u00e9chantillon", - "MediaInfoBitrate": "D\u00e9bit", - "MediaInfoChannels": "Cha\u00eenes", - "MediaInfoLayout": "R\u00e9partition", - "MediaInfoLanguage": "Langue", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Tag codec", - "MediaInfoProfile": "Profil", - "MediaInfoLevel": "Niveau", - "MediaInfoAspectRatio": "Ratio d'aspect original", - "MediaInfoResolution": "R\u00e9solution", - "MediaInfoAnamorphic": "Anamorphique", - "MediaInfoInterlaced": "Entrelac\u00e9", - "MediaInfoFramerate": "Images par seconde", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Donn\u00e9es", - "MediaInfoStreamTypeVideo": "Vid\u00e9o", - "MediaInfoStreamTypeSubtitle": "Sous-titre", - "MediaInfoStreamTypeEmbeddedImage": "Image am\u00e9lior\u00e9e", - "MediaInfoRefFrames": "Image de r\u00e9f\u00e9rence", - "TabPlayback": "Lecture", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Choisir le chemin des intros personnalis\u00e9es", - "HeaderRateAndReview": "Noter et commenter", - "HeaderThankYou": "Merci", - "MessageThankYouForYourReview": "Merci pour votre commentaire.", - "LabelYourRating": "Votre note :", - "LabelFullReview": "Revue compl\u00e8te :", - "LabelShortRatingDescription": "Evaluation courte:", - "OptionIRecommendThisItem": "Je recommande cet article", - "WebClientTourContent": "Voir les m\u00e9dias ajout\u00e9s r\u00e9cemment, les prochains \u00e9pisodes et bien plus. Les cercles verts indiquent le nombre d'\u00e9l\u00e9ments que vous n'avez pas vu.", - "WebClientTourMovies": "Lire les films, bandes-annonces et plus depuis n'importe quel appareil avec un navigateur Web", - "WebClientTourMouseOver": "Laisser la souris au dessus des posters pour un acc\u00e8s rapide aux informations essentiels", - "WebClientTourTapHold": "Maintenir cliqu\u00e9 ou faire un clic droit sur n'importe quel poster pour le menu contextuel", - "WebClientTourMetadataManager": "Cliquer sur modifier pour ouvrir l'\u00e9diteur de m\u00e9dadonn\u00e9es", - "WebClientTourPlaylists": "Cr\u00e9ez facilement des listes de lectures et des mixes instantan\u00e9s, et jouez les sur n'importe quel p\u00e9riph\u00e9rique", - "WebClientTourCollections": "Cr\u00e9ez des collections de films pour les regrouper les \u00e9l\u00e9ments d'un coffret", - "WebClientTourUserPreferences1": "Les pr\u00e9f\u00e9rences utilisateur vous permettent de personnaliser la pr\u00e9sentation de la biblioth\u00e8que pour toutes les applications Emby.", - "WebClientTourUserPreferences2": "Configurez vos pr\u00e9f\u00e9rences audio et sous-titres une fois pour toutes les applications Emby.", - "WebClientTourUserPreferences3": "Modelez la page d'accueil du client web \u00e0 votre convenance", - "WebClientTourUserPreferences4": "Configurer les images d'arri\u00e8re-plan, les th\u00e8mes musicaux et les lecteurs externes", - "WebClientTourMobile1": "Le client web fonctionne parfaitement sur les smartphones et les tablettes...", - "WebClientTourMobile2": "et contr\u00f4le facilement les autres appareils et applications Emby", - "WebClientTourMySync": "Synchronisez vos m\u00e9dias personnels avec vos appareils pour les visionner en mode d\u00e9connect\u00e9.", - "MessageEnjoyYourStay": "Amusez-vous bien !", - "DashboardTourDashboard": "Le tableau de bord du serveur vous permet de g\u00e9rer votre serveur et vos utilisateurs. Vous saurez toujours qui fait quoi et o\u00f9.", - "DashboardTourHelp": "L'aide contextuelle de l'application permet d'ouvrir les pages du wiki relatives au contenu affich\u00e9.", - "DashboardTourUsers": "Cr\u00e9ez facilement des comptes utilisateurs pour vos amis et votre famille, chacun avec ses propres droits, biblioth\u00e8ques accessibles, contr\u00f4le parental et plus encore.", - "DashboardTourCinemaMode": "Le mode cin\u00e9ma apporte l'exp\u00e9rience du cin\u00e9ma directement dans votre salon gr\u00e2ce \u00e0 la possibilit\u00e9 de lire les bandes-annonces et les introductions personnalis\u00e9es avant le programme principal.", - "DashboardTourChapters": "Autorisez la g\u00e9n\u00e9ration des images de chapitres de vos vid\u00e9os pour une pr\u00e9sentation plus agr\u00e9able pendant la navigation.", - "DashboardTourSubtitles": "T\u00e9l\u00e9chargez automatiquement les sous-titres de vos vid\u00e9os dans n'importe quelle langue.", - "DashboardTourPlugins": "Installez des plugins : cha\u00eenes vid\u00e9os internet, TV en direct, analyseur de m\u00e9tadonn\u00e9es, et plus encore.", - "DashboardTourNotifications": "Envoyez automatiquement les notifications d'\u00e9v\u00e9nements du serveur vers vos appareils mobiles, vos adresses email et plus encore.", - "DashboardTourScheduledTasks": "G\u00e9rez facilement les op\u00e9rations longues des taches planifi\u00e9es. Sp\u00e9cifiez quand et \u00e0 quelle fr\u00e9quence elles doivent se lancer.", - "DashboardTourMobile": "Le tableau de bord du serveur Emby fonctionne tr\u00e8s bien sur smartphones et tablettes. G\u00e9rez votre serveur depuis la paume de votre main depuis n'importe o\u00f9, n'importe quand.", - "DashboardTourSync": "Synchronisez vos m\u00e9dias personnels avec vos appareils pour les visionner en mode d\u00e9connect\u00e9.", - "MessageRefreshQueued": "Demande d'actualisation en file d'attente", - "TabDevices": "Appareils", - "TabExtras": "Bonus", - "HeaderUploadImage": "Transf\u00e9rer une image", - "DeviceLastUsedByUserName": "Derni\u00e8rement utilis\u00e9 par {0}", - "HeaderDeleteDevice": "Supprimer l'appareil", - "DeleteDeviceConfirmation": "\u00cates-vous s\u00fbr de vouloir supprimer cet appareil ? La prochaine fois qu'un utilisateur se connecte depuis cet appareil, il sera ajout\u00e9 \u00e0 nouveau.", - "LabelEnableCameraUploadFor": "Autoriser l'upload du contenu de l'appareil photo pour:", - "HeaderSelectUploadPath": "S\u00e9lectionner le r\u00e9pertoire d'upload", - "LabelEnableCameraUploadForHelp": "Les uploads se feront automatiquement en t\u00e2che de fond apr\u00e8s la connexion \u00e0 Emby.", - "ErrorMessageStartHourGreaterThanEnd": "La date de fin doit \u00eatre post\u00e9rieure \u00e0 la date de d\u00e9but.", - "ButtonLibraryAccess": "Acc\u00e8s \u00e0 la biblioth\u00e8que", - "ButtonParentalControl": "Contr\u00f4le parental", - "HeaderInvitationSent": "Invitation envoy\u00e9e", - "MessageInvitationSentToUser": "Un mail a \u00e9t\u00e9 envoy\u00e9 \u00e0 {0} avec votre invitation de partage.", - "MessageInvitationSentToNewUser": "Un email d'invitation \u00e0 Emby a \u00e9t\u00e9 envoy\u00e9 \u00e0 {0}.", - "HeaderConnectionFailure": "Erreur de connexion", - "MessageUnableToConnectToServer": "Nous sommes dans l'impossibilit\u00e9 de nous connecter au serveur s\u00e9lectionn\u00e9. Veuillez v\u00e9rifier qu'il est bien d\u00e9marr\u00e9 et r\u00e9essayez.", - "ButtonSelectServer": "S\u00e9lectionner le serveur", - "MessagePluginConfigurationRequiresLocalAccess": "Pour configurer ce plugin, veuillez vous connecter \u00e0 votre serveur local directement.", - "MessageLoggedOutParentalControl": "L'acc\u00e8s est actuellement limit\u00e9. Veuillez r\u00e9essayer plus tard", - "DefaultErrorMessage": "Il y a eu une erreur lors de l'ex\u00e9cution de la requ\u00eate. Veuillez r\u00e9essayer plus tard.", - "ButtonAccept": "Accepter", - "ButtonReject": "Rejeter", - "HeaderForgotPassword": "Mot de passe oubli\u00e9", - "MessageContactAdminToResetPassword": "Veuillez contacter votre administrateur syst\u00e8me pour r\u00e9initialiser votre mot de passe.", - "MessageForgotPasswordInNetworkRequired": "Veuillez r\u00e9essayer \u00e0 partir de votre r\u00e9seau local pour d\u00e9marrer la proc\u00e9dure de r\u00e9initialisation du mot de passe.", - "MessageForgotPasswordFileCreated": "Le fichier suivant a \u00e9t\u00e9 cr\u00e9\u00e9 sur votre serveur et contient les instructions et la proc\u00e9dure \u00e0 suivre.", - "MessageForgotPasswordFileExpiration": "Le code PIN de r\u00e9initialisation expirera \u00e0 {0}.", - "MessageInvalidForgotPasswordPin": "Le code PIN est invalide ou a expir\u00e9. Veuillez r\u00e9essayer.", - "MessagePasswordResetForUsers": "Les mot de passes ont \u00e9t\u00e9 supprim\u00e9s pour les utilisateurs suivants. Pour se connecter, identifiez vous avec un mot de passe vide.", - "HeaderInviteGuest": "Inviter une personne", - "ButtonLinkMyEmbyAccount": "Lier mon compte maintenant", - "MessageConnectAccountRequiredToInviteGuest": "Vous devez d'abord lier votre compte Emby \u00e0 ce serveur avant de pouvoir accueillir des invit\u00e9s.", - "ButtonSync": "Sync", - "SyncMedia": "Sync. les m\u00e9dias", - "HeaderCancelSyncJob": "Annuler la sync.", - "CancelSyncJobConfirmation": "L'annulation d'une t\u00e2che de synchronisation provoquera la suppression des m\u00e9dias synchronis\u00e9s lors la prochaine ex\u00e9cution de la synchronisation. Etes-vous s\u00fbr de vouloir continuer ?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Veuillez s\u00e9lectionner un p\u00e9riph\u00e9rique avec lequel se synchroniser.", - "MessageSyncJobCreated": "Job de synchronisation cr\u00e9\u00e9.", - "LabelSyncTo": "Synchronis\u00e9 avec:", - "LabelSyncJobName": "Nom du job de synchronisation:", - "LabelQuality": "Qualit\u00e9:", - "HeaderSettings": "Param\u00e8tres", - "OptionAutomaticallySyncNewContent": "Synchroniser automatiquement le nouveau contenu", - "OptionAutomaticallySyncNewContentHelp": "Les nouveaux contenus ajout\u00e9s \u00e0 cette cat\u00e9gorie seront automatiquement synchronis\u00e9s avec l'appareil.", - "OptionSyncUnwatchedVideosOnly": "Synchroniser seulement les vid\u00e9os non lues.", - "OptionSyncUnwatchedVideosOnlyHelp": "Seulement les vid\u00e9os non lus seront synchronis\u00e9es et seront supprim\u00e9es du p\u00e9riph\u00e9rique au fur et \u00e0 mesure qu'elles sont lus.", - "LabelItemLimit": "Maximum d'\u00e9l\u00e9ments :", - "LabelItemLimitHelp": "Optionnel : d\u00e9finit le nombre maximum d'\u00e9l\u00e9ments qui seront synchronis\u00e9s.", - "MessageBookPluginRequired": "N\u00e9cessite l'installation du plugin Bookshelf", - "MessageGamePluginRequired": "N\u00e9cessite l'installation du plugin GameBrowser", - "MessageUnsetContentHelp": "Le contenu sera affich\u00e9 sous forme de r\u00e9pertoires. Pour un r\u00e9sultat optimal, utilisez le gestionnaire de m\u00e9tadonn\u00e9es pour d\u00e9finir le type de contenu des sous-r\u00e9pertoires.", - "SyncJobItemStatusQueued": "Mis en file d'attente", - "SyncJobItemStatusConverting": "Conversion en cours", - "SyncJobItemStatusTransferring": "Transfert en cours", - "SyncJobItemStatusSynced": "Synchronis\u00e9", - "SyncJobItemStatusFailed": "Echou\u00e9", - "SyncJobItemStatusRemovedFromDevice": "Supprim\u00e9 de l'appareil", - "SyncJobItemStatusCancelled": "Annul\u00e9", - "LabelProfile": "Profil :", - "LabelBitrateMbps": "D\u00e9bit (Mbps) :", - "EmbyIntroDownloadMessage": "Pour t\u00e9l\u00e9charger et installer le serveur Emby, visitez {0}.", - "ButtonNewServer": "Nouveau serveur", - "ButtonSignInWithConnect": "Se connecter avec Emby Connect", - "HeaderNewServer": "Nouveau serveur", - "MyDevice": "Mon appareil", - "ButtonRemote": "T\u00e9l\u00e9commande", - "TabInfo": "Info", - "TabCast": "Distribution", - "TabScenes": "Sc\u00e8nes", - "HeaderUnlockApp": "D\u00e9verrouiller l'App", - "HeaderUnlockSync": "D\u00e9verrouiller Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec un petit achat en une fois ou avec une souscription Emby Premiere.", - "MessageUnlockAppWithSupporter": "D\u00e9verrouillez cette fonctionnalit\u00e9 avec une souscription Emby Premiere active.", - "MessageToValidateSupporter": "Si vous avez un compte Emby Premiere actif, connectez-vous simplement et une seule fois \u00e0 l'application, en utilisant la connexion Wifi de votre r\u00e9seau domestique.", - "MessagePaymentServicesUnavailable": "Les services de paiement sont actuellement indisponibles. Merci de r\u00e9essayer ult\u00e9rieurement", - "MessagePleaseSignInLocalNetwork": "Avant de continuer, veuillez vous assurer que vous \u00eates connect\u00e9s sur votre r\u00e9seau local en Wifi ou LAN.", - "ButtonUnlockWithPurchase": "D\u00e9verrouillez par un achat.", - "ButtonUnlockPrice": "D\u00e9verrouiller {0}", - "MessageLiveTvGuideRequiresUnlock": "Le Guide TV en direct est actuellement limit\u00e9 \u00e0 {0} cha\u00eenes. Cliquez sur le bouton d\u00e9verrouiller pour d\u00e9couvrir comment profiter de l'ensemble.", - "OptionEnableFullscreen": "Activer le plein \u00e9cran", - "ButtonServer": "Serveur", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Biblioth\u00e8que", - "HeaderMedia": "M\u00e9dia", - "ButtonInbox": "Bo\u00eete de r\u00e9ception", - "HeaderAdvanced": "Avanc\u00e9", - "HeaderGroupVersions": "Versions des groupes", - "HeaderSaySomethingLike": "Dites quelque chose...", - "ButtonTryAgain": "Veuillez r\u00e9essayer", - "HeaderYouSaid": "Vous avez dit...", - "MessageWeDidntRecognizeCommand": "D\u00e9sol\u00e9, cette commande n'a pas \u00e9t\u00e9 reconnue.", - "MessageIfYouBlockedVoice": "Si vous avez supprim\u00e9 l'acc\u00e8s par commande vocale \u00e0 l'application, vous devrez reconfigurer avant de r\u00e9essayer.", - "MessageNoItemsFound": "Aucun \u00e9l\u00e9ment trouv\u00e9", - "ButtonManageServer": "G\u00e9rer le serveur", - "ButtonEditSubtitles": "Modifier les sous-titres", - "ButtonPreferences": "Pr\u00e9f\u00e9rences", - "ButtonViewArtist": "Voir l'artiste", - "ButtonViewAlbum": "Voir l'album", - "ButtonEditImages": "Modifier les images", - "ErrorMessagePasswordNotMatchConfirm": "Le mot de passe et sa confirmation doivent correspondre.", - "ErrorMessageUsernameInUse": "Ce nom d'utilisateur est d\u00e9j\u00e0 utilis\u00e9. Veuillez en choisir un autre et r\u00e9essayer.", - "ErrorMessageEmailInUse": "Cette adresse email est d\u00e9j\u00e0 utilis\u00e9e. Veuillez en saisir une autre et r\u00e9essayer, ou bien utiliser la fonction du mot de passe oubli\u00e9.", - "MessageThankYouForConnectSignUp": "Merci de vous \u00eatre inscrits sur Emby Connect. Un email va vous \u00eatre envoy\u00e9, avec les instructions pour confirmer votre nouveau compte. Merci de confirmer ce compte puis de revenir \u00e0 cet endroit pour vous connecter.", - "HeaderShare": "Partager", - "ButtonShareHelp": "Partager un page web contenant les informations sur les m\u00e9dias \u00e0 travers les m\u00e9dias sociaux. Les fichiers de m\u00e9dias ne sont jamais partag\u00e9s publiquement.", - "ButtonShare": "Partager", - "HeaderConfirm": "Confirmer", - "ButtonAdvancedRefresh": "Mise \u00e0 jour avanc\u00e9e", - "MessageConfirmDeleteTunerDevice": "Etes-vous s\u00fbr de vouloir supprimer cet appareil ?", - "MessageConfirmDeleteGuideProvider": "Etes-vous s\u00fbr de vouloir supprimer ce fournisseur de guide d'information ?", - "HeaderDeleteProvider": "Supprimer le fournisseur", - "HeaderAddProvider": "Ajouter un fournisseur", - "ErrorAddingTunerDevice": "Une erreur est survenue lors de l'ajout de l'appareil tuner. Assurez-vous qu'il est accessible et r\u00e9essayez.", - "ErrorSavingTvProvider": "Une erreur est survenue lors de la sauvegarde du fournisseur TV. Assurez-vous qu'il est accessible et r\u00e9essayez.", - "ErrorGettingTvLineups": "Une erreur est survenue pendant le t\u00e9l\u00e9chargement des programmes tv. Assurez vous que vos informations sont corrects et r\u00e9essayez.", - "MessageCreateAccountAt": "Cr\u00e9er un compte sur {0}", - "ErrorPleaseSelectLineup": "Veuillez s\u00e9lectionner une gamme et r\u00e9essayer. Si aucune gamme n'est disponible, veuillez v\u00e9rifier que votre identifiant, mot de passe et code postal sont corrects.", - "HeaderTryEmbyPremiere": "Essayer Emby Premiere", - "ButtonBecomeSupporter": "Obtenez Emby Premiere", - "ButtonClosePlayVideo": "Fermer et lire mon m\u00e9dia", - "MessageDidYouKnowCinemaMode": "Saviez-vous qu'avec Emby Premi\u00e8re, vous pouvez am\u00e9liorer votre exp\u00e9rience utilisateur gr\u00e2ce \u00e0 des fonctionnalit\u00e9s comme le Mode Cin\u00e9ma ?", - "MessageDidYouKnowCinemaMode2": "Le mode Cin\u00e9ma vous apporte une vraie exp\u00e9rience utilisateur de cin\u00e9ma, avec les bandes-annonces et les intros personnalis\u00e9es avant le film principal.", - "OptionEnableDisplayMirroring": "Activer la recopie d'\u00e9cran", - "HeaderSyncRequiresSupporterMembership": "Sync n\u00e9cessite une souscription Emby Premiere active.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync n\u00e9cessite une connexion avec un serveur Emby et une souscription Emby Premiere active.", - "ErrorValidatingSupporterInfo": "Une erreur s'est produite lors de la validation de vos informations Emby Premiere. Veuillez r\u00e9essayer plus tard.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status : {0}", - "MessageSyncStarted": "Synchronisation d\u00e9marr\u00e9e", - "OptionPoster": "Affiche", - "OptionPosterCard": "Carte Affiche", - "OptionTimeline": "Chronologie", - "OptionList": "Liste", - "OptionThumb": "Vignette", - "OptionThumbCard": "Carte Vignette", - "OptionBanner": "Banni\u00e8re", - "NoSlideshowContentFound": "Aucun diaporama trouv\u00e9.", - "OptionPhotoSlideshow": "Diaporama de photos", - "OptionBackdropSlideshow": "Diaporama d'illustrations", - "HeaderTopPlugins": "Meilleurs plugins", - "ButtonRecord": "Enregistrer", - "ButtonOther": "Autre", - "HeaderSortBy": "Trier par:", - "HeaderSortOrder": "Ordre de tri :", - "OptionAscending": "Ascendant", - "OptionDescending": "Descendant", - "OptionNameSort": "Nom", - "OptionTvdbRating": "Note d'\u00e9valuation Tvdb", - "OptionPremiereDate": "Date de la premi\u00e8re", - "OptionImdbRating": "Note IMDb", - "OptionDatePlayed": "Date lu", - "OptionDateAdded": "Date d'ajout", - "OptionPlayCount": "Nombre de lectures", - "ButtonDisconnect": "D\u00e9connexion", - "OptionAlbumArtist": "Artiste de l'album", - "OptionArtist": "Artiste", - "OptionAlbum": "Album", - "OptionTrackName": "Titre", - "OptionCommunityRating": "Note de la communaut\u00e9", - "ButtonSort": "Tri", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Par d\u00e9faut", - "ButtonFilter": "Filtre", - "OptionCriticRating": "Note des critiques", - "OptionVideoBitrate": "D\u00e9bit vid\u00e9o", - "OptionMetascore": "Metascore", - "OptionRevenue": "Recettes", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "Pour d'autres fournisseurs de TV Live, cliquez sur l'onglet Services Externes pour voir les options disponibles.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "TV enregistr\u00e9e", - "HeaderDisconnectFromPlayer": "D\u00e9connexion du lecteur", - "ConfirmEndPlayerSession": "Voulez-vous vraiment fermer Emby sur cet appareil ?", - "ButtonYes": "Oui", - "ButtonNo": "Non", - "ButtonRestorePreviousPurchase": "Restaurer l'achat", - "AlreadyPaid": "Vous avez d\u00e9j\u00e0 pay\u00e9 ?", - "AlreadyPaidHelp1": "Si vous avez d\u00e9j\u00e0 payer pour l'installation d'une ancienne version de Media Browser for Android, vous n'avez pas besoin de payer \u00e0 nouveau pour activer l'application. Cliquez sur OK pour nous envoyer un courriel \u00e0 {0} et nous l'activerons pour vous.", - "AlreadyPaidHelp2": "Vous avez Emby Premiere? Fermez juste cette boite de dialogue, connectez-vous \u00e0 l'application en passant par le r\u00e9seau WIFI de chez vous, et l'activation sera automatique.", - "ButtonForYou": "Pour vous", - "ButtonLibrary": "Biblioth\u00e8que", - "ButtonSearch": "Recherche", - "ButtonNowPlaying": "En cours de lecture", - "ButtonViewNewApp": "Voir la nouvelle application", - "HeaderEmbyForAndroidHasMoved": "Emby pour Android a d\u00e9m\u00e9nag\u00e9 !", - "MessageEmbyForAndroidHasMoved": "Emby pour Android a \u00e9t\u00e9 d\u00e9plac\u00e9 vers une nouvelle page d'accueil de l'App Store. Vous pourriez \u00eatre int\u00e9ress\u00e9 par cette nouvelle version et vous pouvez continuer \u00e0 l'utiliser autant de temps que vous voulez.", - "HeaderNextUp": "Prochains \u00e0 voir", - "HeaderLatestMovies": "Films les plus r\u00e9cents", - "HeaderLatestEpisodes": "\u00c9pisodes les plus r\u00e9cents", - "EmbyPremiereMonthly": "Emby Premi\u00e8re mensuel", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere {0} mensuel", - "HeaderEmailAddress": "Adresse email", - "TextPleaseEnterYourEmailAddressForSubscription": "Merci d'entrer votre adresse email.", - "LoginDisclaimer": "Emby est con\u00e7u pour vous aider \u00e0 g\u00e9rer votre biblioth\u00e8que de m\u00e9dias personnels, tels que les vid\u00e9os et les photos. Veuillez lire nos conditions d'utilisation. L'utilisation de tout logiciel Emby implique que vous acceptiez ces conditions.", - "TermsOfUse": "Conditions d'utilisation", - "HeaderTryMultiSelect": "Essayer la s\u00e9lection multiple", - "TryMultiSelectMessage": "Pour modifier plusieurs \u00e9l\u00e9ments m\u00e9dias, il suffit de cliquer et maintenir le clic sur n'importe quel poster et de s\u00e9lectionner les \u00e9lements que vous voulez g\u00e9rer. Essayer le !", - "NumLocationsValue": "{0} dossiers", - "ButtonAddMediaLibrary": "Ajouter une biblioth\u00e8que de m\u00e9dia", - "ButtonManageFolders": "G\u00e9rer les dossiers", - "HeaderTryDragAndDrop": "Essayer le glisser-d\u00e9poser", - "TryDragAndDropMessage": "Pour r\u00e9organiser les \u00e9l\u00e9ments de la playlist, faite juste un glisser \/ d\u00e9poser. Essayez le !", - "HeaderTryMicrosoftEdge": "Essayer Microsoft Edge", - "MessageTryMicrosoftEdge": "Pour une meilleure exp\u00e9rience sur Windows 10, essayez le nouveau navigateur Microsoft Edge.", - "HeaderTryModernBrowser": "Essayer avec un Navigateur Internet moderne", - "MessageTryModernBrowser": "Pour une meilleure exp\u00e9rience sur Windows, essayez un navigateur internet comme Google Chrome, Firefox, ou Opera", - "ErrorAddingListingsToSchedulesDirect": "Une erreur est survenue pendant l'ajout de la synchronisation avec votre compte Schedules Direct. Schedules Direct autorise uniquement un nombre limit\u00e9 de sunchronisation par compte. Vous devez vous connecter \u00e0 votre site Schedules Direct et supprimer d'autres taches de la liste depuis votre compte avant de pouvoir r\u00e9essayer.", - "PleaseAddAtLeastOneFolder": "Veuillez ajouter au moins un dossier \u00e0 cette biblioth\u00e8que en cliquant sur le bouton Ajouter.", - "ErrorAddingMediaPathToVirtualFolder": "Une erreur est survenue pendant l'ajout du chemin des m\u00e9dias. Veuillez v\u00e9rifier que le chemin est valide et que le processus Serveur Emby peux y acc\u00e9der.", - "ErrorRemovingEmbyConnectAccount": "Une erreur est survenue pendant la suppression du compte Emby Connect. Veuillez vous assurer que vous avez une connection internet active puis r\u00e9\u00e9ssayez.", - "ErrorAddingEmbyConnectAccount1": "Une erreur est survenue lorsque vous avez ajout\u00e9 votre compte Emby Connect. Vous \u00eates-vous cr\u00e9\u00e9 un compte Emby? Inscrivez-vous sur {0}.", - "ErrorAddingEmbyConnectAccount2": "Veuillez vous assurez que votre compte Emby a bien \u00e9t\u00e9 activ\u00e9 avec les instructions fournies dans l'email envoy\u00e9 apr\u00e8s la cr\u00e9ation de votre compte. Si vous n'avez pas re\u00e7u l'email veuillez envoyer un mail \u00e0 {0} avec l'adresse utilis\u00e9e lors de la cr\u00e9ation de votre compte Emby.", - "HeaderFavoriteArtists": "Artistes pr\u00e9f\u00e9r\u00e9s", - "HeaderFavoriteSongs": "Chansons pr\u00e9f\u00e9r\u00e9es", - "HeaderConfirmPluginInstallation": "Confirmer l'installation du plugin", - "PleaseConfirmPluginInstallation": "Merci de cliquer sur OK pour confirmer que vous avez lu ce qui pr\u00e9c\u00e8de et que vous souhaitez poursuivre l'installation du plugin.", - "MessagePluginInstallDisclaimer": "Les plugins d\u00e9velopp\u00e9s par les membres de la communaut\u00e9 Emby sont une excellente mani\u00e8re d'am\u00e9liorer votre exp\u00e9rience Emby avec de nouvelles fonctionnalit\u00e9s et b\u00e9n\u00e9fices. Avant d'installer, veuillez prendre connaissance des impacts sur le serveur Emby, comme l'augmentation de la dur\u00e9e du scan de la biblioth\u00e8que de m\u00e9dias, de nouveaux process en t\u00e2che de fond, ou une moins bonne stabilit\u00e9 du syst\u00e8me.", - "ButtonPlayOneMinute": "Jouer une minute", - "ThankYouForTryingEnjoyOneMinute": "Profitez d'une minute de retour en arri\u00e8re. Merci d'avoir utilis\u00e9 Emby.", - "HeaderTryPlayback": "Essayer Playback", - "HeaderBenefitsEmbyPremiere": "Avantages de Emby Premiere", - "MobileSyncFeatureDescription": "Synchroniser votre contenu multim\u00e9dia sur vos t\u00e9l\u00e9phones et tablettes pour y acc\u00e9der facilement hors-connexion.", - "CoverArtFeatureDescription": "Cover Art cr\u00e9\u00e9 des couvertures amusantes et d'autres traitements pour vous aider \u00e0 personnaliser les pochettes de votre contenu multim\u00e9dia.", - "HeaderMobileSync": "Synchronisation mobile", - "HeaderCloudSync": "Synchronisation dans le cloud", - "CloudSyncFeatureDescription": "Synchroniser votre contenu multim\u00e9dia dans le cloud, pour facilement le sauvegarder, l'archiver, et le convertir.", - "HeaderFreeApps": "Applications Emby gratuites", - "FreeAppsFeatureDescription": "Profiter d'un acc\u00e8s gratuit \u00e0 certaines applications Emby sur votre appareil.", - "HeaderCinemaMode": "Mode cin\u00e9ma", - "CinemaModeFeatureDescription": "Le mode Cin\u00e9ma, vous donne l'exp\u00e9rience d'une vraie salle, avec des bandes annonces, et des introductions avant le film.", - "CoverArt": "Pochette", - "ButtonOff": "Arr\u00eat", - "TitleHardwareAcceleration": "Acc\u00e9l\u00e9ration mat\u00e9rielle", - "HardwareAccelerationWarning": "L'activation mat\u00e9rielle peut causer des instabilit\u00e9s dans certains environnements. Si vous avez des difficult\u00e9s pour lire des vid\u00e9os apr\u00e8s l'avoir activ\u00e9, vous devrez changer les param\u00e8tres de l\u2019acc\u00e9l\u00e9ration en automatique.", - "HeaderSelectCodecIntrosPath": "Choisir le chemin du codec des intros", - "ButtonLocalRefresh": "Actualisation locale", - "ButtonAddMissingData": "Ajouter uniquement les donn\u00e9es manquantes", - "ButtonFullRefresh": "Actualisation totale", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/gsw.json b/dashboard-ui/strings/javascript/gsw.json deleted file mode 100644 index 6da7185c2e..0000000000 --- a/dashboard-ui/strings/javascript/gsw.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Erleb di ganze Bonis", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Gmachti Spende ch\u00f6nt jederziit abbroche werde mithilf vo dim PayPal Account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Mitteilige", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "User", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Speichere", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Zur Sammlig hinzue f\u00fcege", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Biispell: Star Wars Sammlig", - "OptionSearchForInternetMetadata": "Dursuechs Internet nach Bilder und Metadate", - "LabelSelectCollection": "W\u00e4hl Sammlig:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Mach d'Tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Gr\u00e4t Zuegriff", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sonntig", - "OptionMonday": "M\u00e4ntig", - "OptionTuesday": "Tsischtig", - "OptionWednesday": "Mittwoch", - "OptionThursday": "Donnstig", - "OptionFriday": "Friitig", - "OptionSaturday": "Samstig", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Fortsetze", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "OK", - "ButtonCancel": "Abbreche", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Beendent", - "OptionContinuing": "Fortlaufend", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Altersfriigab", - "OptionPeople": "People", - "OptionRuntime": "Laufziit", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadate", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Erwiitert", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "Neu", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Film", - "FolderTypeMusic": "Musig", - "FolderTypeAdultVideos": "Erwachseni Film", - "FolderTypePhotos": "F\u00f6teli", - "FolderTypeMusicVideos": "Musigvideos", - "FolderTypeHomeVideos": "Heimvideos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "B\u00fcecher", - "FolderTypeTvShows": "TV", - "TabMovies": "Film", - "TabSeries": "Series", - "TabEpisodes": "Episode", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albene", - "TabSongs": "Songs", - "TabMusicVideos": "Musigvideos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Mitteilige", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "synchronisiere", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Postercharte", - "OptionTimeline": "Ziitlinie", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumbcharte", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sortier nach:", - "HeaderSortOrder": "Sortier Reihefolg:", - "OptionAscending": "Ufstiigend", - "OptionDescending": "Abstiigend", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Datum", - "OptionImdbRating": "IMDB Bewertig", - "OptionDatePlayed": "Abgspellt am", - "OptionDateAdded": "Dezue gf\u00fcegt am", - "OptionPlayCount": "Z\u00e4hler", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album-Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Bewertig", - "ButtonSort": "Sortiere", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Kritiker Bewertig", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "iinahme", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Als n\u00f6chsts", - "HeaderLatestMovies": "Letschti Film", - "HeaderLatestEpisodes": "Letschti Episode", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/he.json b/dashboard-ui/strings/javascript/he.json deleted file mode 100644 index 2a3646d3bc..0000000000 --- a/dashboard-ui/strings/javascript/he.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "\u05d4\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05e9\u05de\u05e8\u05d5.", - "AddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9", - "Users": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", - "Delete": "\u05de\u05d7\u05e7", - "Administrator": "\u05de\u05e0\u05d4\u05dc", - "Password": "\u05e1\u05d9\u05e1\u05de\u05d0", - "DeleteImage": "\u05de\u05d7\u05e7 \u05ea\u05de\u05d5\u05e0\u05d4", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05de\u05d7\u05d5\u05e7 \u05ea\u05de\u05d5\u05e0\u05d4 \u05d6\u05d5?", - "FileReadCancelled": "\u05e7\u05e8\u05d9\u05d0\u05ea \u05d4\u05e7\u05d5\u05d1\u05e5 \u05d1\u05d5\u05d8\u05dc\u05d4.", - "FileNotFound": "\u05e7\u05d5\u05d1\u05e5 \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0.", - "FileReadError": "\u05d7\u05dc\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e7\u05e8\u05d9\u05d0\u05ea \u05d4\u05e7\u05d5\u05d1\u05e5.", - "DeleteUser": "\u05de\u05d7\u05e7 \u05de\u05e9\u05ea\u05de\u05e9", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "\u05d4\u05e1\u05d9\u05e1\u05de\u05d0 \u05d0\u05d5\u05e4\u05e1\u05d4.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d0\u05e4\u05e1 \u05d0\u05ea \u05d4\u05e1\u05d9\u05e1\u05de\u05d0?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "\u05d4\u05e1\u05d9\u05e1\u05de\u05d0 \u05e0\u05e9\u05de\u05e8\u05d4.", - "PasswordMatchError": "\u05d4\u05e1\u05d9\u05e1\u05de\u05d0 \u05d5\u05d0\u05d9\u05de\u05d5\u05ea \u05d4\u05e1\u05d9\u05e1\u05de\u05d0 \u05e6\u05e8\u05d9\u05db\u05d5\u05ea \u05dc\u05d4\u05d9\u05d5\u05ea \u05d6\u05d4\u05d5\u05ea.", - "OptionRelease": "\u05e9\u05d9\u05d7\u05e8\u05d5\u05e8 \u05e8\u05e9\u05de\u05d9", - "OptionBeta": "\u05d1\u05d8\u05d0", - "OptionDev": "\u05de\u05e4\u05ea\u05d7 (\u05dc\u05d0 \u05d9\u05e6\u05d9\u05d1)", - "UninstallPluginHeader": "\u05d4\u05e1\u05e8 \u05ea\u05d5\u05e1\u05e3", - "UninstallPluginConfirmation": "\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d1\u05e8\u05e6\u05d5\u05e0\u05da \u05dc\u05d4\u05e1\u05d9\u05e8 {0}?", - "NoPluginConfigurationMessage": "\u05dc\u05ea\u05d5\u05e1\u05e3 \u05d4\u05d6\u05d4 \u05d0\u05d9\u05df \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05de\u05d9\u05d5\u05d7\u05d3\u05d5\u05ea.", - "NoPluginsInstalledMessage": "\u05d0\u05d9\u05df \u05dc\u05da \u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05de\u05d5\u05ea\u05e7\u05e0\u05d9\u05dd.", - "BrowsePluginCatalogMessage": "\u05e2\u05d1\u05d5\u05e8 \u05dc\u05e7\u05d8\u05dc\u05d5\u05d2 \u05d4\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05dc\u05e8\u05d0\u05d5\u05ea \u05d0\u05d9\u05dc\u05d5 \u05d6\u05de\u05d9\u05e0\u05d9\u05dd.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d9\u05d4", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "\u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "\u05e9\u05de\u05d5\u05e8", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "\u05d0\u05d5\u05e4\u05e1\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd", - "NewCollectionNameExample": "\u05dc\u05d3\u05d5\u05d2\u05de\u05d0 :\u05d0\u05d5\u05e1\u05e3 \u05de\u05dc\u05d7\u05de\u05ea \u05d4\u05db\u05d5\u05db\u05d1\u05d9\u05dd", - "OptionSearchForInternetMetadata": "\u05d7\u05e4\u05e9 \u05d1\u05d0\u05d9\u05e0\u05e8\u05e0\u05d8 \u05d0\u05d7\u05e8\u05d9 \u05de\u05d9\u05d3\u05e2 \u05d5\u05ea\u05de\u05d5\u05e0\u05d5\u05ea", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "\u05dc-", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "\u05e0\u05d2\u05df", - "ButtonEdit": "\u05e2\u05e8\u05d5\u05da", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "\u05db\u05dc \u05d4\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "\u05e8\u05d0\u05e9\u05d5\u05df", - "OptionMonday": "\u05e9\u05e0\u05d9", - "OptionTuesday": "\u05e9\u05dc\u05d9\u05e9\u05d9", - "OptionWednesday": "\u05e8\u05d1\u05d9\u05e2\u05d9", - "OptionThursday": "\u05d7\u05de\u05d9\u05e9\u05d9", - "OptionFriday": "\u05e9\u05d9\u05e9\u05d9", - "OptionSaturday": "\u05e9\u05d1\u05ea", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "\u05d4\u05de\u05e9\u05da", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "\u05d4\u05d5\u05e1\u05e3", - "ButtonRemove": "\u05d4\u05e1\u05e8", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "\u05e2\u05d3\u05db\u05df \u05e2\u05db\u05e9\u05d9\u05d5", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "\u05d0\u05e9\u05e8", - "ButtonCancel": "\u05d1\u05d8\u05dc", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "\u05e1\u05e6\u05e0\u05d5\u05ea", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "\u05e9\u05dd", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd", - "HeaderMediaFolders": "\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05de\u05d3\u05d9\u05d4", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d1\u05e9\u05d9\u05d3\u05d5\u05e8 \u05d9\u05e9\u05d9\u05e8", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "\u05d4\u05e1\u05ea\u05d9\u05d9\u05dd", - "OptionContinuing": "\u05de\u05de\u05e9\u05d9\u05da", - "OptionOff": "\u05db\u05d1\u05d5\u05d9", - "OptionOn": "\u05e4\u05d5\u05e2\u05dc", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "\u05e9\u05d9\u05d3\u05d5\u05e8 \u05d9\u05e9\u05d9\u05e8", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d1\u05e7\u05e8\u05ea \u05d4\u05d5\u05e8\u05d9\u05dd", - "OptionPeople": "People", - "OptionRuntime": "\u05de\u05e9\u05da", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "\u05d4\u05ea\u05d7\u05e8 \u05de\u05d7\u05d3\u05e9", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "\u05e9\u05e8\u05ea", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "\u05e9\u05d9\u05d3\u05d5\u05e8 \u05d9\u05e9\u05d9\u05e8", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "\u05de\u05ea\u05e7\u05d3\u05dd", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "\u05d1\u05d7\u05e8", - "ButtonNew": "\u05d7\u05d3\u05e9", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "\u05e9\u05dd:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05dc\u05de\u05d1\u05d5\u05d2\u05e8\u05d9\u05dd", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "\u05d8\u05dc\u05d5\u05d9\u05d6\u05d9\u05d4", - "TabMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", - "TabSeries": "\u05e1\u05d3\u05e8\u05d5\u05ea", - "TabEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd", - "TabTrailers": "\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8\u05d9\u05dd", - "TabGames": "\u05de\u05e9\u05d7\u05e7\u05d9\u05dd", - "TabAlbums": "\u05d0\u05dc\u05d1\u05d5\u05de\u05d9\u05dd", - "TabSongs": "\u05e9\u05d9\u05e8\u05d9\u05dd", - "TabMusicVideos": "\u05e7\u05dc\u05d9\u05e4\u05d9\u05dd", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "\u05de\u05d7\u05e7", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "\u05d4\u05ea\u05e8\u05d0\u05d5\u05ea", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "\u05de\u05d9\u05d3\u05e2", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05e4\u05e8\u05d9\u05d8\u05d9\u05dd", - "ButtonManageServer": "\u05e0\u05d4\u05dc \u05e9\u05e8\u05ea", - "ButtonEditSubtitles": "\u05e2\u05e8\u05d5\u05da \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "\u05e6\u05e4\u05d4 \u05d1\u05d0\u05de\u05df", - "ButtonViewAlbum": "\u05e6\u05e4\u05d4 \u05d1\u05d0\u05dc\u05d1\u05d5\u05dd", - "ButtonEditImages": "\u05e2\u05e8\u05d5\u05da \u05ea\u05de\u05d5\u05e0\u05d5\u05ea", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "\u05e9\u05dd \u05d4\u05de\u05e9\u05ea\u05de\u05e9 \u05ea\u05e4\u05d5\u05e1. \u05d0\u05e0\u05d0 \u05d1\u05d7\u05e8 \u05e9\u05dd \u05de\u05e9\u05ea\u05de\u05e9 \u05d7\u05d3\u05e9 \u05d5\u05e0\u05e1\u05d4 \u05e9\u05d5\u05d1", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "\u05e9\u05ea\u05e3", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "\u05e9\u05ea\u05e3", - "HeaderConfirm": "\u05d0\u05e9\u05e8", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\u05e4\u05d5\u05e1\u05d8\u05e8", - "OptionPosterCard": "Poster card", - "OptionTimeline": "\u05e6\u05d9\u05e8 \u05d6\u05de\u05df", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "\u05d1\u05d0\u05e0\u05e8", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "\u05d4\u05e7\u05dc\u05d8", - "ButtonOther": "Other", - "HeaderSortBy": "\u05de\u05d9\u05d9\u05df \u05dc\u05e4\u05d9:", - "HeaderSortOrder": "\u05e1\u05d3\u05e8 \u05de\u05d9\u05d5\u05df:", - "OptionAscending": "\u05e1\u05d3\u05e8 \u05e2\u05d5\u05dc\u05d4", - "OptionDescending": "\u05e1\u05d3\u05e8 \u05d9\u05d5\u05e8\u05d3", - "OptionNameSort": "\u05e9\u05dd", - "OptionTvdbRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 Tvdb", - "OptionPremiereDate": "\u05ea\u05d0\u05e8\u05d9\u05da \u05e9\u05d9\u05d3\u05d5\u05e8 \u05e8\u05d0\u05e9\u05d5\u05df", - "OptionImdbRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 IMDb", - "OptionDatePlayed": "\u05ea\u05d0\u05e8\u05d9\u05da \u05e0\u05d9\u05d2\u05d5\u05df", - "OptionDateAdded": "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4", - "OptionPlayCount": "\u05de\u05e1\u05e4\u05e8 \u05d4\u05e9\u05de\u05e2\u05d5\u05ea", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "\u05d0\u05de\u05df \u05d0\u05dc\u05d1\u05d5\u05dd", - "OptionArtist": "\u05d0\u05de\u05df", - "OptionAlbum": "\u05d0\u05dc\u05d1\u05d5\u05dd", - "OptionTrackName": "\u05e9\u05dd \u05d4\u05e9\u05d9\u05e8", - "OptionCommunityRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05e7\u05d4\u05d9\u05dc\u05d4", - "ButtonSort": "\u05de\u05d9\u05d9\u05df", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "\u05de\u05e1\u05e0\u05df", - "OptionCriticRating": "\u05e6\u05d9\u05d5\u05df \u05de\u05d1\u05e7\u05e8\u05d9\u05dd", - "OptionVideoBitrate": "\u05e7\u05e6\u05ea \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5", - "OptionMetascore": "Metascore", - "OptionRevenue": "\u05d4\u05db\u05e0\u05e1\u05d5\u05ea", - "OptionBudget": "\u05ea\u05e7\u05e6\u05d9\u05d1", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05de\u05d5\u05e7\u05dc\u05d8\u05d5\u05ea", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "\u05db\u05df", - "ButtonNo": "\u05dc\u05d0", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "\u05d1\u05e9\u05d1\u05d9\u05dc\u05da", - "ButtonLibrary": "\u05e1\u05e4\u05e8\u05d9\u05d4", - "ButtonSearch": "\u05d7\u05d9\u05e4\u05d5\u05e9", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "\u05d4\u05d1\u05d0 \u05d1\u05ea\u05d5\u05e8", - "HeaderLatestMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", - "HeaderLatestEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "\u05d0\u05e0\u05d0 \u05d4\u05db\u05e0\u05e1 \u05d0\u05ea \u05db\u05ea\u05d5\u05d1\u05ea \u05d4\u05d3\u05d5\u05d0\"\u05dc \u05e9\u05dc\u05da", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "\u05ea\u05e0\u05d0\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "\u05e0\u05e1\u05d4 \u05d3\u05e4\u05d3\u05e4\u05df \u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05de\u05d5\u05d3\u05e8\u05e0\u05d9 \u05d5\u05e2\u05d3\u05db\u05e0\u05d9", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "\u05d0\u05de\u05e0\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd", - "HeaderFavoriteSongs": "\u05e9\u05d9\u05e8\u05d9\u05dd \u05de\u05d5\u05e2\u05d3\u05e4\u05d9\u05dd", - "HeaderConfirmPluginInstallation": "\u05d0\u05e9\u05e8 \u05d4\u05ea\u05e7\u05e0\u05ea \u05ea\u05d5\u05e1\u05e3", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "\u05de\u05e6\u05d1 \u05e7\u05d5\u05dc\u05e0\u05d5\u05e2", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/hr.json b/dashboard-ui/strings/javascript/hr.json deleted file mode 100644 index 2a406e2015..0000000000 --- a/dashboard-ui/strings/javascript/hr.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Postavke snimljene", - "AddUser": "Dodaj korisnika", - "Users": "Korisnici", - "Delete": "Izbri\u0161i", - "Administrator": "Administrator", - "Password": "Lozinka", - "DeleteImage": "Izbri\u0161i sliku", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Da li ste sigurni da \u017eelite izbrisati ovu sliku?", - "FileReadCancelled": "U\u010ditavanje datoteke je prekinuto.", - "FileNotFound": "Datoteka nije prona\u0111ena.", - "FileReadError": "Prilikom u\u010ditavanja datoteke desila se gre\u0161ka", - "DeleteUser": "Izbri\u0161i korisnika", - "DeleteUserConfirmation": "Da li ste sigurni da \u017eelite izbrisati odabranog korisnika?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "Lozinka je resetirana.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Da li ste sigurni da \u017eelite resetirati lozinku?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Lozinka snimljena.", - "PasswordMatchError": "Lozinka i lozinka potvrde moraju biti identi\u010dne.", - "OptionRelease": "Slu\u017ebeno izdanje", - "OptionBeta": "Beta", - "OptionDev": "Dev (nestabilno)", - "UninstallPluginHeader": "Ukloni dodatak", - "UninstallPluginConfirmation": "Da li ste sigurni da \u017eelite ukloniti {0}?", - "NoPluginConfigurationMessage": "Ovaj dodatak nema ni\u0161ta za podesiti.", - "NoPluginsInstalledMessage": "Nemate instaliranih dodataka.", - "BrowsePluginCatalogMessage": "Pregledajte dostupne dodatke u na\u0161em katalogu.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Automatski", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Korisnici", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Snimi", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "Nova kolekcija", - "NewCollectionNameExample": "Naprimjer: Star Wars Kolekcija", - "OptionSearchForInternetMetadata": "Potra\u017ei na internetu grafike i metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "Za", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Bez zvuka", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pauza", - "ButtonPlay": "Pokreni", - "ButtonEdit": "Izmjeni", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "Sve snimke", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Nedjelja", - "OptionMonday": "Ponedjeljak", - "OptionTuesday": "Utorak", - "OptionWednesday": "Srijeda", - "OptionThursday": "\u010cetvrtak", - "OptionFriday": "Petak", - "OptionSaturday": "Subota", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Nastavi", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Lista medija", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Dodaj", - "ButtonRemove": "Ukloni", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "A\u017euriraj sad", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Odustani", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scene", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Po\u010detna", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Ime", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Medijska mapa", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Zavr\u0161eno", - "OptionContinuing": "Nastavlja se", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Postavke", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Roditeljska ocjena", - "OptionPeople": "People", - "OptionRuntime": "Trajanje", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Ponovo pokreni", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Napredno", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Titlovi", - "ButtonScenes": "Scene", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Odaberi", - "ButtonNew": "Novo", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Ime:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Filmovi", - "TabSeries": "Series", - "TabEpisodes": "Epizode", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albumi", - "TabSongs": "Pjesme", - "TabMusicVideos": "Muzi\u010dki spotovi", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Izbri\u0161i", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Obavijesti", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Vremenska linija", - "OptionList": "List", - "OptionThumb": "Sli\u010dica", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Zaglavlje", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Snimi", - "ButtonOther": "Other", - "HeaderSortBy": "Slo\u017ei po:", - "HeaderSortOrder": "Redosljed slaganja:", - "OptionAscending": "Uzlazno", - "OptionDescending": "Silazno", - "OptionNameSort": "Nazivu", - "OptionTvdbRating": "Ocjeni Tvdb", - "OptionPremiereDate": "Datum premijere", - "OptionImdbRating": "IMDb ocjena", - "OptionDatePlayed": "Datumu izvo\u0111enja", - "OptionDateAdded": "Datumu dodavanja", - "OptionPlayCount": "Broju izvo\u0111enja", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Albumu izvo\u0111a\u010da", - "OptionArtist": "Izvo\u0111a\u010du", - "OptionAlbum": "Albumu", - "OptionTrackName": "Nazivu pjesme", - "OptionCommunityRating": "Ocjeni zajednice", - "ButtonSort": "Slo\u017ei", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Ocjeni kritike", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Prihod", - "OptionBudget": "Bud\u017eet", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Tra\u017ei", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Sljede\u0107e je", - "HeaderLatestMovies": "Zadnji Filmovi", - "HeaderLatestEpisodes": "Zadnje epizode", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/hu.json b/dashboard-ui/strings/javascript/hu.json deleted file mode 100644 index 3725c54843..0000000000 --- a/dashboard-ui/strings/javascript/hu.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Feliratok", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "N\u00e9v", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Speci\u00e1lis", - "HeaderTrailers": "El\u0151zetesek", - "HeaderAudio": "Audi\u00f3", - "HeaderResolution": "Felbont\u00e1s", - "HeaderVideo": "Vide\u00f3", - "HeaderRuntime": "Hossz", - "HeaderCommunityRating": "K\u00f6z\u00f6ss\u00e9gi \u00e9rt\u00e9kel\u00e9s", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Megjelen\u00e9s d\u00e1tuma", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "\u00c9vad", - "HeaderSeasonNumber": "\u00c9vad sz\u00e1ma", - "HeaderNetwork": "H\u00e1l\u00f3zat", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Be\u00e1gyazott k\u00e9p", - "HeaderTrack": "S\u00e1v", - "HeaderDisc": "Lemez", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Filmek", - "FolderTypeMusic": "Zen\u00e9k", - "FolderTypeAdultVideos": "Feln\u0151tt vide\u00f3k", - "FolderTypePhotos": "F\u00e9nyk\u00e9pek", - "FolderTypeMusicVideos": "Zenei vide\u00f3k", - "FolderTypeHomeVideos": "H\u00e1zi vide\u00f3k", - "FolderTypeGames": "J\u00e1t\u00e9kok", - "FolderTypeBooks": "K\u00f6nyvek", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "K\u00fcl\u00f6nleges - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "Emberek", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albumok", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "S\u00e1vok", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/id.json b/dashboard-ui/strings/javascript/id.json deleted file mode 100644 index eb6ac76587..0000000000 --- a/dashboard-ui/strings/javascript/id.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "Untuk mengatur semua plugin, silahkan gunakan aplikasi web Emby.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/it.json b/dashboard-ui/strings/javascript/it.json deleted file mode 100644 index 64fdd00dd3..0000000000 --- a/dashboard-ui/strings/javascript/it.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settaggi salvati.", - "AddUser": "Aggiungi utente", - "Users": "Utenti", - "Delete": "Elimina", - "Administrator": "Amministratore", - "Password": "Password", - "DeleteImage": "Elimina immagine", - "MessageThankYouForSupporting": "Grazie per il tuo sostegno a Emby.", - "MessagePleaseSupportProject": "Per favore, sostieni Emby.", - "DeleteImageConfirmation": "Sei sicuro di voler eliminare questa immagine?", - "FileReadCancelled": "Il file letto \u00e8 stato cancellato.", - "FileNotFound": "File non trovato", - "FileReadError": "Errore durante la lettura del file.", - "DeleteUser": "Elimina utente", - "DeleteUserConfirmation": "Sei sicuro di voler eliminare questo utente", - "PasswordResetHeader": "Ripristina Password", - "PasswordResetComplete": "la password \u00e8 stata ripristinata.", - "PinCodeResetComplete": "Il codice PIN \u00e8 stato resettato", - "PasswordResetConfirmation": "Sei sicuro di voler ripristinare la password?", - "PinCodeResetConfirmation": "Sei sicuro di voler resettare il codice PIN?", - "HeaderPinCodeReset": "Resetta il codice PIN", - "PasswordSaved": "Password salvata.", - "PasswordMatchError": "Le password non coincidono.", - "OptionRelease": "Versione Ufficiale", - "OptionBeta": "Beta", - "OptionDev": "Dev (instabile)", - "UninstallPluginHeader": "Disinstalla Plugin", - "UninstallPluginConfirmation": "Sei sicuro di voler Disinstallare {0}?", - "NoPluginConfigurationMessage": "Questo Plugin non \u00e8 stato configurato.", - "NoPluginsInstalledMessage": "Non ci sono Plugins installati.", - "BrowsePluginCatalogMessage": "Sfoglia il catalogo dei Plugins.", - "HeaderNewApiKey": "Nuova Chiave Api", - "LabelAppName": "Nome app", - "LabelAppNameExample": "Esempio: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Concedere un permesso per applicazione al fine di comunicare con il Server Emby.", - "MessageKeyEmailedTo": "Chiave inviata all'email {0}.", - "MessageKeysLinked": "Chiave Collegata.", - "HeaderConfirmation": "Conferma", - "MessageKeyUpdated": "Grazie. La tua chiave Emby Premiere \u00e8 stata aggiornata.", - "MessageKeyRemoved": "Grazie. La tua chiave Emby Premiere \u00e8 stata rimossa.", - "HeaderSupportTheTeam": "Supporta il Team di Emby", - "TextEnjoyBonusFeatures": "Goditi le caratteristiche aggiuntive", - "TitleLiveTV": "Tv in diretta", - "ButtonCancelSyncJob": "Canc. Sincronizzazione", - "HeaderAddTag": "Aggiungi Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Seleziona vista", - "TitleSync": "Sincronizza", - "OptionAutomatic": "Automatico", - "HeaderSelectDate": "Seleziona la data", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identifica", - "HeaderIdentifyItem": "Identifica elemento", - "LabelRecurringDonationCanBeCancelledHelp": "Donazioni ricorrenti possono essere cancellati in qualsiasi momento dal tuo conto PayPal.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "I miei media", - "ButtonRemoveFromCollection": "Rimuovi da Collezione", - "LabelAutomaticUpdateLevel": "Livello di aggiornamento automatico:", - "LabelAutomaticUpdateLevelForPlugins": "Livello di aggiornamento automatico per i plugin:", - "TitleNotifications": "Notifiche", - "ErrorLaunchingChromecast": "Si \u00e8 verificato un errore all'avvio di chromecast. Assicurati che il tuo dispositivo sia connesso alla rete wireless.", - "MessageErrorLoadingSupporterInfo": "C'\u00e8 stato un errore nel caricamento delle informazioni dell'Emby Premiere. Per favore riprova pi\u00f9 tardi.", - "MessageLinkYourSupporterKey": "Collega la tua chiave Emby Premiere con {0} membri Emby Connect per godere dell'accesso gratuito alle seguenti app:", - "HeaderConfirmRemoveUser": "Cancellazione utente", - "MessageConfirmRemoveConnectSupporter": "Sei sicuro che vuoi rimuovere i benefici di Emby Premiere da questo utente?", - "ValueTimeLimitSingleHour": "Tempo limite: 1 ora", - "ValueTimeLimitMultiHour": "Tempo limite: {0} ore", - "HeaderUsers": "Utenti", - "PluginCategoryGeneral": "Generale", - "PluginCategoryContentProvider": "Fornitori di contenuti", - "PluginCategoryScreenSaver": "Salva schermo", - "PluginCategoryTheme": "Temi", - "PluginCategorySync": "Sincr.", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifiche", - "PluginCategoryMetadata": "Metadati", - "PluginCategoryLiveTV": "TV in diretta", - "PluginCategoryChannel": "Canali", - "HeaderSearch": "Ricerca", - "ValueDateCreated": "Data di creazione {0}", - "LabelArtist": "Artista", - "LabelMovie": "Film", - "LabelMusicVideo": "Video Musicali", - "LabelEpisode": "Episodio", - "LabelSeries": "Serie", - "LabelStopping": "Sto fermando", - "LabelCancelled": "(cancellato)", - "LabelFailed": "(fallito)", - "ButtonHelp": "Aiuto", - "ButtonSave": "Salva", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "In Coda", - "SyncJobStatusConverting": "Conversione", - "SyncJobStatusFailed": "Fallito", - "SyncJobStatusCancelled": "Cancellato", - "SyncJobStatusCompleted": "Sinc.to", - "SyncJobStatusReadyToTransfer": "Pronti a trasferire", - "SyncJobStatusTransferring": "Trasferimento", - "SyncJobStatusCompletedWithError": "Sincronizzato con errori", - "SyncJobItemStatusReadyToTransfer": "Pronti a trasferire", - "LabelCollection": "Collezione", - "HeaderAddToCollection": "Aggiungi alla Collezione", - "HeaderNewCollection": "Nuova collezione", - "NewCollectionNameExample": "Esempio: Collezione Star wars", - "OptionSearchForInternetMetadata": "Cerca su internet le immagini e i metadati", - "LabelSelectCollection": "Seleziona Collezione:", - "HeaderDevices": "Dispositivi", - "ButtonScheduledTasks": "Operazioni Pianificate", - "MessageItemsAdded": "Oggetti aggiunti", - "ButtonAddToCollection": "Aggiungi alla collezione", - "HeaderSelectCertificatePath": "Seleziona il percorso del Certificato", - "ConfirmMessageScheduledTaskButton": "Questa operazione viene eseguito normalmente automaticamente come un'attivit\u00e0 pianificata e non richiede alcun intervento manuale. Per configurare l'operazione pianificata, vedere:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "Sembra che al momento non avete applicazioni che supportano la sincronizzazione.", - "HeaderWelcomeToProjectServerDashboard": "Benvenuto nel Pannello di controllo del Server Emby", - "HeaderWelcomeToProjectWebClient": "Benvenuto in Emby", - "ButtonTakeTheTour": "Fai una visita", - "HeaderWelcomeBack": "Ben tornato!", - "TitlePlugins": "Plugin", - "ButtonTakeTheTourToSeeWhatsNew": "Fai un tour per vedere cosa \u00e8 cambiato", - "MessageNoSyncJobsFound": "Nessuna sincronizzazione pianificata. Creane una utilizzando i pulsanti sull'interfaccia web", - "HeaderLibraryAccess": "Accesso libreria", - "HeaderChannelAccess": "Accesso canali", - "HeaderDeviceAccess": "Accesso al dispositivo", - "HeaderSelectDevices": "Seleziona periferiche", - "ButtonCancelItem": "Cancella oggetto", - "ButtonQueueForRetry": "In attesa di riprovare", - "ButtonReenable": "Ri-abilita", - "ButtonLearnMore": "saperne di pi\u00f9", - "SyncJobItemStatusSyncedMarkForRemoval": "Selezionato per la rimozione", - "LabelAbortedByServerShutdown": "(Interrotto dallo spegnimento del server)", - "LabelScheduledTaskLastRan": "Ultima esecuzione {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Elimina Operazione pianificata", - "MessageDeleteTaskTrigger": "Sei sicuro di voler cancellare questo evento?", - "MessageNoPluginsInstalled": "Non hai plugin installati", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installato", - "LabelNumberReviews": "{0} Recensioni", - "LabelFree": "Gratis", - "HeaderTo": "A", - "HeaderPlaybackError": "Errore di riproduzione", - "MessagePlaybackErrorNotAllowed": "Al momento non sei autorizzato a riprodurre questo contenuto. Per favore contatta l'amministratore del sistema per ulteriori dettagli", - "MessagePlaybackErrorNoCompatibleStream": "Nessuna trasmissione compatibile \u00e8 al momento disponibile. Per favore riprova in seguito o contatta il tuo Amministratore di sistema per chiarimenti", - "MessagePlaybackErrorRateLimitExceeded": "La tua quota di riproduzione \u00e8 stata raggiunta. Per favore contatta l'amministratore del sistema per ulteriori dettagli", - "MessagePlaybackErrorPlaceHolder": "Il contenuto scelto non pu\u00f2 essere riprodotto su questo dispositivo", - "HeaderSelectAudio": "Seleziona audio", - "HeaderSelectSubtitles": "Seleziona sottotitoli", - "ButtonMarkForRemoval": "Rimuovi dal dispositivo", - "ButtonUnmarkForRemoval": "Annulla rimozione dal dispositivo", - "LabelDefaultStream": "(Predefinito)", - "LabelForcedStream": "(forzato)", - "LabelDefaultForcedStream": "(Predefinito\/Forzato)", - "LabelUnknownLanguage": "Lingua Sconosciuta", - "MessageConfirmSyncJobItemCancellation": "Sei sicuro di voler cancellare questo elemento?", - "ButtonMute": "Muto", - "ButtonUnmute": "Togli muto", - "ButtonStop": "Stop", - "ButtonNextTrack": "Traccia successiva", - "ButtonPause": "Pausa", - "ButtonPlay": "Riproduci", - "ButtonEdit": "Modifica", - "ButtonQueue": "In coda", - "ButtonPlayTrailer": "Visualizza Trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Traccia precedente", - "LabelEnabled": "Abilitato", - "LabelDisabled": "Disabilitato", - "ButtonMoreInformation": "Maggiori informazioni", - "LabelNoUnreadNotifications": "Nessuna notifica non letta", - "ButtonViewNotifications": "Vedi notifiche", - "ButtonMarkTheseRead": "Segna come lette", - "ButtonClose": "Chiudi", - "LabelAllPlaysSentToPlayer": "Tutti i play saranno inviati al riproduttore selezionato.", - "MessageInvalidUser": "Utente o password errato. Riprova", - "HeaderLoginFailure": "Errore di accesso", - "HeaderAllRecordings": "Tutte le registrazioni", - "RecommendationBecauseYouLike": "Perch\u00e9 ti piace {0}", - "RecommendationBecauseYouWatched": "Perch\u00e9 hai visto {0}", - "RecommendationDirectedBy": "Diretto da {0}", - "RecommendationStarring": "Protagonisti {0}", - "HeaderConfirmRecordingCancellation": "Conferma eliminazione registrazione", - "MessageConfirmRecordingCancellation": "Sei sicuro di voler cancellare questa registrazione?", - "MessageRecordingCancelled": "Registrazione eliminata.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Conferma cancellazione serie", - "MessageConfirmSeriesCancellation": "Sei sicuro di voler cancellare questa serie?", - "MessageSeriesCancelled": "Serie cancellata", - "HeaderConfirmRecordingDeletion": "Conferma cancellazione registrazione", - "MessageConfirmRecordingDeletion": "Sei sicuro di voler cancellare questa registrazione?", - "MessageRecordingDeleted": "Registrazione eliminata", - "ButonCancelRecording": "Cancellazione registrazione", - "MessageRecordingSaved": "Salvataggio registrazione", - "OptionSunday": "Domenica", - "OptionMonday": "Luned\u00ec", - "OptionTuesday": "Marted\u00ec", - "OptionWednesday": "Mercoled\u00ec", - "OptionThursday": "Gioved\u00ec", - "OptionFriday": "Venerd\u00ec", - "OptionSaturday": "Sabato", - "OptionEveryday": "Tutti i giorni", - "OptionWeekend": "weekend", - "OptionWeekday": "Giorni feriali", - "HeaderConfirmDeletion": "Conferma Cancellazione", - "MessageConfirmPathSubstitutionDeletion": "Sei sicuro di voler cancellare questa sostituzione percorso?", - "LiveTvUpdateAvailable": "(Aggiornamento disponibile)", - "LabelVersionUpToDate": "Aggiornato!", - "ButtonResetTuner": "Riavvia scheda TV", - "HeaderResetTuner": "Riavvia Scheda TV", - "MessageConfirmResetTuner": "Sei sicuro di voler ripristinare questo sintonizzatore? Tutti i riproduttori attivi o registrazioni saranno bruscamente fermati.", - "ButtonCancelSeries": "Serie cancellate", - "HeaderSeriesRecordings": "Serie registrate", - "LabelAnytime": "Qualsiasi ora", - "StatusRecording": "Registrazione", - "StatusWatching": "Sto guardando", - "StatusRecordingProgram": "Registrando {0}", - "StatusWatchingProgram": "Guardando {0}", - "HeaderSplitMedia": "Dividi Media", - "MessageConfirmSplitMedia": "Sei sicuro di voler dividere le fonti dei media in voci separate?", - "HeaderError": "Errore", - "MessageChromecastConnectionError": "Il tuo ricevitore Chromecast non \u00e8 in grado di collegarsi al tuo Server Emby. Si prega di verificare la connessione e provare di nuovo", - "MessagePleaseSelectOneItem": "Si prega di selezionare almeno un elemento.", - "MessagePleaseSelectTwoItems": "Seleziona almeno due elementi.", - "MessageTheSelectedItemsWillBeGrouped": "I video selezionati verranno raggruppati in un unico elemento virtuale. Le app di Emby sceglieranno automaticamente quale versione riprodurre in base al dispositivo e alle prestazioni di rete. Sei sicuro di voler continuare?", - "HeaderResume": "Riprendi", - "HeaderMyViews": "Mie viste", - "HeaderLibraryFolders": "Cartelle dei mediati", - "HeaderLatestMedia": "Ultimi Media", - "ButtonMoreItems": "Pi\u00f9...", - "ButtonMore": "Dettagli", - "HeaderFavoriteMovies": "Film preferiti", - "HeaderFavoriteShows": "Show preferiti", - "HeaderFavoriteEpisodes": "Episodi preferiti", - "HeaderFavoriteGames": "Giochi preferiti", - "HeaderRatingsDownloads": "Voti \/ Download", - "HeaderConfirmProfileDeletion": "Conferma eliminazione profilo", - "MessageConfirmProfileDeletion": "Sei sicuro di voler cancellare questo profilo?", - "HeaderSelectServerCachePath": "Seleziona percorso Cache Server", - "HeaderSelectTranscodingPath": "Selezionare Percorso Temporaneo Transcodifica", - "HeaderSelectImagesByNamePath": "Selezionare Percorso Immagini Per Nome", - "HeaderSelectMetadataPath": "Selezionare Percorso Metadati", - "HeaderSelectServerCachePathHelp": "Sfoglia o immetti il percorso da utilizzare per i file di cache server. La cartella deve essere scrivibile", - "HeaderSelectTranscodingPathHelp": "Sfoglia o immettere il percorso da utilizzare per la transcodifica dei file temporanei. La cartella deve essere scrivibile.", - "HeaderSelectImagesByNamePathHelp": "Sfoglia oppure immettere il percorso per i vostri oggetti per nome cartella. La cartella deve essere scrivibile.", - "HeaderSelectMetadataPathHelp": "Sfoglia o inserire il percorso in cui vuoi archiviare i metadati. La cartella deve essere scrivibile.", - "HeaderSelectChannelDownloadPath": "Selezionare il percorso di download del Canale", - "HeaderSelectChannelDownloadPathHelp": "Sfoglia o immettere il percorso da utilizzare per memorizzare i file di cache del canale. La cartella deve essere scrivibile.", - "OptionNewCollection": "Nuovo...", - "ButtonAdd": "Aggiungi", - "ButtonRemove": "Rimuovi", - "LabelChapterDownloaders": "Downloader capitoli:", - "LabelChapterDownloadersHelp": "Abilitare e classificare le downloader capitoli preferiti in ordine di priorit\u00e0. I Downloader con priorit\u00e0 pi\u00f9 bassa saranno utilizzati solo per compilare le informazioni mancanti.", - "HeaderFavoriteAlbums": "Album preferiti", - "HeaderLatestChannelMedia": "Ultimi elementi aggiunti", - "ButtonOrganizeFile": "Organizza file", - "ButtonDeleteFile": "Elimina file", - "HeaderOrganizeFile": "Organizza file", - "HeaderDeleteFile": "Elimina file", - "StatusSkipped": "Salta", - "StatusFailed": "Fallito", - "StatusSuccess": "Successo", - "MessageFileWillBeDeleted": "Questo file sar\u00e0 eliminato:", - "MessageSureYouWishToProceed": "Sei sicuro ,Procedo?", - "MessageDuplicatesWillBeDeleted": "Inoltre saranno cancellati i seguenti duplicati:", - "MessageFollowingFileWillBeMovedFrom": "Il seguente file verr\u00e0 spostato da:", - "MessageDestinationTo": "A:", - "HeaderSelectWatchFolder": "Seleziona Cartella", - "HeaderSelectWatchFolderHelp": "Sfoglia o inserire il percorso della cartella controllata. La cartella deve essere scrivibile.", - "OrganizePatternResult": "Risultati: {0}", - "AutoOrganizeError": "Errore Organizzazione File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "C'\u00e8 stato un errore nell'organizzare il file. Codice errore {0} .", - "HeaderRestart": "Riavvia", - "HeaderShutdown": "Spegni", - "MessageConfirmRestart": "Sei sicuro di voler riavviare il Server Emby?", - "MessageConfirmShutdown": "Sei sicuro di voler spegnere il Server Emby?", - "ButtonUpdateNow": "Aggiorna Adesso", - "ValueItemCount": "{0} elemento", - "ValueItemCountPlural": "{0} elementi", - "NewVersionOfSomethingAvailable": "Una nuova versione di {0} \u00e8 disponibile!", - "VersionXIsAvailableForDownload": "Versione {0} \u00e8 ora disponibile per il download.", - "LabelVersionNumber": "Versione {0}", - "LabelPlayMethodTranscoding": "Trascodifica", - "LabelPlayMethodDirectStream": "Streaming Diretto", - "LabelPlayMethodDirectPlay": "Riproduzione Diretta", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Accesso locale {0}", - "LabelRemoteAccessUrl": "Accesso remoto: {0}", - "LabelRunningOnPort": "In esecuzione sulla porta HTTP {0}.", - "LabelRunningOnPorts": "In esecuzione sulla porta HTTP {0}, e porta HTTPS {1}", - "HeaderLatestFromChannel": "Ultime da {0}", - "LabelUnknownLanaguage": "lingua sconosciuta", - "HeaderCurrentSubtitles": "Sottotitoli correnti", - "MessageDownloadQueued": "Il download \u00e8 stato accodato.", - "MessageAreYouSureDeleteSubtitles": "Sei sicuro di voler cancellare questo file dei sottotitoli?", - "ButtonRemoteControl": "Telecomando", - "HeaderLatestTvRecordings": "Ultime registrazioni", - "ButtonOk": "OK", - "ButtonCancel": "Annulla", - "ButtonRefresh": "Aggiorna", - "LabelCurrentPath": "Percorso Corrente:", - "HeaderSelectMediaPath": "Seleziona il percorso", - "HeaderSelectPath": "Seleziona Percorso", - "ButtonNetwork": "Rete", - "MessageDirectoryPickerInstruction": "Percorsi di rete possono essere inseriti manualmente nel caso in cui il pulsante Rete non riesce a individuare i vostri dispositivi. Ad esempio, {0} o {1}", - "MessageDirectoryPickerBSDInstruction": "Per BSD, potrebbe essere necessario per configurare le unit\u00e0 all'interno della vostra prigione FreeNAS al fine di permettere ricamato accedervi.", - "MessageDirectoryPickerLinuxInstruction": "Per Linux, devi garantire all'utente di sistema Emby almeno l'accesso in lettura ai tuoi percorsi di archiviazione.", - "HeaderMenu": "Menu", - "ButtonOpen": "Apri", - "ButtonOpenInNewTab": "Apri in una nuova finestra", - "ButtonShuffle": "A caso", - "ButtonInstantMix": "Mix istantaneo", - "ButtonResume": "Riprendi", - "HeaderScenes": "Scene", - "HeaderAudioTracks": "Tracce audio", - "HeaderLibraries": "Librerie", - "HeaderSubtitles": "Sottotitoli", - "HeaderVideoQuality": "Qualit\u00e0 video", - "MessageErrorPlayingVideo": "Si \u00e8 verificato un errore nella riproduzione del video.", - "MessageEnsureOpenTuner": "Si prega di assicurarsi che ci sia un sintonizzatore disponibile.", - "ButtonHome": "Home", - "ButtonDashboard": "Pannello", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Manager Metadati", - "HeaderTime": "Tempo", - "HeaderName": "Nome", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Artista Album", - "HeaderArtist": "Artista", - "LabelAddedOnDate": "Aggiunto {0}", - "ButtonStart": "Avvio", - "HeaderChannels": "Canali", - "HeaderMediaFolders": "Cartelle dei media", - "HeaderBlockItemsWithNoRating": "Bloccare i contenuti senza valutazione:", - "OptionBlockOthers": "Altri", - "OptionBlockTvShows": "Serie TV", - "OptionBlockTrailers": "Trailer", - "OptionBlockMusic": "Musica", - "OptionBlockMovies": "Film", - "OptionBlockBooks": "Libri", - "OptionBlockGames": "Giochi", - "OptionBlockLiveTvPrograms": "Programmi TV in onda", - "OptionBlockLiveTvChannels": "Canali TV in onda", - "OptionBlockChannelContent": "Contenuto di Canali Internet", - "ButtonRevoke": "Revocare", - "MessageConfirmRevokeApiKey": "Sei sicuro di voler revocare questa chiave api? La connessione dell'applicazione al Server Emby terminer\u00e0 immediatamente", - "HeaderConfirmRevokeApiKey": "Revocare Chiave Api", - "ValueContainer": "Contenitore: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Condizioni: {0}", - "LabelAll": "Tutti", - "HeaderDeleteImage": "Cancella Immagine", - "MessageFileNotFound": "File non trovato.", - "MessageFileReadError": "Errore leggendo questo file", - "ButtonNextPage": "Prossima pagina", - "ButtonPreviousPage": "Pagina precedente", - "ButtonMoveLeft": "Muovi a sinistra", - "ButtonMoveRight": "Muovi a destra", - "ButtonBrowseOnlineImages": "Sfoglia le immagini Online", - "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?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Inserisci il nome o id esterno.", - "MessageValueNotCorrect": "Il valore inserito non \u00e8 corretto.Riprova di nuovo.", - "MessageItemSaved": "Elemento salvato.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Per favore accetta i termini di servizio prima di continuare.", - "OptionEnded": "Finito", - "OptionContinuing": "In corso", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Impostazioni", - "ButtonUninstall": "Disinstalla", - "HeaderEnabledFields": "campi abilitati", - "HeaderEnabledFieldsHelp": "Deselezionare un campo per bloccarlo e impedirgli di dati venga modificata.", - "HeaderLiveTV": "Tv in diretta", - "MissingLocalTrailer": "Trailer locali mancanti", - "MissingPrimaryImage": "Immagini principali locali mancanti", - "MissingBackdropImage": "Sfondi mancanti", - "MissingLogoImage": "Loghi mancanti", - "MissingEpisode": "Episodi mancanti", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Sfondi", - "OptionImages": "Immagini", - "OptionKeywords": "Parole", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Nome", - "OptionOverview": "Panoramica", - "OptionGenres": "Generi", - "OptionParentalRating": "Voto Genitori", - "OptionPeople": "Persone", - "OptionRuntime": "Durata", - "OptionProductionLocations": "Sedi di produzione", - "OptionBirthLocation": "Nascita Posizione", - "LabelAllChannels": "Tutti i canali", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "Nuovo", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Cambia il tipo di contenuto", - "HeaderChangeFolderTypeHelp": "Per modificare il tipo, rimuovere e ricostruire la raccolta con il nuovo tipo.", - "HeaderAlert": "Avviso", - "MessagePleaseRestart": "Si prega di riavviare per completare l'aggiornamento.", - "ButtonRestart": "Riavvia", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Nascondi", - "MessageSettingsSaved": "Settaggi salvati.", - "ButtonSignOut": "Esci", - "ButtonMyProfile": "Mio Profilo", - "ButtonMyPreferences": "Mie preferenze", - "MessageBrowserDoesNotSupportWebSockets": "Questo browser non supporta i socket web. Per una migliore esperienza, provare un browser pi\u00f9 recente come Chrome, Firefox, IE10 +, Safari (iOS) o Opera.", - "LabelInstallingPackage": "Installazione di {0}", - "LabelPackageInstallCompleted": "{0} completamento dell'installazione.", - "LabelPackageInstallFailed": "{0} installazione non \u00e8 riuscita.", - "LabelPackageInstallCancelled": "{0} installazione annullata.", - "TabServer": "Server", - "TabUsers": "Utenti", - "TabLibrary": "Librerie", - "TabMetadata": "Metadati", - "TabDLNA": "DLNA", - "TabLiveTV": "Tv indiretta", - "TabAutoOrganize": "Organizza Autom.", - "TabPlugins": "Plugins", - "TabAdvanced": "Avanzato", - "TabHelp": "Aiuto", - "TabScheduledTasks": "Operazioni pianificate", - "ButtonFullscreen": "Tutto schermo", - "ButtonAudioTracks": "Tracce audio", - "ButtonSubtitles": "Sottotitoli", - "ButtonScenes": "Scene", - "ButtonQuality": "Qualit\u00e0", - "HeaderNotifications": "Notifiche", - "HeaderSelectPlayer": "Utente selezionato :", - "ButtonSelect": "Seleziona", - "ButtonNew": "Nuovo", - "MessageInternetExplorerWebm": "Se utilizzi internet Explorer installa WebM plugin", - "HeaderVideoError": "Video Errore", - "ButtonAddToPlaylist": "Aggiungi alla playlist", - "HeaderAddToPlaylist": "Aggiungi alla playlist", - "LabelName": "Nome:", - "ButtonSubmit": "Invia", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "Nuova playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Vista", - "ButtonViewSeriesRecording": "Vista delle serie in registrazione", - "ValueOriginalAirDate": "Prima messa in onda (originale): {0}", - "ButtonRemoveFromPlaylist": "Rimuovi dalla playlist", - "HeaderSpecials": "Speciali", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Risoluzione", - "HeaderVideo": "Video", - "HeaderRuntime": "Durata", - "HeaderCommunityRating": "Voto Comunit\u00e0", - "HeaderPasswordReset": "Reset della Password", - "HeaderParentalRating": "Valutazione parentale", - "HeaderReleaseDate": "Data Rilascio", - "HeaderDateAdded": "Data aggiunta", - "HeaderSeries": "Series", - "HeaderSeason": "Stagione", - "HeaderSeasonNumber": "Stagione Numero", - "HeaderNetwork": "Rete", - "HeaderYear": "Anno", - "HeaderGameSystem": "Gioco Sistema", - "HeaderPlayers": "Giocatori", - "HeaderEmbeddedImage": "Immagine incorporata", - "HeaderTrack": "Traccia", - "HeaderDisc": "Disco", - "OptionMovies": "Film", - "OptionCollections": "Collezioni", - "OptionSeries": "Serie", - "OptionSeasons": "Stagioni", - "OptionEpisodes": "Episodi", - "OptionGames": "Giochi", - "OptionGameSystems": "Configurazione gioco", - "OptionMusicArtists": "Artisti", - "OptionMusicAlbums": "Album", - "OptionMusicVideos": "Video", - "OptionSongs": "Canzoni", - "OptionHomeVideos": "Video personali", - "OptionBooks": "Libri", - "OptionAdultVideos": "Video per adulti", - "ButtonUp": "Su", - "ButtonDown": "Giu", - "LabelMetadataReaders": "Lettori Metadati:", - "LabelMetadataReadersHelp": "Classificare le origini metadati locali preferite in ordine di priorit\u00e0. Il primo file trovato verr\u00e0 letto.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Abilitare e classificare i tuoi downloader metadati preferite in ordine di priorit\u00e0. Downloader di priorit\u00e0 inferiori saranno utilizzati solo per riempire le informazioni mancanti.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Scegliere i formati di file per salvare i metadati", - "LabelImageFetchers": "Immagini compatibili:", - "LabelImageFetchersHelp": "Abilitare e classificare i tuoi Fetchers immagini preferite in ordine di priorit\u00e0.", - "ButtonQueueAllFromHere": "Coda tutto da qui", - "ButtonPlayAllFromHere": "play tutto da qui", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identificare Elemento", - "PersonTypePerson": "Persona", - "LabelTitleDisplayOrder": "Titolo mostrato in ordine:", - "OptionSortName": "Nome ordinato", - "OptionReleaseDate": "data di rilascio", - "LabelSeasonNumber": "Stagione N\u00b0:", - "LabelDiscNumber": "Disco numero", - "LabelParentNumber": "Numero superiore", - "LabelEpisodeNumber": "Episodio N\u00b0:", - "LabelTrackNumber": "Traccia numero:", - "LabelNumber": "Numero:", - "LabelReleaseDate": "Data di rilascio:", - "LabelEndDate": "Fine data:", - "LabelYear": "Anno:", - "LabelDateOfBirth": "Data nascita:", - "LabelBirthYear": "Anno nascita:", - "LabelBirthDate": "Data nascita:", - "LabelDeathDate": "Anno morte:", - "HeaderRemoveMediaLocation": "Rimuovi percorso media", - "MessageConfirmRemoveMediaLocation": "Sei sicuro di voler rimuovere questa posizione?", - "HeaderRenameMediaFolder": "Rinomina cartella", - "LabelNewName": "Nuovo nome:", - "HeaderAddMediaFolder": "Aggiungi cartella", - "HeaderAddMediaFolderHelp": "Nome (film,musica,tv etc ):", - "HeaderRemoveMediaFolder": "Rimuovi cartella", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "I seguenti percorsi multimediali saranno rimossi dalla libreria:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Sei sicuro di voler rimuovere questa posizione?", - "ButtonRename": "Rinomina", - "ButtonChangeContentType": "Cambia tipo del contenuto", - "HeaderMediaLocations": "Posizioni Media", - "LabelContentTypeValue": "Tipo di contenuto {0}", - "LabelPathSubstitutionHelp": "Opzionale: cambio Path pu\u00f2 mappare i percorsi del server a condivisioni di rete che i clienti possono accedere per la riproduzione diretta.", - "FolderTypeUnset": "Disinserito (contenuto misto)", - "FolderTypeMovies": "Film", - "FolderTypeMusic": "Musica", - "FolderTypeAdultVideos": "Video per adulti", - "FolderTypePhotos": "Foto", - "FolderTypeMusicVideos": "Video musicali", - "FolderTypeHomeVideos": "Video personali", - "FolderTypeGames": "Giochi", - "FolderTypeBooks": "Libri", - "FolderTypeTvShows": "Tv", - "TabMovies": "Film", - "TabSeries": "Serie TV", - "TabEpisodes": "Episodi", - "TabTrailers": "Trailer", - "TabGames": "Giochi", - "TabAlbums": "Album", - "TabSongs": "Canzoni", - "TabMusicVideos": "Video Musicali", - "BirthPlaceValue": "Luogo di nascita: {0}", - "DeathDateValue": "Morto: {0}", - "BirthDateValue": "Nato: {0}", - "HeaderLatestReviews": "Ultime recensioni", - "HeaderPluginInstallation": "Installazione Plugin", - "MessageAlreadyInstalled": "Questa versione \u00e8 gi\u00e0 installata.", - "ValueReviewCount": "{0} recensioni", - "MessageYouHaveVersionInstalled": "Attualmente hai la versione {0} installato.", - "MessageTrialExpired": "Il periodo di prova per questa funzione \u00e8 scaduto.", - "MessageTrialWillExpireIn": "Il periodo di prova per questa funzione scadr\u00e0 in {0} giorni", - "MessageInstallPluginFromApp": "Questo Plugin deve essere installato dall'app in cui vuoi farlo funzionare", - "ValuePriceUSD": "Prezzo: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "Sei registrato per questa funzionalit\u00e0 e potrai continuare ad usarla con un abbonamento Emby Premiere attivo.", - "MessageChangeRecurringPlanConfirm": "Dopo aver completato questa transazione dovrai cancellare dal tuo account PayPal la tua precedente donazione ricorrente. Grazie per aver sostenuto Emby.", - "ButtonDelete": "Elimina", - "HeaderEmbyAccountAdded": "Account Emby aggiunto", - "MessageEmbyAccountAdded": "L'account Emby \u00e8 stato aggiunto a questo utente", - "MessagePendingEmbyAccountAdded": "L'account Emby \u00e8 stato aggiunto a questo utente. Un'email sar\u00e0 inviata al proprietario dell'account. L'invito dovr\u00e0 essere confermato selezionando il link contenuto nell'email", - "HeaderEmbyAccountRemoved": "Account Emby rimosso", - "MessageEmbyAccontRemoved": "L'account Emby \u00e8 stato rimosso da questo utente", - "TooltipLinkedToEmbyConnect": "Collegato ad Emby Connect", - "HeaderUnrated": "Non votato", - "ValueDiscNumber": "Disco {0}", - "HeaderUnknownDate": "Data Sconosciuta", - "HeaderUnknownYear": "Anno Sconosciuto", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play con un lettore esterno", - "HeaderSelectExternalPlayer": "Seleziona il lettore esterno", - "HeaderExternalPlayerPlayback": "Riproduzione con un player esterno", - "ButtonImDone": "Ho fatto", - "OptionWatched": "Visto", - "OptionUnwatched": "Non visto", - "ExternalPlayerPlaystateOptionsHelp": "Specificare come si desidera riprendere la riproduzione di questo video la prossima volta.", - "LabelMarkAs": "Segna come:", - "OptionInProgress": "In Corso", - "LabelResumePoint": "Punto di ripristino:", - "ValueOneMovie": "1 film", - "ValueMovieCount": "{0} film", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailer", - "ValueOneSeries": "1 serie", - "ValueSeriesCount": "{0} serie", - "ValueOneEpisode": "1 episodio", - "ValueEpisodeCount": "{0} episodi", - "ValueOneGame": "1 gioco", - "ValueGameCount": "{0} giochi", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} album", - "ValueOneSong": "1 canzone", - "ValueSongCount": "{0} Canzoni", - "ValueOneMusicVideo": "1 video musicale", - "ValueMusicVideoCount": "{0} video musicali", - "HeaderOffline": "Spento", - "HeaderUnaired": "mai in onda", - "HeaderMissing": "Assente", - "ButtonWebsite": "Web", - "TooltipFavorite": "Preferito", - "TooltipLike": "Bello", - "TooltipDislike": "Brutto", - "TooltipPlayed": "Visto", - "ValueSeriesYearToPresent": "{0}-Presenti", - "ValueAwards": "Premi: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Entrate: {0}", - "ValuePremiered": "Debuttato {0}", - "ValuePremieres": "Debuttato {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studi: {0}", - "ValueStatus": "Stato {0}", - "ValueSpecialEpisodeName": "Speciali - {0}", - "LabelLimit": "Limite:", - "ValueLinks": "Collegamenti: {0}", - "HeaderPeople": "Persone", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artista: {0}", - "ValueArtists": "Artisti: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera modello", - "MediaInfoAltitude": "Altitudine", - "MediaInfoAperture": "Apertura", - "MediaInfoExposureTime": "Tempo Esposizione", - "MediaInfoFocalLength": "Lunghezza focale", - "MediaInfoOrientation": "Orientamento", - "MediaInfoIsoSpeedRating": "Sensibilit\u00e0 ISO", - "MediaInfoLatitude": "latitudine", - "MediaInfoLongitude": "Longitudine", - "MediaInfoShutterSpeed": "velocit\u00e0 otturatore", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "Se ti piace {0}, guarda questi ...", - "HeaderPlotKeywords": "Trama", - "HeaderMovies": "Film", - "HeaderAlbums": "Album", - "HeaderGames": "Giochi", - "HeaderBooks": "Libri", - "HeaderEpisodes": "Episodi", - "HeaderSeasons": "Stagioni", - "HeaderTracks": "Traccia", - "HeaderItems": "Elementi", - "HeaderOtherItems": "Altri elmenti", - "ButtonFullReview": "Trama completa", - "ValueAsRole": "Come {0}", - "ValueGuestStar": "Personaggi famosi", - "MediaInfoSize": "Dimensione", - "MediaInfoPath": "Percorso", - "MediaInfoFile": "File", - "MediaInfoFormat": "Formato", - "MediaInfoContainer": "Contenitore", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forzato", - "MediaInfoExternal": "Esterno", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Formato Pixel", - "MediaInfoBitDepth": "Profondit\u00e0 Bit", - "MediaInfoSampleRate": "frequenza di campion.", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Canali", - "MediaInfoLayout": "disposizione", - "MediaInfoLanguage": "Lingua", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profilo", - "MediaInfoLevel": "Livello", - "MediaInfoAspectRatio": "Formato", - "MediaInfoResolution": "Risoluzione", - "MediaInfoAnamorphic": "Anamorfico", - "MediaInfoInterlaced": "Interlacciato", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Dati", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Sottotitolo", - "MediaInfoStreamTypeEmbeddedImage": "Immagine incorporata", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Riproduzione", - "TabNotifications": "Notifiche", - "TabExpert": "Esperto", - "HeaderSelectCustomIntrosPath": "Selezionare Intro Path Personalizzata", - "HeaderRateAndReview": "Punteggio e Commenti", - "HeaderThankYou": "Grazie", - "MessageThankYouForYourReview": "Grazie per la tua opinione.", - "LabelYourRating": "Il tuo voto:", - "LabelFullReview": "Recensione completa:", - "LabelShortRatingDescription": "Breve riassunto Valutazione:", - "OptionIRecommendThisItem": "Consiglio questo elemento", - "WebClientTourContent": "Visualizza i file multimediali aggiunti di recente, i prossimi episodi, e altro ancora. I cerchi verdi indicano quanti oggetti unplayed avete.", - "WebClientTourMovies": "Riprodurre filmati, trailer e altro da qualsiasi dispositivo con un browser web", - "WebClientTourMouseOver": "Tenete il mouse su ogni manifesto per un rapido accesso alle informazioni importanti", - "WebClientTourTapHold": "Toccare e tenere premuto o fare clic destro qualsiasi manifesto per un menu di scelta rapida", - "WebClientTourMetadataManager": "Fare clic su Modifica per aprire la gestione dei metadati", - "WebClientTourPlaylists": "Facile creazione di playlist , e riprodurli su qualsiasi dispositivo", - "WebClientTourCollections": "Creare collezioni di film di casella di gruppo imposta insieme", - "WebClientTourUserPreferences1": "Le Preferenze Utente consentono di personalizzare il modo in cui la tua libreria viene presentata in tutte le app Emby", - "WebClientTourUserPreferences2": "Configura le impostazioni audio e la lingua dei sottotitoli valide per tutte le app Emby", - "WebClientTourUserPreferences3": "Progettare la home page del client web a proprio piacimento", - "WebClientTourUserPreferences4": "Configurare fondali, sigle e lettori esterni", - "WebClientTourMobile1": "Il client web funziona alla grande su smartphone e tablet ...", - "WebClientTourMobile2": "e controlla facilmente altri dispositivi e app Emby", - "WebClientTourMySync": "Sincronizza il tuo personal media per i dispositivi per la visualizzazione offline.", - "MessageEnjoyYourStay": "Godetevi il vostro soggiorno", - "DashboardTourDashboard": "Il pannello di controllo del server consente di monitorare il vostro server e gli utenti. Potrai sempre sapere chi sta facendo cosa e dove sono.", - "DashboardTourHelp": "In-app help offre pulsanti facili da aprire le pagine wiki relative al contenuto sullo schermo.", - "DashboardTourUsers": "Facile creazione di account utente per i vostri amici e la famiglia, ognuno con le proprie autorizzazioni, accesso alla libreria, controlli parentali e altro ancora.", - "DashboardTourCinemaMode": "Modalit\u00e0 Cinema porta l'esperienza del teatro direttamente nel tuo salotto con la possibilit\u00e0 di giocare trailer e intro personalizzati prima la caratteristica principale.", - "DashboardTourChapters": "Abilita capitolo generazione di immagini per i vostri video per una presentazione pi\u00f9 gradevole durante la visualizzazione.", - "DashboardTourSubtitles": "Scaricare automaticamente i sottotitoli per i tuoi video in qualsiasi lingua.", - "DashboardTourPlugins": "Installare il plugin come canali internet video, live tv, scanner metadati e altro ancora.", - "DashboardTourNotifications": "Inviare automaticamente notifiche di eventi server al vostro dispositivo mobile, e-mail e altro ancora.", - "DashboardTourScheduledTasks": "Gestire facilmente le operazioni di lunga esecuzione con le operazioni pianificate. Decidere quando corrono, e con quale frequenza.", - "DashboardTourMobile": "Il Pannello di Controllo del Server Emby funziona bene su smartphone e tablet. Gestisci il tuo server con il palmo della tua mano, quando vuoi, dove vuoi", - "DashboardTourSync": "Sincronizza il tuo personal media per i dispositivi per la visualizzazione offline.", - "MessageRefreshQueued": "Aggiornamento programmato", - "TabDevices": "Dispositivi", - "TabExtras": "Extra", - "HeaderUploadImage": "Carica immagine", - "DeviceLastUsedByUserName": "Ultimo utilizzata da {0}", - "HeaderDeleteDevice": "Elimina dispositivo", - "DeleteDeviceConfirmation": "Sei sicuro di voler cancellare questo dispositivo? Esso riapparir\u00e0 la prossima volta che un utente accede con esso.", - "LabelEnableCameraUploadFor": "Abilita caricamento macchina fotografica per:", - "HeaderSelectUploadPath": "Seleziona cartella upload", - "LabelEnableCameraUploadForHelp": "Gli upload saranno eseguiti automaticamente in background quando sei collegato a Emby", - "ErrorMessageStartHourGreaterThanEnd": "Ora di fine deve essere maggiore del tempo di avvio.", - "ButtonLibraryAccess": "Accesso biblioteca", - "ButtonParentalControl": "Controllo parentale", - "HeaderInvitationSent": "Invito inviato", - "MessageInvitationSentToUser": "Una e-mail \u00e8 stata inviata a {0}, invitandoli ad accettare l'invito di condivisione.", - "MessageInvitationSentToNewUser": "Un'email \u00e8 stata inviata a {0} invitandolo a registrarsi a Emby", - "HeaderConnectionFailure": "Errore di connessione", - "MessageUnableToConnectToServer": "Non siamo in grado di connettersi al server selezionato al momento. Per favore assicurati che sia in esecuzione e riprova.", - "ButtonSelectServer": "Scegli Server", - "MessagePluginConfigurationRequiresLocalAccess": "Per configurare questo plugin si prega di accedere al proprio server locale direttamente.", - "MessageLoggedOutParentalControl": "L'accesso \u00e8 attualmente limitato. Si prega di riprovare pi\u00f9 tardi.", - "DefaultErrorMessage": "Si \u00e8 verificato un errore durante l'elaborazione della richiesta. Si prega di riprovare pi\u00f9 tardi.", - "ButtonAccept": "Accetta", - "ButtonReject": "Rifiuta", - "HeaderForgotPassword": "Password dimenticata", - "MessageContactAdminToResetPassword": "Si prega di contattare l'amministratore di sistema per reimpostare la password.", - "MessageForgotPasswordInNetworkRequired": "Riprova all'interno della rete domestica per avviare il processo di reimpostazione della password.", - "MessageForgotPasswordFileCreated": "Il seguente file \u00e8 stato creato sul server e contiene le istruzioni su come procedere:", - "MessageForgotPasswordFileExpiration": "Il pin scadr\u00e0 {0}.", - "MessageInvalidForgotPasswordPin": "Un pin Invalido o scaduto \u00e8 stato inserito. Riprova.", - "MessagePasswordResetForUsers": "Le password sono state rimosse dai seguenti utenti. Per accedere lasciare vuoto il campo password.", - "HeaderInviteGuest": "Invita Ospite", - "ButtonLinkMyEmbyAccount": "Collega il mio account ora", - "MessageConnectAccountRequiredToInviteGuest": "Per invitare gli amici \u00e8 necessario innanzitutto collegare l'account Emby a questo server.", - "ButtonSync": "Sinc.", - "SyncMedia": "Sync media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "La cancellazione dell'attivit\u00e0 di sincronizzazione causer\u00e0 la rimozione dal dispositivo dei media sincronizzati durante il prossimo processo di sincronizzazione. Sei sicuro di voler comunque procedere?", - "TabSync": "Sinc", - "MessagePleaseSelectDeviceToSyncTo": "Selezionare un dispositivo per la sincronizzazione", - "MessageSyncJobCreated": "Attivit\u00e0 di Sincronizz. Creata", - "LabelSyncTo": "Sincronizza su:", - "LabelSyncJobName": "Nome Attivit\u00e0 di Sincroniz.:", - "LabelQuality": "Qualit\u00e0:", - "HeaderSettings": "Configurazione", - "OptionAutomaticallySyncNewContent": "Sincronizza automaticamente nuovi contenuti", - "OptionAutomaticallySyncNewContentHelp": "Nuovi contenuti aggiunto verranno sincronizzati automaticamente al dispositivo.", - "OptionSyncUnwatchedVideosOnly": "Sincronizza solo i video non visti", - "OptionSyncUnwatchedVideosOnlyHelp": "Solo i video non visti saranno sincronizzati, e video saranno rimossi dal dispositivo in cui sono guardato.", - "LabelItemLimit": "limite elementi:", - "LabelItemLimitHelp": "Opzionale. Impostare un limite al numero di elementi che verranno sincronizzati.", - "MessageBookPluginRequired": "Richiede l'installazione del plugin Bookshelf", - "MessageGamePluginRequired": "Richiede l'installazione del plugin GameBrowser", - "MessageUnsetContentHelp": "Il contenuto verr\u00e0 visualizzato come pianura cartelle. Per ottenere i migliori risultati utilizzare il gestore di metadati per impostare i tipi di contenuto di sottocartelle.", - "SyncJobItemStatusQueued": "In coda", - "SyncJobItemStatusConverting": "Conversione", - "SyncJobItemStatusTransferring": "Trasferimento", - "SyncJobItemStatusSynced": "Sincronizzato", - "SyncJobItemStatusFailed": "Fallito", - "SyncJobItemStatusRemovedFromDevice": "Rimosso dal dispositivo", - "SyncJobItemStatusCancelled": "Cancellato", - "LabelProfile": "Profilo:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "Per scaricare e installare Emby server visita {0}.", - "ButtonNewServer": "Nuovo Server", - "ButtonSignInWithConnect": "Accedi con Emby Connect", - "HeaderNewServer": "Nuovo Server", - "MyDevice": "Mio dispositivo", - "ButtonRemote": "Remoto", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scene", - "HeaderUnlockApp": "Sblocca App", - "HeaderUnlockSync": "Sblocca Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Sblocca questa funzionalit\u00e0 con un piccolo acquisto singolo, o con un abbonamento Emby Premiere", - "MessageUnlockAppWithSupporter": "Sblocca questa funzionalit\u00e0 con un abbonamento Emby Premiere", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "I servizi di pagamento non sono attualmente disponibili. Per favore riprova pi\u00f9 tardi.", - "MessagePleaseSignInLocalNetwork": "Prima di procedere, assicurarsi che si \u00e8 connessi alla rete locale utilizzando una connessione WiFi o LAN.", - "ButtonUnlockWithPurchase": "Sbloccare con l'acquisto", - "ButtonUnlockPrice": "Sblocca {0}", - "MessageLiveTvGuideRequiresUnlock": "La Guida TV \u00e8 attualmente limitata a {0} canali. Premi il tasto di sblocco per imparare come goderti una piena esperienza.", - "OptionEnableFullscreen": "Abilita schermo intero", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Libreria", - "HeaderMedia": "Media", - "ButtonInbox": "Posta", - "HeaderAdvanced": "Avanzato", - "HeaderGroupVersions": "Versione di gruppo", - "HeaderSaySomethingLike": "Dire qualcosa di simile ...", - "ButtonTryAgain": "Riprova ancora", - "HeaderYouSaid": "Hai detto...", - "MessageWeDidntRecognizeCommand": "Ci dispiace, non riconosciamo il comando.", - "MessageIfYouBlockedVoice": "Se tu hai negato l'accesso all app avrai bisogno di reconfigurarlo prima di riprovarci.", - "MessageNoItemsFound": "Nessun elemento trovato.", - "ButtonManageServer": "Gestisci Server", - "ButtonEditSubtitles": "modificare i sottotitoli", - "ButtonPreferences": "Preferenze", - "ButtonViewArtist": "Visualizza artista", - "ButtonViewAlbum": "Visualizza album", - "ButtonEditImages": "Modifica Immagini", - "ErrorMessagePasswordNotMatchConfirm": "La password e la password di conferma devono corrispondere.", - "ErrorMessageUsernameInUse": "L' username \u00e8 gi\u00e0 usato. Per favore scegli un nuovo nome e riprova.", - "ErrorMessageEmailInUse": "L'indirizzo email \u00e8 gi\u00e0 usato.Per favore inserisci un nuovo indirizzo email e riprova, o usa la funzione password dimenticata.", - "MessageThankYouForConnectSignUp": "Grazie per esserti registrato si Emby Connect. Ti verr\u00e0 invita un email al tuo indirizzo con le istruzioni su come confermare il tuo nuovo account. Per favore conferma il nuovo account e poi ritorna qui per fare il log in.", - "HeaderShare": "Condividi", - "ButtonShareHelp": "Condividi una pagina web contenente informazioni multimediali con i social media. I file multimediali non verranno mai condivisi pubblicamente.", - "ButtonShare": "Condividi", - "HeaderConfirm": "Conferma", - "ButtonAdvancedRefresh": "Aggiornamento (avanzato)", - "MessageConfirmDeleteTunerDevice": "Sei sicuro di voler cancellare questo dispositivo?", - "MessageConfirmDeleteGuideProvider": "Sei sicuro di voler cancellare questo fornitore di guida?", - "HeaderDeleteProvider": "eliminare Provider", - "HeaderAddProvider": "aggiungere Provider", - "ErrorAddingTunerDevice": "Si \u00e8 verificato un errore durante l'aggiunta del sintonizzatore. Si prega di assicurarsi che sia accessibile e riprovare.", - "ErrorSavingTvProvider": "Si \u00e8 verificato un errore durante il salvataggio del fornitore di TV. Si prega di assicurarsi che sia accessibile e riprovare.", - "ErrorGettingTvLineups": "Si \u00e8 verificato un errore durante il download formazioni tv. Assicurarsi vostre informazioni sono corrette e riprovare.", - "MessageCreateAccountAt": "Crea un account a {0}", - "ErrorPleaseSelectLineup": "Si prega di selezionare una scaletta e riprova. Se non formazioni sono disponibili, quindi si prega di verificare che il vostro nome utente, password, e il codice postale \u00e8 corretto.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Ottieni Emby Premiere", - "ButtonClosePlayVideo": "Chiudi e avvia il mio media", - "MessageDidYouKnowCinemaMode": "Lo sapevi che con Emby Premiere puoi migilorare la tua esperienza con funzionalit\u00e0 come la Modalit\u00e0 Cinema?", - "MessageDidYouKnowCinemaMode2": "La Modalit\u00e0 Cinema ti d\u00e0 la vera una esperienza da cinema con trailers e intro personalizzati prima delle funzioni principali.", - "OptionEnableDisplayMirroring": "Abilita visualizzazione remota", - "HeaderSyncRequiresSupporterMembership": "Sincronizzazione richiede un abbonamento Emby Premiere attivo.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "La sincronizzazione richiede la connessione con Emby Server, e un abbonamento Emby Premiere attivo.", - "ErrorValidatingSupporterInfo": "C'\u00e8 stato un errore nella convalida delle informazioni sul tuo abonamento Emby Premiere. Riprova pi\u00f9 tardi.", - "HeaderSync": "Sincronizza", - "LabelLocalSyncStatusValue": "Stato {0}", - "MessageSyncStarted": "Sync iniziato", - "OptionPoster": "Locandina", - "OptionPosterCard": "Scheda locandina", - "OptionTimeline": "Cronologia", - "OptionList": "Lista", - "OptionThumb": "Pollice", - "OptionThumbCard": "carta Thumb", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "Non sono state trovate immagini della presentazione.", - "OptionPhotoSlideshow": "Foto presentazione", - "OptionBackdropSlideshow": "Scenografia presentazione", - "HeaderTopPlugins": "Migliori Plugins", - "ButtonRecord": "Registra", - "ButtonOther": "Altro", - "HeaderSortBy": "Ordina per:", - "HeaderSortOrder": "Ordina per:", - "OptionAscending": "Ascendente", - "OptionDescending": "Discentente", - "OptionNameSort": "Nome", - "OptionTvdbRating": "Voto Tvdb", - "OptionPremiereDate": "Data della prima", - "OptionImdbRating": "Voto IMDB", - "OptionDatePlayed": "Visto il", - "OptionDateAdded": "Aggiunto il", - "OptionPlayCount": "Visto N\u00b0", - "ButtonDisconnect": "Disconetti", - "OptionAlbumArtist": "Artista dell'album", - "OptionArtist": "Artista", - "OptionAlbum": "Album", - "OptionTrackName": "Nome Brano", - "OptionCommunityRating": "Voto del pubblico", - "ButtonSort": "Ordina", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Predefinito", - "ButtonFilter": "Filtro", - "OptionCriticRating": "Voto della critica", - "OptionVideoBitrate": "Bitrate Video", - "OptionMetascore": "Punteggio", - "OptionRevenue": "Recensione", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "Per ulteriori provider Live TV, fare clic sulla scheda Servizi Esterni per vedere le opzioni disponibili.", - "ButtonGuide": "Guida", - "ButtonRecordedTv": "Tv Registrata", - "HeaderDisconnectFromPlayer": "Disconnetti utente", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Si", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Ripristinare acquisto", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "Per te", - "ButtonLibrary": "libreria", - "ButtonSearch": "Cerca", - "ButtonNowPlaying": "In riproduzione ora", - "ButtonViewNewApp": "Vedi nuova app", - "HeaderEmbyForAndroidHasMoved": "Emby per Android \u00e8 altrove!", - "MessageEmbyForAndroidHasMoved": "Emby per Android ha una nuova casa nell'appo store. Dai un'occhiata alla nuova app. Puoi anche continuare a usare questa app fin che vuoi", - "HeaderNextUp": "Prossimo", - "HeaderLatestMovies": "Ultimi Film Aggiunti", - "HeaderLatestEpisodes": "Ultimi Episodi Aggiunti", - "EmbyPremiereMonthly": "Emby Premiere Mensile", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Mensile {0}", - "HeaderEmailAddress": "Indirizzo E-Mail", - "TextPleaseEnterYourEmailAddressForSubscription": "Per favore inserisci il tuo indirizzo e-mail.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Termini di utilizzo", - "HeaderTryMultiSelect": "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!", - "NumLocationsValue": "{0} cartelle", - "ButtonAddMediaLibrary": "Aggiungi raccolta multimediale", - "ButtonManageFolders": "Gestisci cartelle", - "HeaderTryDragAndDrop": "Prova il trascinamento", - "TryDragAndDropMessage": "Per riordinare gli elementi nella playlist trascinali nella posizione che vuoi. Prova!", - "HeaderTryMicrosoftEdge": "Prova Microsoft Edge", - "MessageTryMicrosoftEdge": "Per un'esperienza migliore su Windows 10, prova il browser Microsoft Edge.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "C'\u00e8 stato un errore nell'aggiunta della tua lista all'account Schedules Direct.\nSchedules Direct permette solo un numero limitato di selezioni per account. Potresti aver bisogno di accedere al sito Schedules Direct e rimuoverne alcune prima di procedere.", - "PleaseAddAtLeastOneFolder": "Per favore aggiungi almeno una cartella alla raccolta cliccando sul pulsante Aggiungi.", - "ErrorAddingMediaPathToVirtualFolder": "C'\u00e8 stato un errore durante l'aggiunta del percorso. Per favore controlla che sia valido, e che Emby Server abbia l'accesso alla posizione indicata.", - "ErrorRemovingEmbyConnectAccount": "C'\u00e8 stato un errore nella rimozione dell'account Emby Connect. Per favore assicurati di avere una connessione a internet attiva e riprova.", - "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Modalit\u00e0 cinema", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/javascript.json b/dashboard-ui/strings/javascript/javascript.json deleted file mode 100644 index 583c2fdc66..0000000000 --- a/dashboard-ui/strings/javascript/javascript.json +++ /dev/null @@ -1,975 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default/Forced)", - "LabelUnknownLanguage": "Unknown language", - "HeaderConfirmation": "Confirmation", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating / Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "ButtonDownload": "Download", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "LabelUnknownLanguage": "Unknown language", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "HeaderMediaFolders": "Media Folders", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "ButtonRefresh": "Refresh", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "ButtonRemove": "Remove", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderSeries": "Series", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} diff --git a/dashboard-ui/strings/javascript/kk.json b/dashboard-ui/strings/javascript/kk.json deleted file mode 100644 index d5175362d7..0000000000 --- a/dashboard-ui/strings/javascript/kk.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", - "AddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443", - "Users": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440", - "Delete": "\u0416\u043e\u044e", - "Administrator": "\u04d8\u043a\u0456\u043c\u0448\u0456", - "Password": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437", - "DeleteImage": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u043e\u044e", - "MessageThankYouForSupporting": "Emby \u0436\u0430\u049b\u0442\u0430\u0493\u0430\u043d\u044b\u04a3\u044b\u0437\u0493\u0430 \u0430\u043b\u0493\u044b\u0441.", - "MessagePleaseSupportProject": "Emby \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437.", - "DeleteImageConfirmation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0431\u04b1\u043b \u0441\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "FileReadCancelled": "\u0424\u0430\u0439\u043b \u043e\u049b\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.", - "FileNotFound": "\u0424\u0430\u0439\u043b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", - "FileReadError": "\u0424\u0430\u0439\u043b\u0434\u044b \u043e\u049b\u044b\u043f \u0436\u0430\u0442\u049b\u0430\u043d\u0434\u0430 \u049b\u0430\u0442\u0435 \u043f\u0430\u0439\u0434\u0430 \u0431\u043e\u043b\u0434\u044b.", - "DeleteUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "DeleteUserConfirmation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "PasswordResetHeader": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443", - "PasswordResetComplete": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437 \u044b\u0441\u044b\u0440\u044b\u043b\u0434\u044b.", - "PinCodeResetComplete": "PIN-\u043a\u043e\u0434 \u044b\u0441\u044b\u0440\u044b\u043b\u0434\u044b", - "PasswordResetConfirmation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "PinCodeResetConfirmation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d PIN-\u043a\u043e\u0434\u0442\u044b \u044b\u0441\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "HeaderPinCodeReset": "PIN-\u043a\u043e\u0434\u0442\u044b \u044b\u0441\u044b\u0440\u0443", - "PasswordSaved": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", - "PasswordMatchError": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456 \u043c\u0435\u043d \u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0440\u0430\u0441\u0442\u0430\u0443 \u04e9\u0440\u0456\u0441\u0442\u0435\u0440\u0456 \u0441\u04d9\u0439\u043a\u0435\u0441 \u0431\u043e\u043b\u0443 \u043a\u0435\u0440\u0435\u043a.", - "OptionRelease": "\u0420\u0435\u0441\u043c\u0438 \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u044b\u043c", - "OptionBeta": "\u0411\u0435\u0442\u0430 \u043d\u04b1\u0441\u049b\u0430", - "OptionDev": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443 (\u0442\u04b1\u0440\u0430\u049b\u0441\u044b\u0437)", - "UninstallPluginHeader": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "UninstallPluginConfirmation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d {0} \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "NoPluginConfigurationMessage": "\u041e\u0441\u044b \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435 \u0435\u0448\u0442\u0435\u04a3\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0435\u0442\u0456\u043d \u0436\u043e\u049b.", - "NoPluginsInstalledMessage": "\u041e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0436\u043e\u049b.", - "BrowsePluginCatalogMessage": "\u049a\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u0443 \u04af\u0448\u0456\u043d \u043f\u043b\u0430\u0433\u0438\u043d \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u043c\u0435\u0441\u0456\u043d \u0448\u043e\u043b\u044b\u04a3\u044b\u0437.", - "HeaderNewApiKey": "\u0416\u0430\u04a3\u0430 API-\u043a\u0456\u043b\u0442", - "LabelAppName": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0430\u0442\u044b", - "LabelAppNameExample": "\u041c\u044b\u0441\u0430\u043b\u044b: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Emby Server \u049b\u0430\u0440\u0430\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0441\u0443 \u049b\u04b1\u049b\u044b\u049b\u044b\u0493\u044b \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443.", - "MessageKeyEmailedTo": "\u041a\u0456\u043b\u0442 {0} \u04af\u0448\u0456\u043d \u044d\u043b\u0435\u043a\u0442\u0440\u043e\u043d\u0434\u044b \u043f\u043e\u0448\u0442\u0430\u043c\u0435\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0434\u0456.", - "MessageKeysLinked": "\u041a\u0456\u043b\u0442\u0442\u0435\u0440 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0434\u044b.", - "HeaderConfirmation": "\u0420\u0430\u0441\u0442\u0430\u0443", - "MessageKeyUpdated": "Emby Premiere \u043a\u0456\u043b\u0442\u0456\u04a3\u0456\u0437 \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b.", - "MessageKeyRemoved": "Emby Premiere \u043a\u0456\u043b\u0442\u0456\u04a3\u0456\u0437 \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0434\u044b.", - "HeaderSupportTheTeam": "Emby \u0442\u043e\u0431\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437", - "TextEnjoyBonusFeatures": "\u0421\u044b\u0439\u0430\u049b\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0434\u044b \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437", - "TitleLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414", - "ButtonCancelSyncJob": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "HeaderAddTag": "\u0422\u0435\u0433\u0442\u0456 \u049b\u043e\u0441\u0443", - "LabelTag": "\u0422\u0435\u0433:", - "ButtonSelectView": "\u041a\u04e9\u0440\u0456\u043d\u0456\u0441\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", - "TitleSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "OptionAutomatic": "\u0410\u0432\u0442\u043e\u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderSelectDate": "\u041a\u04af\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", - "ServerUpdateNeeded": "\u041e\u0441\u044b Emby Server \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442. \u0421\u043e\u04a3\u0493\u044b \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, {0} \u043a\u0456\u0440\u0456\u04a3\u0456\u0437", - "ButtonIdentify": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443", - "HeaderIdentifyItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0443", - "LabelRecurringDonationCanBeCancelledHelp": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b\u0442\u0430\u0440 PayPal \u0435\u0441\u0435\u043f \u0448\u043e\u0442\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u04d9\u0440 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0434\u0430 \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", - "LabelFromHelp": "\u041c\u044b\u0441\u0430\u043b: {0} (\u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435)", - "HeaderMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c", - "ButtonRemoveFromCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "LabelAutomaticUpdateLevel": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456:", - "LabelAutomaticUpdateLevelForPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443 \u0434\u0435\u04a3\u0433\u0435\u0439\u0456:", - "TitleNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440", - "ErrorLaunchingChromecast": "Chromecast \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u04a3\u044b\u0437 \u0441\u044b\u043c\u0441\u044b\u0437 \u0436\u0435\u043b\u0456\u0433\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.", - "MessageErrorLoadingSupporterInfo": "Emby Premiere \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0436\u04af\u043a\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "MessageLinkYourSupporterKey": "\u041a\u0435\u043b\u0435\u0441\u0456 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u0493\u0430 \u0442\u0435\u0433\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d Emby Premiere \u043a\u0456\u043b\u0442\u0456\u04a3\u0456\u0437\u0434\u0456 {0} \u0434\u0435\u0439\u0456\u043d Emby Connect \u043c\u04af\u0448\u0435\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437.", - "HeaderConfirmRemoveUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmRemoveConnectSupporter": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0434\u0430\u043d \u049b\u043e\u0441\u044b\u043c\u0448\u0430 Emby Premiere \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "ValueTimeLimitSingleHour": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456: 1 \u0441\u0430\u0493\u0430\u0442", - "ValueTimeLimitMultiHour": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456: {0} \u0441\u0430\u0493\u0430\u0442", - "HeaderUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440", - "PluginCategoryGeneral": "\u0416\u0430\u043b\u043f\u044b", - "PluginCategoryContentProvider": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u043b\u0435\u0440", - "PluginCategoryScreenSaver": "\u042d\u043a\u0440\u0430\u043d \u049b\u043e\u0440\u0493\u0430\u0443\u044b\u0448\u0442\u0430\u0440", - "PluginCategoryTheme": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u0430\u0440", - "PluginCategorySync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "PluginCategorySocialIntegration": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442 \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456", - "PluginCategoryNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440", - "PluginCategoryMetadata": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440", - "PluginCategoryLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414", - "PluginCategoryChannel": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440", - "HeaderSearch": "\u0406\u0437\u0434\u0435\u0443", - "ValueDateCreated": "\u0416\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u043a\u04af\u043d\u0456: {0}", - "LabelArtist": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b", - "LabelMovie": "\u0424\u0438\u043b\u044c\u043c", - "LabelMusicVideo": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435", - "LabelEpisode": "\u0411\u04e9\u043b\u0456\u043c", - "LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b", - "LabelStopping": "\u0422\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0443\u0434\u0430", - "LabelCancelled": "(\u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b)", - "LabelFailed": "(\u0441\u04d9\u0442\u0441\u0456\u0437)", - "ButtonHelp": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u0433\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430\u0493\u0430", - "ButtonSave": "\u0421\u0430\u049b\u0442\u0430\u0443", - "ButtonDownload": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443", - "SyncJobStatusQueued": "\u041a\u0435\u0437\u0435\u043a\u0442\u0435", - "SyncJobStatusConverting": "\u0422\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0435", - "SyncJobStatusFailed": "\u0421\u04d9\u0442\u0441\u0456\u0437", - "SyncJobStatusCancelled": "\u0411\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0493\u0430\u043d", - "SyncJobStatusCompleted": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d", - "SyncJobStatusReadyToTransfer": "\u0410\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0493\u0430 \u0434\u0430\u0439\u044b\u043d", - "SyncJobStatusTransferring": "\u0410\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0434\u0430", - "SyncJobStatusCompletedWithError": "\u049a\u0430\u0442\u0435\u043b\u0435\u0440\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d", - "SyncJobItemStatusReadyToTransfer": "\u0410\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0493\u0430 \u0434\u0430\u0439\u044b\u043d", - "LabelCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b", - "HeaderAddToCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443", - "HeaderNewCollection": "\u0416\u0430\u04a3\u0430 \u0436\u0438\u044b\u043d\u0442\u044b\u049b", - "NewCollectionNameExample": "\u041c\u044b\u0441\u0430\u043b: \u0416\u04b1\u043b\u0434\u044b\u0437 \u0441\u043e\u0493\u044b\u0441\u0442\u0430\u0440\u044b (\u0436\u0438\u044b\u043d\u0442\u044b\u049b)", - "OptionSearchForInternetMetadata": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u043c\u0435\u043b\u0435\u0440 \u0431\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d \u0456\u0437\u0434\u0435\u0443", - "LabelSelectCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443:", - "HeaderDevices": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440", - "ButtonScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440\u0493\u0430 \u04e9\u0442\u0443", - "MessageItemsAdded": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d", - "ButtonAddToCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443", - "HeaderSelectCertificatePath": "\u041a\u0443\u04d9\u043b\u0456\u043a \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", - "ConfirmMessageScheduledTaskButton": "\u0411\u04b1\u043b \u04d9\u0440\u0435\u043a\u0435\u0442 \u04d9\u0434\u0435\u0442\u0442\u0435 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u043b\u043c\u0435\u043d \u043a\u04af\u0448 \u0441\u0430\u043b\u0443 \u049b\u0430\u0436\u0435\u0442 \u0435\u043c\u0435\u0441. \u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043d\u044b \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d, \u049b\u0430\u0440\u0430\u04a3\u044b\u0437:", - "HeaderSupporterBenefit": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u049b\u043e\u043b \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456, \u043c\u044b\u0441\u0430\u043b\u044b, \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0433\u0435 \u049b\u0430\u0442\u044b\u043d\u0430\u0443, \u0441\u044b\u0439\u0430\u049b\u044b\u043b\u044b\u049b \u043f\u043b\u0430\u0433\u0438\u043d, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u043d\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u044b \u0436\u04d9\u043d\u0435 \u043e\u043d\u0430\u043d\u0434\u0430 \u043a\u04e9\u0431\u0456\u0440\u0435\u043a. {0}\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0456\u04a3\u0456\u0437{1}.", - "LabelSyncNoTargetsHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u0439\u0442\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", - "HeaderWelcomeToProjectServerDashboard": "Emby Server \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0430 \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!", - "HeaderWelcomeToProjectWebClient": "Emby \u0456\u0448\u0456\u043d\u0435 \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!", - "ButtonTakeTheTour": "\u0410\u0440\u0430\u043b\u0430\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437", - "HeaderWelcomeBack": "\u049a\u0430\u0439\u0442\u0430 \u043a\u0435\u043b\u0443\u0456\u04a3\u0456\u0437\u0431\u0435\u043d!", - "TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440", - "ButtonTakeTheTourToSeeWhatsNew": "\u0411\u043e\u043b\u0493\u0430\u043d \u0436\u0430\u04a3\u0430\u043b\u044b\u049b\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u0443", - "MessageNoSyncJobsFound": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b. \u0412\u0435\u0431-\u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0430\u0442\u044b\u043d \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u0442\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u04a3\u044b\u0437.", - "HeaderLibraryAccess": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443", - "HeaderChannelAccess": "\u0410\u0440\u043d\u0430\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443", - "HeaderDeviceAccess": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443", - "HeaderSelectDevices": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u0443", - "ButtonCancelItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "ButtonQueueForRetry": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443 \u04af\u0448\u0456\u043d \u043a\u0435\u0437\u0435\u043a\u043a\u0435", - "ButtonReenable": "\u049a\u0430\u0439\u0442\u0430 \u049b\u043e\u0441\u0443", - "ButtonLearnMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443", - "SyncJobItemStatusSyncedMarkForRemoval": "\u0410\u043b\u0430\u0441\u0442\u0430\u0443\u0493\u0430 \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d", - "LabelAbortedByServerShutdown": "(\u0421\u0435\u0440\u0432\u0435\u0440 \u0436\u04b1\u043c\u044b\u0441\u0442\u044b \u0430\u044f\u049b\u0442\u0430\u0443 \u0441\u0435\u0431\u0435\u0431\u0456\u043d\u0435\u043d \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b)", - "LabelScheduledTaskLastRan": "\u041a\u0435\u0439\u0456\u043d\u0433\u0456 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b {0}, {1} \u0430\u043b\u0434\u044b.", - "HeaderDeleteTaskTrigger": "\u0422\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0456\u043d \u0436\u043e\u044e", - "MessageDeleteTaskTrigger": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0456\u043d \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageNoPluginsInstalled": "\u041e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0436\u043e\u049b.", - "MessageNoPluginsDueToAppStore": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d, Emby \u0432\u0435\u0431-\u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", - "LabelVersionInstalled": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d", - "LabelNumberReviews": "{0} \u043f\u0456\u043a\u0456\u0440", - "LabelFree": "\u0422\u0435\u0433\u0456\u043d", - "HeaderTo": "\u049a\u0430\u0439\u0434\u0430", - "HeaderPlaybackError": "\u041e\u0439\u043d\u0430\u0442\u0443 \u049b\u0430\u0442\u0435\u0441\u0456", - "MessagePlaybackErrorNotAllowed": "\u041e\u0441\u044b \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0430\u0493\u044b\u043c\u0434\u0430 \u0441\u0456\u0437\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u043c\u0435\u0433\u0435\u043d. \u0422\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u04d9\u043a\u0456\u043c\u0448\u0456\u04a3\u0456\u0437\u0433\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437.", - "MessagePlaybackErrorNoCompatibleStream": "\u0410\u0493\u044b\u043c\u0434\u0430 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0441\u044b\u0439\u044b\u0441\u044b\u043c\u0434\u044b \u0430\u0493\u044b\u043d\u0434\u0430\u0440 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u04d9\u043a\u0456\u043c\u0448\u0456\u04a3\u0456\u0437\u0433\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437.", - "MessagePlaybackErrorRateLimitExceeded": "\u041e\u0439\u043d\u0430\u0442\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b\u04a3\u044b\u0437 \u0448\u0435\u043a\u0442\u0435\u043d \u0430\u0441\u044b\u043f \u043a\u0435\u0442\u043a\u0435\u043d. \u0422\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u04d9\u043a\u0456\u043c\u0448\u0456\u04a3\u0456\u0437\u0433\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437.", - "MessagePlaybackErrorPlaceHolder": "\u0422\u0430\u04a3\u0434\u0430\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u04b1\u043b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0442\u044b\u043d \u0435\u043c\u0435\u0441.", - "HeaderSelectAudio": "\u0414\u044b\u0431\u044b\u0441 \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderSelectSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0442\u0430\u04a3\u0434\u0430\u0443", - "ButtonMarkForRemoval": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "ButtonUnmarkForRemoval": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443\u0434\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "LabelDefaultStream": "(\u04d8\u0434\u0435\u043f\u043a\u0456)", - "LabelForcedStream": "(\u041c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456)", - "LabelDefaultForcedStream": "(\u04d8\u0434\u0435\u043f\u043a\u0456\/\u041c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456)", - "LabelUnknownLanguage": "\u0411\u0435\u043b\u0433\u0456\u0441\u0456\u0437 \u0442\u0456\u043b", - "MessageConfirmSyncJobItemCancellation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "ButtonMute": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u04e9\u0448\u0456\u0440\u0443", - "ButtonUnmute": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u049b\u043e\u0441\u0443", - "ButtonStop": "\u0422\u043e\u049b\u0442\u0430\u0442\u0443", - "ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b", - "ButtonPause": "\u04ae\u0437\u0443", - "ButtonPlay": "\u041e\u0439\u043d\u0430\u0442\u0443", - "ButtonEdit": "\u04e8\u04a3\u0434\u0435\u0443", - "ButtonQueue": "\u041a\u0435\u0437\u0435\u043a\u043a\u0435", - "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443", - "ButtonPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456", - "ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b", - "LabelEnabled": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d", - "LabelDisabled": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d", - "ButtonMoreInformation": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430", - "LabelNoUnreadNotifications": "\u041e\u049b\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440 \u0436\u043e\u049b", - "ButtonViewNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0440\u0430\u0443", - "ButtonMarkTheseRead": "\u0411\u04b1\u043b\u0430\u0440\u0434\u044b \u043e\u049b\u044b\u043b\u0493\u0430\u043d \u0434\u0435\u043f \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u0443", - "ButtonClose": "\u0416\u0430\u0431\u0443", - "LabelAllPlaysSentToPlayer": "\u0411\u0430\u0440\u043b\u044b\u049b \u043e\u0439\u043d\u0430\u0442\u0443\u043b\u0430\u0440 \u0442\u0430\u04a3\u0434\u0430\u043b\u0493\u0430\u043d \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u049b\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456.", - "MessageInvalidUser": "\u0416\u0430\u0440\u0430\u043c\u0441\u044b\u0437 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "HeaderLoginFailure": "\u041a\u0456\u0440\u0443 \u0441\u04d9\u0442\u0441\u0456\u0437\u0434\u0456\u0433\u0456", - "HeaderAllRecordings": "\u0411\u0430\u0440\u043b\u044b\u049b \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440", - "RecommendationBecauseYouLike": "\u04e8\u0439\u0442\u043a\u0435\u043d\u0456 {0} \u0436\u0430\u0440\u0430\u0442\u0442\u044b\u04a3\u044b\u0437", - "RecommendationBecauseYouWatched": "\u04e8\u0439\u0442\u043a\u0435\u043d\u0456 {0} \u049b\u0430\u0440\u0430\u0434\u044b\u04a3\u044b\u0437", - "RecommendationDirectedBy": "\u049a\u043e\u044e\u0448\u0456 {0}", - "RecommendationStarring": "\u0411\u0430\u0441 \u0440\u043e\u043b\u0456\u043d\u0434\u0435 {0}", - "HeaderConfirmRecordingCancellation": "\u0416\u0430\u0437\u0431\u0430 \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmRecordingCancellation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0436\u0430\u0437\u0431\u0430\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageRecordingCancelled": "\u0416\u0430\u0437\u0431\u0430 \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.", - "MessageRecordingScheduled": "\u0416\u0430\u0437\u0443 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d.", - "HeaderConfirmSeriesCancellation": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b\u04a3 \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmSeriesCancellation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageSeriesCancelled": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.", - "HeaderConfirmRecordingDeletion": "\u0416\u0430\u0437\u0431\u0430 \u0436\u043e\u044e\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmRecordingDeletion": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0436\u0430\u0437\u0431\u0430\u043d\u044b \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageRecordingDeleted": "\u0416\u0430\u0437\u0431\u0430 \u0436\u043e\u0439\u044b\u043b\u0434\u044b.", - "ButonCancelRecording": "\u0416\u0430\u0437\u0431\u0430\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "MessageRecordingSaved": "\u0416\u0430\u0437\u0431\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", - "OptionSunday": "\u0436\u0435\u043a\u0441\u0435\u043d\u0431\u0456", - "OptionMonday": "\u0434\u04af\u0439\u0441\u0435\u043d\u0431\u0456", - "OptionTuesday": "\u0441\u0435\u0439\u0441\u0435\u043d\u0431\u0456", - "OptionWednesday": "\u0441\u04d9\u0440\u0441\u0435\u043d\u0431\u0456", - "OptionThursday": "\u0431\u0435\u0439\u0441\u0435\u043d\u0431\u0456", - "OptionFriday": "\u0436\u04b1\u043c\u0430", - "OptionSaturday": "\u0441\u0435\u043d\u0431\u0456", - "OptionEveryday": "\u041a\u04af\u043d \u0441\u0430\u0439\u044b\u043d", - "OptionWeekend": "\u0414\u0435\u043c\u0430\u043b\u044b\u0441 \u043a\u04af\u043d\u0434\u0435\u0440\u0456", - "OptionWeekday": "\u0416\u04b1\u043c\u044b\u0441 \u043a\u04af\u043d\u0434\u0435\u0440\u0456", - "HeaderConfirmDeletion": "\u0416\u043e\u044e\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmPathSubstitutionDeletion": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0436\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "LiveTvUpdateAvailable": "(\u0416\u0430\u04a3\u0430\u0440\u0442\u0443 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456)", - "LabelVersionUpToDate": "\u0416\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d!", - "ButtonResetTuner": "\u0422\u044e\u043d\u0435\u0440\u0434\u0456 \u044b\u0441\u044b\u0440\u0443", - "HeaderResetTuner": "\u0422\u044e\u043d\u0435\u0440\u0434\u0456 \u044b\u0441\u044b\u0440\u0443", - "MessageConfirmResetTuner": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0456 \u044b\u0441\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435? \u04d8\u0440 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440 \u043d\u0435\u043c\u0435\u0441\u0435 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u043a\u0435\u043d\u0435\u0442\u0442\u0435\u043d \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0430\u0434\u044b.", - "ButtonCancelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "HeaderSeriesRecordings": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u044b", - "LabelAnytime": "\u04d8\u0440 \u0443\u0430\u049b\u044b\u0442\u0442\u0430", - "StatusRecording": "\u0416\u0430\u0437\u0431\u0430", - "StatusWatching": "\u049a\u0430\u0440\u0430\u0443\u0434\u0430", - "StatusRecordingProgram": "{0} \u0436\u0430\u0437\u0443\u0434\u0430", - "StatusWatchingProgram": "{0} \u049b\u0430\u0440\u0430\u0443\u0434\u0430", - "HeaderSplitMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u043d\u044b \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u043f \u0431\u04e9\u043b\u0443", - "MessageConfirmSplitMedia": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u043a\u04e9\u0437\u0434\u0435\u0440\u0456\u043d \u0431\u04e9\u043b\u0435\u043a \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0493\u0430 \u0431\u04e9\u043b\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "HeaderError": "\u049a\u0430\u0442\u0435", - "MessageChromecastConnectionError": "Chromecast \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0493\u044b\u0448\u044b Emby Server \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0435\u043c\u0435\u0441. \u041e\u043b\u0430\u0440\u0434\u044b\u04a3 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u0434\u0430\u0440\u044b\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0456\u04a3\u0456\u0437 \u0434\u0435 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "MessagePleaseSelectOneItem": "\u0415\u04a3 \u043a\u0435\u043c\u0456\u043d\u0434\u0435 \u0431\u0456\u0440 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.", - "MessagePleaseSelectTwoItems": "\u0415\u04a3 \u043a\u0435\u043c\u0456\u043d\u0434\u0435 \u0435\u043a\u0456 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.", - "MessageTheSelectedItemsWillBeGrouped": "\u0411\u04e9\u043b\u0435\u043a\u0442\u0435\u043b\u0433\u0435\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u0431\u0456\u0440 \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u0434\u044b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043a\u0435 \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0430\u0434\u044b. Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u043c\u0435\u043d \u0436\u0435\u043b\u0456 \u04e9\u043d\u0456\u043c\u0434\u0456\u043b\u0456\u0433\u0456 \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0442\u044b\u043d \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0442\u0430\u04a3\u0434\u0430\u0439\u0434\u044b. \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "HeaderResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443", - "HeaderMyViews": "\u041c\u0435\u043d\u0456\u04a3 \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u0456\u043c", - "HeaderLibraryFolders": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b", - "HeaderLatestMedia": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440", - "ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a...", - "ButtonMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a", - "HeaderFavoriteMovies": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440", - "HeaderFavoriteShows": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440", - "HeaderFavoriteEpisodes": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", - "HeaderFavoriteGames": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u043e\u0439\u044b\u043d\u0434\u0430\u0440", - "HeaderRatingsDownloads": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443 \/ \u0416\u04af\u043a\u0442\u0435\u0443\u043b\u0435\u0440", - "HeaderConfirmProfileDeletion": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b \u0436\u043e\u044e\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmProfileDeletion": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u044b \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "HeaderSelectServerCachePath": "\u0421\u0435\u0440\u0432\u0435\u0440 \u043a\u044d\u0448\u0456\u043d\u0456\u04a3 \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderSelectTranscodingPath": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b\u04a3 \u0443\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u0435\u044b\u04a3 \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderSelectImagesByNamePath": "\u0410\u0442\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderSelectMetadataPath": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderSelectServerCachePathHelp": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u043a\u044d\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "HeaderSelectTranscodingPathHelp": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b\u04a3 \u0443\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "HeaderSelectImagesByNamePathHelp": "\u0410\u0442\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "HeaderSelectMetadataPathHelp": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "HeaderSelectChannelDownloadPath": "\u0410\u0440\u043d\u0430 \u0436\u04af\u043a\u0442\u0435\u0443 \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437", - "HeaderSelectChannelDownloadPathHelp": "\u0410\u0440\u043d\u0430 \u043a\u044d\u0448\u0456 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d \u0441\u0430\u049b\u0442\u0430\u043f \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "OptionNewCollection": "\u0416\u0430\u04a3\u0430...", - "ButtonAdd": "\u04ae\u0441\u0442\u0435\u0443", - "ButtonRemove": "\u0410\u043b\u0430\u0441\u0442\u0430\u0443", - "LabelChapterDownloaders": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440:", - "LabelChapterDownloadersHelp": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0441\u0430\u0445\u043d\u0430 \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u043b\u044b\u049b \u0440\u0435\u0442\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0434\u04d9\u0440\u0435\u0436\u0435 \u0431\u0435\u0440\u0456\u04a3\u0456\u0437. \u0422\u04e9\u043c\u0435\u043d\u0433\u0456 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b \u0431\u0430\u0440 \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u043e\u049b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u0442\u043e\u043b\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.", - "HeaderFavoriteAlbums": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0430\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440", - "HeaderLatestChannelMedia": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b\u04a3 \u0435\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u044b", - "ButtonOrganizeFile": "\u0424\u0430\u0439\u043b\u0434\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", - "ButtonDeleteFile": "\u0424\u0430\u0439\u043b\u0434\u044b \u0436\u043e\u044e", - "HeaderOrganizeFile": "\u0424\u0430\u0439\u043b\u0434\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", - "HeaderDeleteFile": "\u0424\u0430\u0439\u043b\u0434\u044b \u0436\u043e\u044e", - "StatusSkipped": "\u04e8\u0442\u043a\u0456\u0437\u0456\u043b\u0433\u0435\u043d", - "StatusFailed": "\u0421\u04d9\u0442\u0441\u0456\u0437", - "StatusSuccess": "\u0421\u04d9\u0442\u0442\u0456\u043b\u0456\u043a", - "MessageFileWillBeDeleted": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0444\u0430\u0439\u043b \u0436\u043e\u0439\u044b\u043b\u0430\u0434\u044b:", - "MessageSureYouWishToProceed": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043a\u0456\u0440\u0456\u0441\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageDuplicatesWillBeDeleted": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435, \u043a\u0435\u043b\u0435\u0441\u0456 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440 \u0436\u043e\u0439\u044b\u043b\u0430\u0434\u044b:", - "MessageFollowingFileWillBeMovedFrom": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0444\u0430\u0439\u043b \u0436\u044b\u043b\u0436\u044b\u0442\u044b\u043b\u0430\u0434\u044b, \u043c\u044b\u043d\u0430\u0434\u0430\u043d:", - "MessageDestinationTo": "\u043c\u044b\u043d\u0430\u0493\u0430\u043d:", - "HeaderSelectWatchFolder": "\u049a\u0430\u0434\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u0430\u0493\u044b \u049b\u0430\u043b\u0442\u0430\u043d\u044b \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderSelectWatchFolderHelp": "\u049a\u0430\u0434\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u0430\u0493\u044b \u049b\u0430\u043b\u0442\u0430\u0493\u0430 \u0436\u043e\u043b\u0434\u044b \u0448\u043e\u043b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0437\u0443 \u04af\u0448\u0456\u043d \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "OrganizePatternResult": "\u041d\u04d9\u0442\u0438\u0436\u0435\u0441\u0456: {0}", - "AutoOrganizeError": "\u0424\u0430\u0439\u043b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0442\u0435\u0441\u0456", - "FileOrganizeManually": "\u0424\u0430\u0439\u043b\u0434\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", - "ErrorOrganizingFileWithErrorCode": "\u0424\u0430\u0439\u043b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u049a\u0430\u0442\u0435\u043d\u0456\u04a3 \u043a\u043e\u0434\u044b: {0}.", - "HeaderRestart": "\u049a\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443", - "HeaderShutdown": "\u0416\u04b1\u043c\u044b\u0441\u0442\u044b \u0430\u044f\u049b\u0442\u0430\u0443", - "MessageConfirmRestart": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d Emby Server \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageConfirmShutdown": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d Emby Server \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0430\u044f\u049b\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "ButtonUpdateNow": "\u049a\u0430\u0437\u0456\u0440 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443", - "ValueItemCount": "{0} \u0442\u0430\u0440\u043c\u0430\u049b", - "ValueItemCountPlural": "{0} \u0442\u0430\u0440\u043c\u0430\u049b", - "NewVersionOfSomethingAvailable": "\u0416\u0430\u04a3\u0430 {0} \u043d\u04b1\u0441\u049b\u0430\u0441\u044b \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456!", - "VersionXIsAvailableForDownload": "\u0415\u043d\u0434\u0456 {0} \u043d\u04b1\u0441\u049b\u0430 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0493\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456.", - "LabelVersionNumber": "\u041d\u0443\u0441\u049b\u0430\u0441\u044b: {0}", - "LabelPlayMethodTranscoding": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u0430", - "LabelPlayMethodDirectStream": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439 \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443\u0434\u0430", - "LabelPlayMethodDirectPlay": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u0430", - "LabelAudioCodec": "\u0414\u044b\u0431\u044b\u0441: {0}", - "LabelVideoCodec": "\u0411\u0435\u0439\u043d\u0435: {0}", - "LabelLocalAccessUrl": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u049b\u0430\u0442\u044b\u043d\u0430\u0443: {0}", - "LabelRemoteAccessUrl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443: {0}", - "LabelRunningOnPort": "{0} http-\u043f\u043e\u0440\u0442\u044b\u043d\u0434\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456.", - "LabelRunningOnPorts": "{0} http-\u043f\u043e\u0440\u0442\u044b\u043d\u0434\u0430 \u0436\u04d9\u043d\u0435 {1} https-\u043f\u043e\u0440\u0442\u044b\u043d\u0434\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456.", - "HeaderLatestFromChannel": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 {0}", - "LabelUnknownLanaguage": "\u0411\u0435\u043b\u0433\u0456\u0441\u0456\u0437 \u0442\u0456\u043b", - "HeaderCurrentSubtitles": "\u0410\u0493\u044b\u043c\u0434\u044b\u049b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440", - "MessageDownloadQueued": "\u0416\u04af\u043a\u0442\u0435\u0443 \u043a\u0435\u0437\u0435\u043a\u043a\u0435 \u043a\u0456\u0440\u0433\u0456\u0437\u0456\u043b\u0434\u0456.", - "MessageAreYouSureDeleteSubtitles": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0444\u0430\u0439\u043b\u044b\u043d \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "ButtonRemoteControl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443", - "HeaderLatestTvRecordings": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440", - "ButtonOk": "\u0416\u0430\u0440\u0430\u0439\u0434\u044b", - "ButtonCancel": "\u0411\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "ButtonRefresh": "\u0416\u0430\u04a3\u0493\u044b\u0440\u0442\u0443", - "LabelCurrentPath": "\u0410\u0493\u044b\u043c\u0434\u044b\u049b \u0436\u043e\u043b:", - "HeaderSelectMediaPath": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderSelectPath": "\u0416\u043e\u043b\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u0443", - "ButtonNetwork": "\u0416\u0435\u043b\u0456", - "MessageDirectoryPickerInstruction": "\u0416\u0435\u043b\u0456 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456 \u0431\u0430\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437 \u043e\u0440\u043d\u044b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0441\u0430, \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u0436\u043e\u043b\u0434\u0430\u0440 \u049b\u043e\u043b\u043c\u0435\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u043b\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d. \u041c\u044b\u0441\u0430\u043b\u044b, {0} \u043d\u0435\u043c\u0435\u0441\u0435 {1}.", - "MessageDirectoryPickerBSDInstruction": "BSD \u043e\u0440\u0442\u0430\u0441\u044b\u043d\u0434\u0430, Emby \u049b\u043e\u043b \u0436\u0435\u0442\u043a\u0456\u0437\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u044b\u043d\u0434\u0430, \u0441\u0456\u0437\u0434\u0456\u04a3 FreeNAS Jail \u0456\u0448\u0456\u043d\u0434\u0435\u0433\u0456 \u0436\u0438\u043d\u0430\u049b\u0442\u0430\u0443\u044b\u0448\u0442\u044b \u0442\u0435\u04a3\u0448\u0435\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", - "MessageDirectoryPickerLinuxInstruction": "Linux \u0436\u04af\u0439\u0435\u0441\u0456 \u04af\u0448\u0456\u043d, Emby \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u043a\u0435\u043c \u0434\u0435\u0433\u0435\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u0443 \u0436\u0435\u0440\u043b\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u043e\u049b\u0443\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0441 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443\u0433\u0435 \u0442\u0438\u0456\u0441\u0441\u0456\u0437.", - "HeaderMenu": "\u041c\u04d9\u0437\u0456\u0440", - "ButtonOpen": "\u0410\u0448\u0443", - "ButtonOpenInNewTab": "\u0416\u0430\u04a3\u0430 \u049b\u043e\u0439\u044b\u043d\u0434\u044b\u0434\u0430 \u0430\u0448\u0443", - "ButtonShuffle": "\u0410\u0440\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443", - "ButtonInstantMix": "\u041b\u0435\u0437\u0434\u0456\u043a \u049b\u043e\u0441\u043f\u0430\u043b\u0430\u0443", - "ButtonResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443", - "HeaderScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440", - "HeaderAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440\u044b", - "HeaderLibraries": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043b\u0430\u0440", - "HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440", - "HeaderVideoQuality": "\u0411\u0435\u0439\u043d\u0435 \u0441\u0430\u043f\u0430\u0441\u044b", - "MessageErrorPlayingVideo": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b.", - "MessageEnsureOpenTuner": "\u0410\u0448\u044b\u043b\u0493\u0430\u043d \u0442\u044e\u043d\u0435\u0440 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.", - "ButtonHome": "\u0411\u0430\u0441\u0442\u044b\u0493\u0430", - "ButtonDashboard": "\u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b\u043d\u0430", - "ButtonReports": "\u0411\u0430\u044f\u043d\u0430\u0442\u0442\u0430\u0440\u0493\u0430", - "ButtonMetadataManager": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456\u0433\u0435", - "HeaderTime": "\u0423\u0430\u049b\u044b\u0442", - "HeaderName": "\u0410\u0442\u044b", - "HeaderAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", - "HeaderAlbumArtist": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u0441\u044b", - "HeaderArtist": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b", - "LabelAddedOnDate": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d\u0456 {0}", - "ButtonStart": "\u0411\u0430\u0441\u0442\u0430\u0443", - "HeaderChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440", - "HeaderMediaFolders": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b", - "HeaderBlockItemsWithNoRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b \u0436\u043e\u049b \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:", - "OptionBlockOthers": "\u0411\u0430\u0441\u049b\u0430\u043b\u0430\u0440", - "OptionBlockTvShows": "\u0422\u0414 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440\u0456", - "OptionBlockTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440", - "OptionBlockMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", - "OptionBlockMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440", - "OptionBlockBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440", - "OptionBlockGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440", - "OptionBlockLiveTvPrograms": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0442\u0430\u0440\u0430\u0442\u044b\u043c\u0434\u0430\u0440\u044b", - "OptionBlockLiveTvChannels": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u044b", - "OptionBlockChannelContent": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u043d\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u044b", - "ButtonRevoke": "\u0411\u0430\u0441 \u0442\u0430\u0440\u0442\u0443", - "MessageConfirmRevokeApiKey": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b API-\u043a\u0456\u043b\u0442\u0456\u043d\u0435\u043d \u0431\u0430\u0441 \u0442\u0430\u0440\u0442\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435? \u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043c\u0435\u043d Emby Server \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u049b\u043e\u0441\u044b\u043b\u044b\u043c \u043a\u0435\u043d\u0435\u0442 \u04af\u0437\u0456\u043b\u0435\u0434\u0456.", - "HeaderConfirmRevokeApiKey": "API-\u043a\u0456\u043b\u0442\u0442\u0435\u043d \u0431\u0430\u0441 \u0442\u0430\u0440\u0442\u0443", - "ValueContainer": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440: {0}", - "ValueAudioCodec": "\u0414\u044b\u0431\u044b\u0441 \u043a\u043e\u0434\u0435\u0433\u0456: {0}", - "ValueVideoCodec": "\u0411\u0435\u0439\u043d\u0435 \u043a\u043e\u0434\u0435\u0433\u0456: {0}", - "ValueCodec": "\u041a\u043e\u0434\u0435\u043a: {0}", - "ValueConditions": "\u0416\u0430\u0493\u0434\u0430\u0439\u043b\u0430\u0440: {0}", - "LabelAll": "\u0411\u0430\u0440\u043b\u044b\u049b", - "HeaderDeleteImage": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u043e\u044e", - "MessageFileNotFound": "\u0424\u0430\u0439\u043b \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", - "MessageFileReadError": "\u041e\u0441\u044b \u0444\u0430\u0439\u043b\u0434\u044b \u043e\u049b\u044b\u0493\u0430\u043d\u0434\u0430 \u049b\u0430\u0442\u0435 \u043f\u0430\u0439\u0434\u0430 \u0431\u043e\u043b\u0434\u044b.", - "ButtonNextPage": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0431\u0435\u0442\u043a\u0435", - "ButtonPreviousPage": "\u0410\u043b\u0434\u044b\u043d\u0493\u044b \u0431\u0435\u0442\u043a\u0435", - "ButtonMoveLeft": "\u0421\u043e\u043b\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443", - "ButtonMoveRight": "\u041e\u04a3\u0493\u0430 \u0436\u044b\u043b\u0436\u044b\u0442\u0443", - "ButtonBrowseOnlineImages": "\u0416\u0435\u043b\u0456\u0434\u0435\u0433\u0456 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0448\u043e\u043b\u0443", - "HeaderDeleteItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u044e", - "ConfirmDeleteItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b \u0444\u0430\u0439\u043b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0436\u043e\u0439\u044b\u043b\u0430\u0434\u044b. \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "HeaderDeleteItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u044e", - "ConfirmDeleteItems": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u0439\u0493\u0430\u043d\u0434\u0430, \u043e\u043b\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u044b\u049b \u0436\u04af\u0439\u0435\u0441\u0456\u043d\u0435\u043d \u0434\u0435 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u0430\u043d \u0434\u0430 \u0435\u043a\u0435\u0443\u0456\u043d\u0434\u0435 \u0436\u043e\u0439\u044b\u043b\u0430\u0434. \u0421\u0456\u0437 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430? \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessagePleaseEnterNameOrId": "\u0410\u0442\u044b\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u0441\u044b\u0440\u0442\u049b\u044b ID \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.", - "MessageValueNotCorrect": "\u0415\u043d\u0433\u0456\u0437\u0456\u043b\u0433\u0435\u043d \u043c\u04d9\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "MessageItemSaved": "\u0422\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d \u049a\u044b\u0437\u043c\u0435\u0442 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u04a3\u044b\u0437.", - "OptionEnded": "\u0410\u044f\u049b\u0442\u0430\u043b\u0434\u044b", - "OptionContinuing": "\u0416\u0430\u043b\u0493\u0430\u0441\u0443\u0434\u0430", - "OptionOff": "\u04e8\u0448\u0456\u0440", - "OptionOn": "\u049a\u043e\u0441", - "ButtonSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0433\u0435", - "ButtonUninstall": "\u041e\u0440\u043d\u0430\u0442\u044b\u043c\u0434\u044b \u0436\u043e\u044e", - "HeaderEnabledFields": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u04e9\u0440\u0456\u0441\u0442\u0435\u0440", - "HeaderEnabledFieldsHelp": "\u049a\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u04d9\u043d\u0435 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u04e9\u0437\u0433\u0435\u0440\u0442\u0443\u0456\u043d\u0435 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u0443 \u04af\u0448\u0456\u043d, \u04e9\u0440\u0456\u0441\u0442\u0435\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.", - "HeaderLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414", - "MissingLocalTrailer": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440 \u0436\u043e\u049b.", - "MissingPrimaryImage": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0441\u0443\u0440\u0435\u0442 \u0436\u043e\u049b.", - "MissingBackdropImage": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442 \u0436\u043e\u049b.", - "MissingLogoImage": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f \u0441\u0443\u0440\u0435\u0442\u0456 \u0436\u043e\u049b.", - "MissingEpisode": "\u0416\u043e\u049b \u0431\u04e9\u043b\u0456\u043c.", - "OptionScreenshots": "\u042d\u043a\u0440\u0430\u043d \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456", - "OptionBackdrops": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440", - "OptionImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440", - "OptionKeywords": "\u041a\u0456\u043b\u0442 \u0441\u04e9\u0437\u0434\u0435\u0440", - "OptionTags": "\u0422\u0435\u0433\u0442\u0435\u0440", - "OptionStudios": "\u0421\u0442\u0443\u0434\u0438\u044f\u043b\u0430\u0440", - "OptionName": "\u0410\u0442\u044b", - "OptionOverview": "\u0416\u0430\u043b\u043f\u044b \u0448\u043e\u043b\u0443", - "OptionGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440", - "OptionParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442", - "OptionPeople": "\u0410\u0434\u0430\u043c\u0434\u0430\u0440", - "OptionRuntime": "\u04b0\u0437\u0430\u049b\u0442\u044b\u0493\u044b", - "OptionProductionLocations": "\u04e8\u043d\u0434\u0456\u0440\u0443 \u043e\u0440\u044b\u043d\u0434\u0430\u0440\u044b", - "OptionBirthLocation": "\u0422\u0443\u0493\u0430\u043d \u043e\u0440\u043d\u044b", - "LabelAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440", - "LabelLiveProgram": "\u0422\u0406\u041a\u0415\u041b\u0415\u0419 \u042d\u0424\u0418\u0420", - "LabelNewProgram": "\u0416\u0410\u04a2\u0410", - "LabelPremiereProgram": "\u0422\u04b0\u0421\u0410\u0423\u041a\u0415\u0421\u0415\u0420\u0406", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", - "HeaderChangeFolderTypeHelp": "\u0422\u04af\u0440\u0434\u0456 \u04e9\u0437\u0433\u0435\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437 \u0434\u0430, \u0436\u0430\u04a3\u0430 \u0442\u04af\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u0442\u0430 \u049b\u04b1\u0440\u044b\u04a3\u044b\u0437.", - "HeaderAlert": "\u0415\u0441\u043a\u0435\u0440\u0442\u0443", - "MessagePleaseRestart": "\u0416\u0430\u04a3\u0430\u0440\u0442\u0443\u0434\u044b \u0430\u044f\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.", - "ButtonRestart": "\u049a\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443", - "MessagePleaseRefreshPage": "Emby Server \u0436\u0430\u04a3\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440\u0434\u044b \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u043e\u0441\u044b \u0431\u0435\u0442\u0442\u0456 \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u04a3\u044b\u0437.", - "ButtonHide": "\u0416\u0430\u0441\u044b\u0440\u0443", - "MessageSettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u043b\u0434\u044b.", - "ButtonSignOut": "\u0428\u044b\u0493\u0443", - "ButtonMyProfile": "\u041c\u0435\u043d\u0456\u04a3 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043c\u0493\u0430", - "ButtonMyPreferences": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043c\u0433\u0435", - "MessageBrowserDoesNotSupportWebSockets": "\u041e\u0441\u044b \u0448\u043e\u043b\u0493\u044b\u0448 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u049b\u043e\u043b\u0434\u0430\u043c\u0430\u0439\u0434\u044b. \u0422\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u043d\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d, \u043c\u044b\u0441\u0430\u043b\u044b, Chrome, Firefox, IE10+, Safari (iOS) \u043d\u0435 Opera \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.", - "LabelInstallingPackage": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430", - "LabelPackageInstallCompleted": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b.", - "LabelPackageInstallFailed": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437.", - "LabelPackageInstallCancelled": "{0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b.", - "TabServer": "\u0421\u0435\u0440\u0432\u0435\u0440", - "TabUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440", - "TabLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430", - "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440", - "TabDLNA": "DLNA", - "TabLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414", - "TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443", - "TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440", - "TabAdvanced": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d", - "TabHelp": "\u0410\u043d\u044b\u049b\u0442\u0430\u043c\u0430", - "TabScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b", - "ButtonFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d", - "ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u0493\u044b", - "ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435", - "ButtonScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0493\u0430", - "ButtonQuality": "\u0421\u0430\u043f\u0430\u0441\u044b\u043d\u0430", - "HeaderNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440", - "HeaderSelectPlayer": "\u041e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443", - "ButtonSelect": "\u0411\u04e9\u043b\u0435\u043a\u0442\u0435\u0443", - "ButtonNew": "\u0416\u0430\u0441\u0430\u0443", - "MessageInternetExplorerWebm": "Internet Explorer \u0430\u0440\u049b\u044b\u043b\u044b \u0435\u04a3 \u0436\u0430\u049b\u0441\u044b \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0433\u0435 \u0438\u0435 \u0431\u043e\u043b\u0443 \u04af\u0448\u0456\u043d WebM \u043e\u0439\u043d\u0430\u0442\u0443 \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", - "HeaderVideoError": "\u0411\u0435\u0439\u043d\u0435 \u049b\u0430\u0442\u0435\u0441\u0456", - "ButtonAddToPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443", - "HeaderAddToPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443", - "LabelName": "\u0410\u0442\u044b:", - "ButtonSubmit": "\u0416\u0456\u0431\u0435\u0440\u0443", - "LabelSelectPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456:", - "OptionNewPlaylist": "\u0416\u0430\u04a3\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456...", - "MessageAddedToPlaylistSuccess": "\u0416\u0430\u0440\u0430\u0439\u0434\u044b", - "ButtonView": "\u049a\u0430\u0440\u0430\u0443", - "ButtonViewSeriesRecording": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0436\u0430\u0437\u0431\u0430\u0441\u044b\u043d \u049b\u0430\u0440\u0430\u0443", - "ValueOriginalAirDate": "\u0411\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u044d\u0444\u0438\u0440: {0}", - "ButtonRemoveFromPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "HeaderSpecials": "\u0410\u0440\u043d\u0430\u0439\u044b \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u0434\u0430\u0440", - "HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440", - "HeaderAudio": "\u0414\u044b\u0431\u044b\u0441", - "HeaderResolution": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b", - "HeaderVideo": "\u0411\u0435\u0439\u043d\u0435", - "HeaderRuntime": "\u04b0\u0437\u0430\u049b\u0442\u044b\u0493\u044b", - "HeaderCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b", - "HeaderPasswordReset": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443", - "HeaderParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b", - "HeaderReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456", - "HeaderDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456", - "HeaderSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440", - "HeaderSeason": "\u041c\u0430\u0443\u0441\u044b\u043c", - "HeaderSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456", - "HeaderNetwork": "\u0422\u0435\u043b\u0435\u0436\u0435\u043b\u0456", - "HeaderYear": "\u0416\u044b\u043b", - "HeaderGameSystem": "\u041e\u0439\u044b\u043d \u0436\u04af\u0439\u0435\u0441\u0456", - "HeaderPlayers": "\u041e\u0439\u044b\u043d\u0448\u044b\u043b\u0430\u0440", - "HeaderEmbeddedImage": "\u0415\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0443\u0440\u0435\u0442", - "HeaderTrack": "\u0416\u043e\u043b\u0448\u044b\u049b", - "HeaderDisc": "\u0414\u0438\u0441\u043a\u0456", - "OptionMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440", - "OptionCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440", - "OptionSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440", - "OptionSeasons": "\u0422\u0414-\u043c\u0430\u0443\u0441\u044b\u043c\u0434\u0430\u0440", - "OptionEpisodes": "\u0422\u0414-\u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", - "OptionGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440", - "OptionGameSystems": "\u041e\u0439\u044b\u043d \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456", - "OptionMusicArtists": "\u041c\u0443\u0437\u044b\u043a\u0430 \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b", - "OptionMusicAlbums": "\u041c\u0443\u0437\u044b\u043a\u0430 \u0430\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440\u044b", - "OptionMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440", - "OptionSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440", - "OptionHomeVideos": "\u04ae\u0439 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456", - "OptionBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440", - "OptionAdultVideos": "\u0415\u0440\u0435\u0441\u0435\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456", - "ButtonUp": "\u0416\u043e\u0493\u0430\u0440\u044b\u0493\u0430", - "ButtonDown": "\u0422\u04e9\u043c\u0435\u043d\u0433\u0435", - "LabelMetadataReaders": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u049b\u0443\u0448\u044b\u043b\u0430\u0440\u044b:", - "LabelMetadataReadersHelp": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u049b\u0430\u0439\u043d\u0430\u0440 \u043a\u04e9\u0437\u0434\u0435\u0440\u0456\u043d\u0435 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u043b\u044b\u049b \u0440\u0435\u0442\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0434\u04d9\u0440\u0435\u0436\u0435 \u0431\u0435\u0440\u0456\u04a3\u0456\u0437. \u0411\u0456\u0440\u0456\u043d\u0448\u0456 \u0442\u0430\u0431\u044b\u043b\u0493\u0430\u043d \u0444\u0430\u0439\u043b \u043e\u049b\u044b\u043b\u0430\u0434\u044b.", - "LabelMetadataDownloaders": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440\u0456:", - "LabelMetadataDownloadersHelp": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u043b\u044b\u049b \u0440\u0435\u0442\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0434\u04d9\u0440\u0435\u0436\u0435 \u0431\u0435\u0440\u0456\u04a3\u0456\u0437. \u0422\u04e9\u043c\u0435\u043d\u0433\u0456 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b \u0431\u0430\u0440 \u0436\u04af\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u043e\u049b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u0442\u043e\u043b\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.", - "LabelMetadataSavers": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b:", - "LabelMetadataSaversHelp": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u049b\u0430\u0439\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u0439\u0442\u044b\u043d \u0444\u0430\u0439\u043b \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u0443.", - "LabelImageFetchers": "\u0421\u0443\u0440\u0435\u0442 \u0456\u0440\u0456\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440\u0456:", - "LabelImageFetchersHelp": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0440\u0435\u0442 \u0456\u0440\u0456\u043a\u0442\u0435\u0443\u0448\u0456\u043b\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u044b\u043c\u0434\u044b\u043b\u044b\u049b \u0440\u0435\u0442\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0434\u04d9\u0440\u0435\u0436\u0435 \u0431\u0435\u0440\u0456\u04a3\u0456\u0437.", - "ButtonQueueAllFromHere": "\u0411\u04b1\u043b \u0430\u0440\u0430\u0434\u0430\u043d \u0431\u04d9\u0440\u0456\u043d \u043a\u0435\u0437\u0435\u043a\u043a\u0435", - "ButtonPlayAllFromHere": "\u0411\u04b1\u043b \u0430\u0440\u0430\u0434\u0430\u043d \u0431\u04d9\u0440\u0456\u043d \u043e\u0439\u043d\u0430\u0442\u0443", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0443", - "PersonTypePerson": "\u0422\u04b1\u043b\u0493\u0430", - "LabelTitleDisplayOrder": "\u0422\u0443\u044b\u043d\u0434\u044b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u0440\u0435\u0442\u0456:", - "OptionSortName": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0430\u0442\u044b", - "OptionReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456", - "LabelSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456:", - "LabelDiscNumber": "\u0414\u0438\u0441\u043a\u0456 \u043d\u04e9\u043c\u0456\u0440\u0456", - "LabelParentNumber": "\u0422\u0435\u043a\u0442\u0456\u043a \u043d\u04e9\u043c\u0456\u0440:", - "LabelEpisodeNumber": "\u042d\u043f\u0438\u0437\u043e\u0434 \u043d\u04e9\u043c\u0456\u0440\u0456:", - "LabelTrackNumber": "\u0416\u043e\u043b\u0448\u044b\u049b \u043d\u04e9\u043c\u0456\u0440\u0456:", - "LabelNumber": "\u041d\u04e9\u043c\u0456\u0440\u0456:", - "LabelReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456:", - "LabelEndDate": "\u0410\u044f\u049b\u0442\u0430\u043b\u0443 \u043a\u04af\u043d\u0456:", - "LabelYear": "\u0416\u044b\u043b\u044b:", - "LabelDateOfBirth": "\u0422\u0443\u0493\u0430\u043d \u043a\u04af\u043d\u0456:", - "LabelBirthYear": "\u0422\u0443\u0493\u0430\u043d \u0436\u044b\u043b\u044b:", - "LabelBirthDate": "\u0422\u0443\u0493\u0430\u043d \u043a\u04af\u043d\u0456:", - "LabelDeathDate": "\u04e8\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456:", - "HeaderRemoveMediaLocation": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "MessageConfirmRemoveMediaLocation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u0434\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "HeaderRenameMediaFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u049b\u0430\u0439\u0442\u0430 \u0430\u0442\u0430\u0443", - "LabelNewName": "\u0416\u0430\u04a3\u0430 \u0430\u0442\u044b", - "HeaderAddMediaFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u04af\u0441\u0442\u0435\u0443", - "HeaderAddMediaFolderHelp": "\u0410\u0442\u044b (\u041a\u0438\u043d\u043e, \u041c\u0443\u0437\u044b\u043a\u0430, \u0422\u0414, \u0442.\u0431.):", - "HeaderRemoveMediaFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u043b\u0430\u0440\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0430\u0434\u044b:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "ButtonRename": "\u049a\u0430\u0439\u0442\u0430 \u0430\u0442\u0430\u0443", - "ButtonChangeContentType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443", - "HeaderMediaLocations": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u043e\u0440\u043d\u0430\u043b\u0430\u0441\u0443\u043b\u0430\u0440\u044b", - "LabelContentTypeValue": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456: {0}", - "LabelPathSubstitutionHelp": "\u041c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441: \u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u0430\u0440\u0434\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u049b\u043e\u0440 \u043a\u04e9\u0437\u0434\u0435\u0440\u0456\u043c\u0435\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", - "FolderTypeUnset": "\u0422\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u043c\u0430\u0493\u0430\u043d (\u0430\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d)", - "FolderTypeMovies": "\u041a\u0438\u043d\u043e", - "FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", - "FolderTypeAdultVideos": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0456\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440", - "FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440", - "FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440", - "FolderTypeHomeVideos": "\u04ae\u0439 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456", - "FolderTypeGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440", - "FolderTypeBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440", - "FolderTypeTvShows": "\u0422\u0414", - "TabMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440", - "TabSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440", - "TabEpisodes": "\u0422\u0414-\u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", - "TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440", - "TabGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440", - "TabAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0435\u0440", - "TabSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440", - "TabMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440", - "BirthPlaceValue": "\u0422\u0443\u0493\u0430\u043d \u043e\u0440\u043d\u044b: {0}", - "DeathDateValue": "\u04e8\u043b\u0433\u0435\u043d\u0456: {0}", - "BirthDateValue": "\u0422\u0443\u0493\u0430\u043d\u044b: {0}", - "HeaderLatestReviews": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u043f\u0456\u043a\u0456\u0440\u043b\u0435\u0440", - "HeaderPluginInstallation": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043c\u044b", - "MessageAlreadyInstalled": "\u041e\u0441\u044b \u043d\u04b1\u0441\u049b\u0430 \u0431\u04b1\u0440\u044b\u043d\u043d\u0430\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d.", - "ValueReviewCount": "{0} \u043f\u0456\u043a\u0456\u0440", - "MessageYouHaveVersionInstalled": "\u049a\u0430\u0437\u0456\u0440 {0} \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d", - "MessageTrialExpired": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b\u04a3 \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0443 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 \u0430\u044f\u049b\u0442\u0430\u043b\u0434\u044b", - "MessageTrialWillExpireIn": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b\u04a3 \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0443 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 {0} \u043a\u04af\u043d\u0434\u0435 \u0430\u044f\u049b\u0442\u0430\u043b\u0430\u0434\u044b", - "MessageInstallPluginFromApp": "\u0411\u04b1\u043b \u043f\u043b\u0430\u0433\u0438\u043d \u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0441\u0430, \u0441\u043e\u043d\u044b\u04a3 \u0456\u0448\u0456\u043d\u0435\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443\u044b \u0442\u0438\u0456\u0441\u0442\u0456.", - "ValuePriceUSD": "\u0411\u0430\u0493\u0430\u0441\u044b: {0} USD", - "MessageFeatureIncludedWithSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441 \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0435\u043d\u0441\u0456\u0437, \u0436\u04d9\u043d\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u043e\u043d\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u043d \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0441\u0456\u0437.", - "MessageChangeRecurringPlanConfirm": "\u041e\u0441\u044b \u043c\u04d9\u043c\u0456\u043b\u0435\u043d\u0456 \u0430\u044f\u049b\u0442\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 PayPal \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0456\u0448\u0456\u043d\u0435\u043d \u0430\u043b\u0434\u044b\u04a3\u0493\u044b \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b\u0442\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b. Emby \u049b\u043e\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0430\u043b\u0493\u044b\u0441.", - "ButtonDelete": "\u0416\u043e\u044e", - "HeaderEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456", - "MessageEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456.", - "MessagePendingEmbyAccountAdded": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0433\u0430 \u04af\u0441\u0442\u0435\u043b\u0456\u043d\u0434\u0456. \u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0438\u0435\u0441\u0456\u043d\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456. \u042d-\u043f\u043e\u0448\u0442\u0430\u0434\u0430\u0493\u044b \u0441\u0456\u043b\u0442\u0435\u043c\u0435\u043d\u0456 \u043d\u04b1\u049b\u044b\u043f \u0448\u0430\u049b\u044b\u0440\u0443\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.", - "HeaderEmbyAccountRemoved": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0434\u044b", - "MessageEmbyAccontRemoved": "Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u044b\u043d\u0434\u044b.", - "TooltipLinkedToEmbyConnect": "Emby Connect \u04af\u0448\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d", - "HeaderUnrated": "\u0411\u0430\u0493\u0430\u043b\u0430\u043d\u0431\u0430\u0493\u0430\u043d", - "ValueDiscNumber": "{0}-\u0434\u0438\u0441\u043a\u0456", - "HeaderUnknownDate": "\u041a\u04af\u043d\u0456 \u0431\u0435\u043b\u0433\u0456\u0441\u0456\u0437", - "HeaderUnknownYear": "\u0416\u044b\u043b\u044b \u0431\u0435\u043b\u0433\u0456\u0441\u0456\u0437", - "ValueMinutes": "{0} \u043c\u0438\u043d", - "ButtonPlayExternalPlayer": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u043f\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u0443", - "HeaderSelectExternalPlayer": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderExternalPlayerPlayback": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u043f\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u0443", - "ButtonImDone": "\u041c\u0435\u043d \u0431\u0456\u0442\u0456\u0440\u0434\u0456\u043c", - "OptionWatched": "\u049a\u0430\u0440\u0430\u043b\u0493\u0430\u043d", - "OptionUnwatched": "\u049a\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d", - "ExternalPlayerPlaystateOptionsHelp": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0440\u0435\u0442\u0442\u0435 \u043e\u0441\u044b \u0431\u0435\u0439\u043d\u0435\u043d\u0456 \u049b\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u049b\u0430\u043b\u0430\u0439 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.", - "LabelMarkAs": "\u0411\u044b\u043b\u0430\u0439\u0448\u0430 \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u0443:", - "OptionInProgress": "\u041e\u0440\u044b\u043d\u0434\u0430\u043b\u0443\u0434\u0430", - "LabelResumePoint": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u043d\u04af\u043a\u0442\u0435\u0441\u0456:", - "ValueOneMovie": "1 \u0444\u0438\u043b\u044c\u043c", - "ValueMovieCount": "{0} \u0444\u0438\u043b\u044c\u043c", - "ValueOneTrailer": "1 \u0442\u0440\u0435\u0439\u043b\u0435\u0440", - "ValueTrailerCount": "{0} \u0442\u0440\u0435\u0439\u043b\u0435\u0440", - "ValueOneSeries": "1 \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f", - "ValueSeriesCount": "{0} \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f", - "ValueOneEpisode": "1 \u0431\u04e9\u043b\u0456\u043c", - "ValueEpisodeCount": "{0} \u0431\u04e9\u043b\u0456\u043c", - "ValueOneGame": "1 \u043e\u0439\u044b\u043d", - "ValueGameCount": "{0} \u043e\u0439\u044b\u043d", - "ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c", - "ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c", - "ValueOneSong": "1 \u04d9\u0443\u0435\u043d", - "ValueSongCount": "{0} \u04d9\u0443\u0435\u043d", - "ValueOneMusicVideo": "1 \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435", - "ValueMusicVideoCount": "{0} \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435", - "HeaderOffline": "\u0414\u0435\u0440\u0431\u0435\u0441", - "HeaderUnaired": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0433\u0435\u043d", - "HeaderMissing": "\u0416\u043e\u049b", - "ButtonWebsite": "\u0421\u0430\u0439\u0442\u044b\u043d\u0430", - "TooltipFavorite": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b", - "TooltipLike": "\u04b0\u043d\u0430\u0439\u0434\u044b", - "TooltipDislike": "\u04b0\u043d\u0430\u043c\u0430\u0439\u0434\u044b", - "TooltipPlayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d", - "ValueSeriesYearToPresent": "{0} - \u049b\u0430\u0437\u0456\u0440\u0434\u0435", - "ValueAwards": "\u041c\u0430\u0440\u0430\u043f\u0430\u0442\u0442\u0430\u0440: {0}", - "ValueBudget": "\u0411\u044e\u0434\u0436\u0435\u0442\u0456: {0}", - "ValueRevenue": "\u0422\u0430\u0431\u044b\u0441\u044b: {0}", - "ValuePremiered": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430\u0441\u044b {0}", - "ValuePremieres": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430\u0441\u044b {0}", - "ValueStudio": "\u0421\u0442\u0443\u0434\u0438\u044f\u0441\u044b: {0}", - "ValueStudios": "\u0421\u0442\u0443\u0434\u0438\u044f\u043b\u0430\u0440\u044b: {0}", - "ValueStatus": "\u041a\u04af\u0439\u0456: {0}", - "ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}", - "LabelLimit": "\u0428\u0435\u0433\u0456:", - "ValueLinks": "\u0421\u0456\u043b\u0442\u0435\u043c\u0435\u043b\u0435\u0440: {0}", - "HeaderPeople": "\u0410\u0434\u0430\u043c\u0434\u0430\u0440", - "HeaderCastAndCrew": "\u0421\u043e\u043c\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u043c\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0443\u0448\u0456\u043b\u0435\u0440", - "ValueArtist": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b: {0}", - "ValueArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440: {0}", - "HeaderTags": "\u0422\u0435\u0433\u0442\u0435\u0440", - "MediaInfoCameraMake": "\u041a\u0430\u043c\u0435\u0440\u0430 \u04e9\u043d\u0434-\u0441\u0456", - "MediaInfoCameraModel": "\u041a\u0430\u043c\u0435\u0440\u0430 \u043c\u043e\u0434\u0435\u043b\u0456", - "MediaInfoAltitude": "\u0411\u0438\u0456\u043a\u0442\u0456\u0433\u0456", - "MediaInfoAperture": "\u0414\u0438\u0430\u0444\u0440\u0430\u0433\u043c\u0430\u0441\u044b", - "MediaInfoExposureTime": "\u042d\u043a\u0441\u043f-\u0446\u0438\u044f \u0443\u0430\u049b\u044b\u0442\u044b", - "MediaInfoFocalLength": "\u0422\u043e\u0493\u044b\u0441 \u049b\u0430\u0448-\u0493\u044b", - "MediaInfoOrientation": "\u0411\u0430\u0493\u0434\u0430\u0440\u044b", - "MediaInfoIsoSpeedRating": "ISO \u0436\u0430\u0440. \u049b\u043e\u0440\u044b\u043d-\u0493\u044b", - "MediaInfoLatitude": "\u0415\u043d\u0434\u0456\u0433\u0456", - "MediaInfoLongitude": "\u0411\u043e\u0439\u043b\u044b\u0493\u044b", - "MediaInfoShutterSpeed": "\u041e\u0431\u0442-\u0440 \u0436\u044b\u043b\u0434-\u0493\u044b", - "MediaInfoSoftware": "\u0411\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u0441\u044b", - "HeaderIfYouLikeCheckTheseOut": "\u0415\u0433\u0435\u0440 {0} \u04b1\u043d\u0430\u0441\u0430, \u0431\u04b1\u043b\u0430\u0440\u0434\u044b \u0431\u0430\u0439\u049b\u0430\u04a3\u044b\u0437...", - "HeaderPlotKeywords": "\u0421\u044e\u0436\u0435\u0442\u0442\u0456\u043d \u043a\u0456\u043b\u0442 \u0441\u04e9\u0437\u0434\u0435\u0440\u0456", - "HeaderMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440", - "HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440", - "HeaderGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440", - "HeaderBooks": "\u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440", - "HeaderEpisodes": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", - "HeaderSeasons": "\u041c\u0430\u0443\u0441\u044b\u043c\u0434\u0430\u0440", - "HeaderTracks": "\u0416\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440", - "HeaderItems": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440", - "HeaderOtherItems": "\u0411\u0430\u0441\u049b\u0430 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440", - "ButtonFullReview": "\u0422\u043e\u043b\u044b\u049b \u043f\u0456\u043a\u0456\u0440\u0441\u0430\u0440\u0430\u043f\u049b\u0430", - "ValueAsRole": "{0} \u0440\u0435\u0442\u0456\u043d\u0434\u0435", - "ValueGuestStar": "\u0428\u0430\u049b\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u0430\u043a\u0442\u0435\u0440", - "MediaInfoSize": "\u04e8\u043b\u0448\u0435\u043c\u0456", - "MediaInfoPath": "\u0416\u043e\u043b\u044b", - "MediaInfoFile": "\u0424\u0430\u0439\u043b", - "MediaInfoFormat": "\u041f\u0456\u0448\u0456\u043c\u0456", - "MediaInfoContainer": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u0456", - "MediaInfoDefault": "\u04d8\u0434\u0435\u043f\u043a\u0456", - "MediaInfoForced": "\u041c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456", - "MediaInfoExternal": "\u0421\u044b\u0440\u0442\u049b\u044b", - "MediaInfoTimestamp": "\u0423\u0430\u049b\u044b\u0442 \u0431\u0435\u043b\u0433\u0456\u0441\u0456", - "MediaInfoPixelFormat": "\u041f\u0438\u043a\u0441. \u043f\u0456\u0448\u0456\u043c\u0456", - "MediaInfoBitDepth": "\u0422\u04af\u0441 \u0442\u0435\u0440\u0435\u04a3\u0434\u0456\u0433\u0456", - "MediaInfoSampleRate": "\u04ae\u043b\u0433\u0456 \u0436\u0438\u0456\u043b\u0456\u0433\u0456", - "MediaInfoBitrate": "\u049a\u0430\u0440\u049b\u044b\u043d\u044b", - "MediaInfoChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440\u044b", - "MediaInfoLayout": "\u0416\u0430\u0439\u043b\u0430\u0441\u0442\u044b\u0440\u0443\u044b", - "MediaInfoLanguage": "\u0422\u0456\u043b\u0456", - "MediaInfoCodec": "\u041a\u043e\u0434\u0435\u043a", - "MediaInfoCodecTag": "\u041a\u043e\u0434\u0435\u043a \u0442\u0435\u0433\u0456", - "MediaInfoProfile": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b\u044b", - "MediaInfoLevel": "\u0414\u0435\u04a3\u0433\u0435\u0439\u0456", - "MediaInfoAspectRatio": "\u041f\u0456\u0448\u0456\u043c\u0434\u0456\u043a \u0430\u0440\u0430\u049b\u0430\u0442\u044b\u043d\u0430\u0441\u044b", - "MediaInfoResolution": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u044b\u043c\u0434\u044b\u0493\u044b", - "MediaInfoAnamorphic": "\u0410\u043d\u0430\u043c\u043e\u0440\u0444\u0442\u044b\u049b", - "MediaInfoInterlaced": "\u041a\u0435\u0437\u0435\u043a\u0442\u0435\u0441\u0443\u043b\u0456\u043a", - "MediaInfoFramerate": "\u041a\u0430\u0434\u0440 \u0436\u044b\u043b\u0434-\u0493\u044b", - "MediaInfoStreamTypeAudio": "\u0414\u044b\u0431\u044b\u0441", - "MediaInfoStreamTypeData": "\u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440", - "MediaInfoStreamTypeVideo": "\u0411\u0435\u0439\u043d\u0435", - "MediaInfoStreamTypeSubtitle": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440", - "MediaInfoStreamTypeEmbeddedImage": "\u0415\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0443\u0440\u0435\u0442", - "MediaInfoRefFrames": "\u0422\u0456\u0440\u0435\u043a \u043a\u0430\u0434\u0440\u043b\u0430\u0440", - "TabPlayback": "\u041e\u0439\u043d\u0430\u0442\u0443", - "TabNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440", - "TabExpert": "\u0421\u0430\u0440\u0430\u043f\u0442\u0430\u043c\u0430\u043b\u044b\u049b", - "HeaderSelectCustomIntrosPath": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", - "HeaderRateAndReview": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443 \u0436\u04d9\u043d\u0435 \u043f\u0456\u043a\u0456\u0440\u043b\u0435\u0441\u0443", - "HeaderThankYou": "\u0420\u0430\u0445\u043c\u0435\u0442 \u0441\u0456\u0437\u0433\u0435", - "MessageThankYouForYourReview": "\u041f\u0456\u043a\u0456\u0440\u0456\u04a3\u0456\u0437 \u04af\u0448\u0456\u043d \u0440\u0430\u0445\u043c\u0435\u0442 \u0441\u0456\u0437\u0433\u0435", - "LabelYourRating": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437", - "LabelFullReview": "\u041f\u0456\u043a\u0456\u0440 \u0442\u043e\u043b\u044b\u0493\u044b\u043c\u0435\u043d:", - "LabelShortRatingDescription": "\u0411\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b\u04a3 \u049b\u044b\u0441\u049b\u0430 \u0430\u049b\u043f\u0430\u0440\u044b:", - "OptionIRecommendThisItem": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u04b1\u0441\u044b\u043d\u0430\u043c\u044b\u043d", - "WebClientTourContent": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456, \u043a\u0435\u043b\u0435\u0441\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u049b\u0430\u0440\u0430\u04a3\u044b\u0437. \u0416\u0430\u0441\u044b\u043b \u0448\u0435\u043d\u0431\u0435\u0440\u043b\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u049b\u0430\u043d\u0448\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0431\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0434\u0456.", - "WebClientTourMovies": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0456 \u0431\u0430\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u043e\u0439\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", - "WebClientTourMouseOver": "\u041c\u0430\u04a3\u044b\u0437\u0434\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430 \u0436\u044b\u043b\u0434\u0430\u043c \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u0436\u0430\u0440\u049b\u0430\u0493\u0430\u0437\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u043d\u0434\u0435 \u0442\u0456\u043d\u0442\u0443\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0440\u0441\u0435\u0442\u043a\u0456\u0448\u0456\u043d \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437", - "WebClientTourTapHold": "\u041c\u04d9\u0442\u0456\u043d\u043c\u04d9\u043d\u0434\u0456\u043a \u043c\u04d9\u0437\u0456\u0440 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u0436\u0430\u0440\u049b\u0430\u0493\u0430\u0437\u0434\u044b \u0442\u04af\u0440\u0442\u0456\u043f \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437", - "WebClientTourMetadataManager": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456\u043d\u0456 \u0430\u0448\u0443 \u04af\u0448\u0456\u043d \u04e8\u04a3\u0434\u0435\u0443 \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0431\u0430\u0441\u044b\u04a3\u044b\u0437", - "WebClientTourPlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u0436\u04d9\u043d\u0435 \u043b\u0435\u0437\u0434\u0456\u043a \u049b\u043e\u0441\u043f\u0430\u043b\u0430\u0440\u0434\u044b \u0436\u0435\u04a3\u0456\u043b \u0436\u0430\u0441\u0430\u04a3\u044b\u0437, \u0436\u04d9\u043d\u0435 \u043e\u043b\u0430\u0440\u0434\u044b \u04d9\u0440\u049b\u0430\u0439\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u04a3\u044b\u0437", - "WebClientTourCollections": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456 \u0431\u0456\u0440\u0433\u0435 \u0442\u043e\u043f\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0444\u0438\u043b\u044c\u043c \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440\u044b\u043d \u0436\u0430\u0441\u0430\u04a3\u044b\u0437", - "WebClientTourUserPreferences1": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456 Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u0431\u04d9\u0440\u0456\u043d\u0434\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437 \u049b\u0430\u043b\u0430\u0439 \u049b\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0442\u0456\u043d \u0442\u04d9\u0441\u0456\u043b\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456", - "WebClientTourUserPreferences2": "\u04d8\u0440\u0431\u0456\u0440 Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b \u04af\u0448\u0456\u043d \u0434\u044b\u0431\u044b\u0441\u0442\u044b\u049b \u0436\u04d9\u043d\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0442\u0456\u043b\u0434\u0456\u043a \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u0431\u0456\u0440\u0436\u043e\u043b\u0493\u044b \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437", - "WebClientTourUserPreferences3": "\u04b0\u043d\u0430\u0442\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u043a\u043b\u0438\u0435\u043d\u0442\u0456\u043d\u0456\u04a3 \u0431\u0430\u0441\u0442\u044b \u0431\u0435\u0442\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0440\u0435\u0441\u0456\u043c\u0434\u0435\u04a3\u0456\u0437", - "WebClientTourUserPreferences4": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456, \u0442\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0441\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440\u0434\u044b \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437", - "WebClientTourMobile1": "\u0492\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u043a\u043b\u0438\u0435\u043d\u0442\u0456 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0434\u0430\u0440\u0434\u0430 \u0436\u04d9\u043d\u0435 \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0435\u0440\u0434\u0435 \u0442\u0430\u043c\u0430\u0448\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456", - "WebClientTourMobile2": "\u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b \u043c\u0435\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u043e\u04a3\u0430\u0439 \u0431\u0430\u0441\u049b\u0430\u0440\u0430\u0434\u044b", - "WebClientTourMySync": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u0430\u0440\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0437\u0456\u043d\u0434\u0456\u043a \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.", - "MessageEnjoyYourStay": "\u0416\u0430\u0493\u044b\u043c\u0434\u044b \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0437", - "DashboardTourDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u0431\u0430\u049b\u044b\u043b\u0430\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041a\u0456\u043c \u043d\u0435 \u0456\u0441\u0442\u0435\u0433\u0435\u043d\u0456\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0434\u0430 \u0442\u04b1\u0440\u0493\u0430\u043d\u044b\u043d \u0431\u0456\u043b\u0456\u043f \u0436\u0430\u0442\u0430\u0441\u044b\u0437.", - "DashboardTourHelp": "\u042d\u043a\u0440\u0430\u043d\u0434\u0430\u0493\u044b \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u049b\u0430\u0442\u044b\u0441\u0442\u044b \u0443\u0438\u043a\u0438 \u0431\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u044b\u043f \u0430\u0448\u0443 \u04af\u0448\u0456\u043d \u0456\u0448\u043a\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440\u0456\u043d \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456. ", - "DashboardTourUsers": "\u0414\u043e\u0441\u0442\u0430\u0440\u044b\u04a3\u044b\u0437 \u0431\u0435\u043d \u043e\u0442\u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u04d9\u0440\u049b\u0430\u0439\u0441\u044b\u043d\u0430 \u04e9\u0437\u0456\u043d\u0456\u04a3 \u049b\u04b1\u049b\u044b\u049b\u0442\u0430\u0440\u044b, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443, \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0431\u0430\u0440 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043d \u0436\u0435\u04a3\u0456\u043b \u0436\u0430\u0441\u0430\u04a3\u044b\u0437.", - "DashboardTourCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u04d9\u0441\u0435\u0440\u0456\u043c\u0435\u043d \u043a\u04e9\u0440\u0435\u0440\u043c\u0435\u043d\u0434\u0435\u0440 \u0437\u0430\u043b\u044b \u0441\u0435\u0437\u0456\u043c\u0456\u043d \u049b\u043e\u043d\u0430\u049b\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0493\u0430 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", - "DashboardTourChapters": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u049b\u0430\u0440\u0430\u0493\u0430\u043d \u043a\u0435\u0437\u0434\u0435 \u04b1\u043d\u0430\u043c\u0434\u044b\u043b\u0430\u0443 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c \u04af\u0448\u0456\u043d \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0442\u0443\u0434\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.", - "DashboardTourSubtitles": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0433\u0435 \u049b\u0430\u0439 \u0442\u0456\u043b\u0434\u0435 \u0431\u043e\u043b\u0441\u044b\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u04a3\u0456\u0437.", - "DashboardTourPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456, \u043c\u044b\u0441\u0430\u043b\u044b, \u0431\u0435\u0439\u043d\u0435\u043b\u0456\u043a \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0430\u0440\u043d\u0430\u043b\u0430\u0440\u044b\u043d, \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0442\u0434, \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0440\u0456\u043d \u0436\u0456\u043d\u0435 \u0442.\u0431. \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", - "DashboardTourNotifications": "\u0421\u0435\u0440\u0432\u0435\u0440 \u043e\u049b\u0438\u0493\u0430\u043b\u0430\u0440\u044b \u0442\u0443\u0440\u0430\u043b\u044b \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440\u0434\u044b \u04b1\u0442\u049b\u044b\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u04a3\u044b\u0437\u0493\u0430, \u044d-\u043f\u043e\u0448\u0442\u0430\u04a3\u044b\u0437\u0493\u0430 \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u0456\u0431\u0435\u0440\u0456\u04a3\u0456\u0437.", - "DashboardTourScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u04b1\u0437\u0430\u049b \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0430\u0442\u044b\u043d \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0435\u04a3\u0456\u043b \u0431\u0430\u0441\u049b\u0430\u0440\u044b\u04a3\u044b\u0437. \u0411\u04b1\u043b\u0430\u0440 \u049b\u0430\u0448\u0430\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u043d\u0434\u0430\u0439 \u0436\u0438\u0456\u043b\u0456\u043a\u043f\u0435\u043d \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0430\u0442\u044b\u043d\u044b\u043d \u0448\u0435\u0448\u0456\u04a3\u0456\u0437.", - "DashboardTourMobile": "Emby Server \u0431\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0434\u0430\u0440 \u043c\u0435\u043d \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0435\u0440\u0434\u0435 \u0437\u043e\u0440 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456. \u041a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0436\u0435\u0440\u0434\u0435, \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456 \u0430\u043b\u0430\u049b\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u0430\u0493\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c\u0435\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u044b\u04a3\u044b\u0437.", - "DashboardTourSync": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u0430\u0440\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0437\u0456\u043d\u0434\u0456\u043a \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.", - "MessageRefreshQueued": "\u0416\u0430\u04a3\u0493\u044b\u0440\u0442\u0443 \u043a\u0435\u0437\u0435\u043a\u0442\u0435", - "TabDevices": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440", - "TabExtras": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430\u043b\u0430\u0440", - "HeaderUploadImage": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0431\u0435\u0440\u0443", - "DeviceLastUsedByUserName": "{0} \u0430\u0440\u049b\u044b\u043b\u044b \u0435\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0493\u0430\u043d", - "HeaderDeleteDevice": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0436\u043e\u044e", - "DeleteDeviceConfirmation": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435? \u0411\u04b1\u043b \u043a\u0435\u043b\u0435\u0441\u0456 \u0440\u0435\u0442\u0442\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u043e\u0441\u044b\u0434\u0430\u043d \u043a\u0456\u0440\u0433\u0435\u043d\u0434\u0435 \u049b\u0430\u0439\u0442\u0430 \u043f\u0430\u0439\u0434\u0430 \u0431\u043e\u043b\u0430\u0434\u044b.", - "LabelEnableCameraUploadFor": "\u041c\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443:", - "HeaderSelectUploadPath": "\u041a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443 \u0436\u043e\u043b\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u0443", - "LabelEnableCameraUploadForHelp": "Emby \u0456\u0448\u0456\u043d\u0435 \u043a\u0456\u0440\u0433\u0435\u043d\u0434\u0435 \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443\u043b\u0430\u0440 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u04e9\u043d\u0434\u0456\u043a \u0440\u0435\u0436\u0456\u043c\u0456\u043d\u0434\u0435 \u04e9\u0442\u0435\u0434\u0456.", - "ErrorMessageStartHourGreaterThanEnd": "\u0410\u044f\u049b\u0442\u0430\u0443 \u0443\u0430\u049b\u044b\u0442\u044b \u0431\u0430\u0441\u0442\u0430\u0443 \u0443\u0430\u049b\u044b\u0442\u044b\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d\u0440\u0435\u043a \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.", - "ButtonLibraryAccess": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443", - "ButtonParentalControl": "\u041c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0431\u0430\u0441\u049b\u0430\u0440\u0443", - "HeaderInvitationSent": "\u0428\u0430\u049b\u044b\u0440\u0443 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0434\u0456", - "MessageInvitationSentToUser": "\u041e\u043b\u0430\u0440\u0493\u0430 \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u0448\u0430\u049b\u044b\u0440\u0443\u044b\u04a3\u044b\u0437\u0434\u044b \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443 \u04b1\u0441\u044b\u043d\u044b\u0441\u044b\u043c\u0435\u043d, \u044d-\u043f\u043e\u0448\u0442\u0430 {0} \u0430\u0440\u043d\u0430\u043f \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0434\u0456.", - "MessageInvitationSentToNewUser": "Emby \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0443 \u0448\u0430\u049b\u044b\u0440\u0443\u044b\u04a3\u044b\u0437, \u044d-\u043f\u043e\u0448\u0442\u0430 {0} \u04af\u0448\u0456\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0434\u0456.", - "HeaderConnectionFailure": "\u049a\u043e\u0441\u044b\u043b\u0443 \u0441\u04d9\u0442\u0441\u0456\u0437", - "MessageUnableToConnectToServer": "\u0422\u0430\u04a3\u0434\u0430\u043b\u0493\u0430\u043d \u0441\u0435\u0440\u0432\u0435\u0440\u0433\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u044b\u043c\u044b\u0437 \u0434\u04d9\u043b \u049b\u0430\u0437\u0456\u0440 \u043c\u04af\u043c\u043a\u0456\u043d \u0435\u043c\u0435\u0441. \u0411\u04b1\u043b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "ButtonSelectServer": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", - "MessagePluginConfigurationRequiresLocalAccess": "\u041e\u0441\u044b \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043a\u0456\u0440\u0456\u04a3\u0456\u0437.", - "MessageLoggedOutParentalControl": "\u0410\u0493\u044b\u043c\u0434\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u0448\u0435\u043a\u0442\u0435\u043b\u0433\u0435\u043d. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "DefaultErrorMessage": "\u0421\u0430\u0443\u0430\u043b \u04e9\u04a3\u0434\u0435\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "ButtonAccept": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u0443", - "ButtonReject": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u043c\u0430\u0443", - "HeaderForgotPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u04b1\u043c\u044b\u0442\u044b\u04a3\u044b\u0437 \u0431\u0430?", - "MessageContactAdminToResetPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u0436\u04af\u0439\u0435\u043b\u0456\u043a \u04d9\u043a\u0456\u043c\u0448\u0456\u04a3\u0456\u0437\u0433\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437.", - "MessageForgotPasswordInNetworkRequired": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u04af\u0448\u0456\u043d \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u04af\u0439\u043b\u0456\u043a \u0436\u0435\u043b\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0456\u0448\u0456\u043d\u0434\u0435 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "MessageForgotPasswordFileCreated": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0444\u0430\u0439\u043b \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0435 \u0436\u0430\u0441\u0430\u043b\u0434\u044b \u0436\u04d9\u043d\u0435 \u049b\u0430\u043b\u0430\u0439 \u043a\u0456\u0440\u0456\u0441\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440 \u0456\u0448\u0456\u043d\u0434\u0435 \u0431\u0430\u0440:", - "MessageForgotPasswordFileExpiration": "PIN \u044b\u0441\u044b\u0440\u0443 \u043c\u0435\u0437\u0433\u0456\u043b\u0456 {0} \u0431\u0456\u0442\u0435\u0434\u0456.", - "MessageInvalidForgotPasswordPin": "\u0416\u0430\u0440\u0430\u043c\u0441\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 \u0430\u044f\u049b\u0442\u0430\u043b\u0493\u0430\u043d PIN \u0435\u043d\u0433\u0456\u0437\u0456\u043b\u0434\u0456. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "MessagePasswordResetForUsers": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0435\u0440 \u043c\u044b\u043d\u0430\u0434\u0430\u0439 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0434\u044b. \u0416\u04af\u0439\u0435\u0433\u0435 \u04af\u0448\u0456\u043d, \u0431\u043e\u0441 \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0431\u0435\u043d \u043a\u0456\u0440\u0456\u04a3\u0456\u0437.", - "HeaderInviteGuest": "\u049a\u043e\u043d\u0430\u049b\u0442\u044b \u0448\u0430\u049b\u044b\u0440\u0443", - "ButtonLinkMyEmbyAccount": "\u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043c\u0434\u0456 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u0443", - "MessageConnectAccountRequiredToInviteGuest": "\u049a\u043e\u043d\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u0448\u0430\u049b\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u0435\u04a3 \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0441\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0433\u0435 Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0434\u0456 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u0440\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442.", - "ButtonSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "SyncMedia": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "HeaderCancelSyncJob": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443", - "CancelSyncJobConfirmation": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443\u044b \u043a\u0435\u043b\u0435\u0441\u0456 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u043e\u044f\u0434\u044b. \u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043a\u0456\u0440\u0456\u0441\u0443 \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "TabSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "MessagePleaseSelectDeviceToSyncTo": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.", - "MessageSyncJobCreated": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b \u0436\u0430\u0441\u0430\u043b\u0434\u044b.", - "LabelSyncTo": "\u041e\u0441\u044b\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443:", - "LabelSyncJobName": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d\u044b\u04a3 \u0430\u0442\u044b:", - "LabelQuality": "\u0421\u0430\u043f\u0430\u0441\u044b:", - "HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440", - "OptionAutomaticallySyncNewContent": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "OptionAutomaticallySyncNewContentHelp": "\u0416\u0430\u04a3\u0430\u0434\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u043e\u0441\u044b \u049b\u04b1\u0440-\u043c\u0435\u043d \u04af\u043d\u0434-\u0434\u0456.", - "OptionSyncUnwatchedVideosOnly": "\u049a\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456 \u04af\u043d\u0434-\u0456\u0440\u0443", - "OptionSyncUnwatchedVideosOnlyHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u043d\u0434-\u0434\u0456, \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u049b\u04b1\u0440-\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0430\u0434\u044b.", - "LabelItemLimit": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0448\u0435\u0433\u0456:", - "LabelItemLimitHelp": "\u041c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441: \u04ae\u043d\u0434-\u0442\u0456\u043d \u0442\u0430\u0440\u043c\u0430\u049b \u0441\u0430\u043d\u044b \u0448\u0435\u0433\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.", - "MessageBookPluginRequired": "Bookshelf \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456", - "MessageGamePluginRequired": "GameBrowser \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456", - "MessageUnsetContentHelp": "\u041c\u0430\u0437\u043c\u04b1\u043d \u043a\u04d9\u0434\u0456\u043c\u0433\u0456 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456. \u0415\u04a3 \u0436\u0430\u049b\u0441\u044b \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u0430\u043b\u0443 \u04af\u0448\u0456\u043d, \u0456\u0448\u043a\u0456 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u044b\u04a3 \u043c\u0430\u0437\u043c\u04af\u043d \u0442\u04af\u0440\u043b\u0435\u0440\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043f \u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456\u043d\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437", - "SyncJobItemStatusQueued": "\u041a\u0435\u0437\u0435\u043a\u0442\u0435", - "SyncJobItemStatusConverting": "\u0422\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0435", - "SyncJobItemStatusTransferring": "\u0410\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0434\u0430", - "SyncJobItemStatusSynced": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d", - "SyncJobItemStatusFailed": "\u0421\u04d9\u0442\u0441\u0456\u0437", - "SyncJobItemStatusRemovedFromDevice": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u043b\u0493\u0430\u043d", - "SyncJobItemStatusCancelled": "\u0411\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b", - "LabelProfile": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b:", - "LabelBitrateMbps": "\u049a\u0430\u0440\u049b\u044b\u043d\u044b (\u041c\u0431\u0438\u0442\/\u0441):", - "EmbyIntroDownloadMessage": "Emby Server \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u043c\u0435\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d {0} \u0431\u0430\u0440\u044b\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437.", - "ButtonNewServer": "\u0416\u0430\u04a3\u0430 \u0441\u0435\u0440\u0432\u0435\u0440", - "ButtonSignInWithConnect": "Emby Connect \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u043e\u0441\u044b\u043b\u0443", - "HeaderNewServer": "\u0416\u0430\u04a3\u0430 \u0441\u0435\u0440\u0432\u0435\u0440", - "MyDevice": "\u041c\u0435\u043d\u0456\u04a3 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043c", - "ButtonRemote": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443", - "TabInfo": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b \u0442\u0443\u0440\u0430\u043b\u044b", - "TabCast": "\u0421\u043e\u043c\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440", - "TabScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440", - "HeaderUnlockApp": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", - "HeaderUnlockSync": "Emby \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0434\u0456 \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", - "MessageUnlockAppWithPurchaseOrSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0456\u0440 \u0436\u043e\u043b\u0493\u044b \u0441\u0430\u0442\u044b\u043f \u0430\u043b\u0443, \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.", - "MessageUnlockAppWithSupporter": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443.", - "MessageToValidateSupporter": "\u0415\u0433\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u0431\u0430\u0440 \u0431\u043e\u043b\u0441\u0430, \u04af\u0439\u043b\u0456\u043a \u0436\u0435\u043b\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0456\u0448\u0456\u043d\u0434\u0435 Wifi-\u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u0436\u0430\u0439 \u0493\u0430\u043d\u0430 \u0431\u0456\u0440 \u0440\u0435\u0442 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u043a\u0456\u0440\u0456\u04a3\u0456\u0437.", - "MessagePaymentServicesUnavailable": "\u0422\u04e9\u043b\u0435\u043c \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0456 \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "MessagePleaseSignInLocalNetwork": "\u041e\u0440\u044b\u043d\u0434\u0430\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d, \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0435\u043b\u0456\u0433\u0435 Wifi \u043d\u0435\u043c\u0435\u0441\u0435 LAN \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u044b \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0456\u04a3\u0456\u0437.", - "ButtonUnlockWithPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443\u043c\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443", - "ButtonUnlockPrice": "{0} \u049b\u04b1\u043b\u044b\u043f\u0442\u0430\u043c\u0430\u0443", - "MessageLiveTvGuideRequiresUnlock": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0435 \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 {0} \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0448\u0435\u043a\u0442\u0435\u043b\u0435\u0434\u0456. \u0422\u043e\u043b\u044b\u049b \u0442\u04d9\u0436\u0440\u0438\u0431\u0435 \u0430\u043b\u0443\u0493\u0430 \u04af\u0439\u0440\u0435\u043d\u0443 \u04af\u0448\u0456\u043d \u049a\u04b1\u0440\u0441\u0430\u0443\u044b\u043d \u0431\u043e\u0441\u0430\u0442\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", - "OptionEnableFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d\u0434\u044b \u049b\u043e\u0441\u0443", - "ButtonServer": "\u0421\u0435\u0440\u0432\u0435\u0440", - "HeaderAdmin": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443", - "HeaderLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430", - "HeaderMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440", - "ButtonInbox": "\u041a\u0456\u0440\u0435\u0441\u0456\u043d", - "HeaderAdvanced": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d", - "HeaderGroupVersions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443", - "HeaderSaySomethingLike": "\u041e\u0441\u044b\u043d\u0434\u0430\u0439 \u0441\u0438\u044f\u049b\u0442\u044b\u043d\u044b \u0430\u0439\u0442\u044b\u04a3\u044b\u0437...", - "ButtonTryAgain": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u0443", - "HeaderYouSaid": "\u0421\u0456\u0437 \u0430\u0439\u0442\u049b\u0430\u043d\u044b\u04a3\u044b\u0437...", - "MessageWeDidntRecognizeCommand": "\u041e\u0441\u044b\u043d\u0434\u0430\u0439 \u043f\u04d9\u0440\u043c\u0435\u043d\u0434\u0456 \u0442\u0430\u043d\u044b\u043f \u0430\u0439\u044b\u0440\u043c\u0430\u0434\u044b\u049b.", - "MessageIfYouBlockedVoice": "\u0415\u0433\u0435\u0440 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u0434\u0430\u0443\u044b\u0441\u0442\u044b\u049b \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u0430\u043d \u0431\u0430\u0441 \u0442\u0430\u0440\u0442\u0441\u0430\u04a3\u044b\u0437, \u049b\u0430\u0439\u0442\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u043d\u0443\u0456\u04a3\u0456\u0437\u0434\u0435\u043d \u0430\u043b\u0434\u044b\u043d\u0430\u043d \u049b\u0430\u0439\u0442\u0430 \u0442\u0435\u04a3\u0448\u0435\u0443\u0456\u04a3\u0456\u0437 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.", - "MessageNoItemsFound": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.", - "ButtonManageServer": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443", - "ButtonEditSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u04e9\u04a3\u0434\u0435\u0443", - "ButtonPreferences": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440", - "ButtonViewArtist": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043d\u044b \u049b\u0430\u0440\u0430\u0443", - "ButtonViewAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u044b \u049b\u0430\u0440\u0430\u0443", - "ButtonEditImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u04e9\u04a3\u0434\u0435\u0443", - "ErrorMessagePasswordNotMatchConfirm": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437 \u0431\u0435\u043d \u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437 \u0440\u0430\u0441\u0442\u0430\u0443 \u04e9\u0440\u0456\u0441\u0442\u0435\u0440\u0456 \u0441\u04d9\u0439\u043a\u0435\u0441 \u0431\u043e\u043b\u0443\u044b \u049b\u0430\u0436\u0435\u0442.", - "ErrorMessageUsernameInUse": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u0434\u0430. \u0416\u0430\u04a3\u0430 \u0430\u0442\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0434\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "ErrorMessageEmailInUse": "\u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u0434\u0430. \u0416\u0430\u04a3\u0430 \u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0434\u0430 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437, \u043d\u0435\u043c\u0435\u0441\u0435 \u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0435\u0441\u043a\u0435 \u0441\u0430\u043b\u0443 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.", - "MessageThankYouForConnectSignUp": "Emby Connect \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0435\u043d\u0433\u0435 \u0430\u043b\u0493\u044b\u0441. \u041c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0493\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0442\u0456\u043d \u042d-\u043f\u043e\u0448\u0442\u0430 \u0445\u0430\u0431\u0430\u0440\u044b\u043d\u0434\u0430 \u0436\u0430\u04a3\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0434\u0456 \u049b\u0430\u043b\u0430\u0439 \u0440\u0430\u0441\u0442\u0430\u0443 \u0442\u0443\u0440\u0430\u043b\u044b \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440 \u0431\u043e\u043b\u0430\u0434\u044b. \u041a\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043d\u0456 \u0440\u0430\u0441\u0442\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u043a\u0435\u0439\u0456\u043d \u043e\u0441\u044b\u043d\u0434\u0430 \u049b\u0430\u0439\u0442\u0430 \u043e\u0440\u0430\u043b\u044b\u04a3\u044b\u0437.", - "HeaderShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443", - "ButtonShareHelp": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442\u0442\u0456\u043a \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u0442\u044b \u049b\u0430\u043c\u0442\u0438\u0442\u044b\u043d \u0432\u0435\u0431-\u0431\u0435\u0442\u0456\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443. \u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0435\u0448\u049b\u0430\u0448\u0430\u043d \u043e\u0440\u0442\u0430\u049b \u0436\u0430\u0440\u0438\u044f\u043b\u0430\u043d\u0431\u0430\u0439\u0434\u044b.", - "ButtonShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443", - "HeaderConfirm": "\u0420\u0430\u0441\u0442\u0430\u0443", - "ButtonAdvancedRefresh": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443", - "MessageConfirmDeleteTunerDevice": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u0431\u04b1\u043b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "MessageConfirmDeleteGuideProvider": "\u0428\u044b\u043d\u044b\u043c\u0435\u043d \u043e\u0441\u044b \u0422\u0435\u043b\u0435\u0433\u0438\u0434 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456\u043d \u0436\u043e\u044e \u049b\u0430\u0436\u0435\u0442 \u043f\u0435?", - "HeaderDeleteProvider": "\u0416\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u043d\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u0443", - "HeaderAddProvider": "\u0416\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u043d\u0456 \u04af\u0441\u0442\u0435\u0443", - "ErrorAddingTunerDevice": "\u0422\u044e\u043d\u0435\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0411\u04b1\u043b \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "ErrorSavingTvProvider": "\u0422\u0414 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456\u043d \u0441\u0430\u049b\u0442\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0411\u04b1\u043b \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "ErrorGettingTvLineups": "\u0422\u0414 \u043a\u0435\u0437\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u041c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440\u0456\u04a3\u0456\u0437 \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "MessageCreateAccountAt": "{0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0443", - "ErrorPleaseSelectLineup": "\u0422\u0456\u0437\u0431\u0435\u043a\u0442\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437. \u0415\u0433\u0435\u0440 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0442\u0456\u0437\u0431\u0435\u043a \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0431\u043e\u043b\u043c\u0430\u0441\u0430, \u043e\u043d\u0434\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b\u04a3\u044b\u0437\u0434\u044b, \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043f\u043e\u0448\u0442\u0430 \u043a\u043e\u0434\u044b\u043d \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0456\u04a3\u0456\u0437.", - "HeaderTryEmbyPremiere": "Emby Premiere \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", - "ButtonBecomeSupporter": "Emby Premiere \u0430\u043b\u0443", - "ButtonClosePlayVideo": "\u0416\u0430\u0431\u0443 \u043c\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448. \u043e\u0439\u043d\u0430\u0442\u0443", - "MessageDidYouKnowCinemaMode": "Emby Premiere \u0430\u0440\u049b\u044b\u043b\u044b, \u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0441\u0438\u044f\u049b\u0442\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u043c\u0435\u043d \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u0443\u0440\u0430\u043b\u044b \u0431\u0456\u043b\u0435\u0441\u0456\u0437 \u0431\u0435?", - "MessageDidYouKnowCinemaMode2": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u043d\u0435\u0433\u0456\u0437\u0433\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", - "OptionEnableDisplayMirroring": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443\u0434\u0456\u04a3 \u0442\u0435\u043b\u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u049b\u043e\u0441\u0443", - "HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b \u049b\u0430\u0436\u0435\u0442", - "HeaderSyncRequiresSupporterMembershipAppVersion": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby Premiere \u0436\u0430\u0437\u044b\u043b\u044b\u043c\u044b\u043c\u0435\u043d Emby Server \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0443 \u049b\u0430\u0436\u0435\u0442", - "ErrorValidatingSupporterInfo": "Emby Premiere \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "HeaderSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "LabelLocalSyncStatusValue": "\u041a\u04af\u0439\u0456: {0}", - "MessageSyncStarted": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b", - "OptionPoster": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437", - "OptionPosterCard": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437-\u043a\u0430\u0440\u0442\u0430", - "OptionTimeline": "\u0423\u0430\u049b\u044b\u0442 \u0448\u043a\u0430\u043b\u0430\u0441\u044b", - "OptionList": "\u0422\u0456\u0437\u0456\u043c", - "OptionThumb": "\u041d\u043e\u0431\u0430\u0439", - "OptionThumbCard": "\u041d\u043e\u0431\u0430\u0439-\u043a\u0430\u0440\u0442\u0430", - "OptionBanner": "\u0411\u0430\u043d\u043d\u0435\u0440", - "NoSlideshowContentFound": "\u0415\u0448 \u0441\u043b\u0430\u0439\u0434\u0448\u043e\u0443 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0493\u0430\u043d.", - "OptionPhotoSlideshow": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0441\u043b\u0430\u0439\u0434\u0448\u043e\u0443\u044b", - "OptionBackdropSlideshow": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0441\u043b\u0430\u0439\u0434\u0448\u043e\u0443\u044b", - "HeaderTopPlugins": "\u0422\u0430\u043d\u044b\u043c\u0430\u043b \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440", - "ButtonRecord": "\u0416\u0430\u0437\u0443", - "ButtonOther": "\u0411\u0430\u0441\u049b\u0430", - "HeaderSortBy": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0442\u04d9\u0441\u0456\u043b\u0456", - "HeaderSortOrder": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443 \u0440\u0435\u0442\u0456", - "OptionAscending": "\u0410\u0440\u0442\u0443\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430", - "OptionDescending": "\u041a\u0435\u043c\u0443\u0456 \u0431\u043e\u0439\u044b\u043d\u0448\u0430", - "OptionNameSort": "\u0410\u0442\u044b", - "OptionTvdbRating": "Tvdb \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b", - "OptionPremiereDate": "\u0422\u04b1\u0441\u0430\u0443\u043a\u0435\u0441\u0435\u0440 \u043a\u04af\u043d-\u0430\u0439\u044b", - "OptionImdbRating": "IMDb \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b", - "OptionDatePlayed": "\u041e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u043a\u04af\u043d\u0456", - "OptionDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456", - "OptionPlayCount": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0435\u0441\u0435\u0431\u0456", - "ButtonDisconnect": "\u0410\u0436\u044b\u0440\u0430\u0442\u0443", - "OptionAlbumArtist": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u0441\u044b", - "OptionArtist": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b", - "OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", - "OptionTrackName": "\u0416\u043e\u043b\u0448\u044b\u049b \u0430\u0442\u044b", - "OptionCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b", - "ButtonSort": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u0443", - "ButtonMenu": "\u041c\u04d9\u0437\u0456\u0440", - "OptionDefaultSort": "\u04d8\u0434\u0435\u043f\u043a\u0456", - "ButtonFilter": "\u0421\u04af\u0437\u0443", - "OptionCriticRating": "\u0421\u044b\u043d\u0448\u044b\u043b\u0430\u0440 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b", - "OptionVideoBitrate": "\u0411\u0435\u0439\u043d\u0435 \u049b\u0430\u0440\u049b\u044b\u043d\u044b", - "OptionMetascore": "Metascore \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b", - "OptionRevenue": "\u0422\u0430\u0431\u044b\u0441", - "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", - "ForAdditionalLiveTvOptions": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u043b\u0435\u0440 \u04af\u0448\u0456\u043d, \u0421\u044b\u0440\u0442\u049b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u049b\u043e\u0439\u044b\u043d\u0434\u044b\u0441\u044b\u043d \u043d\u04b1\u049b\u044b\u043f, \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0442\u0435\u0440\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u04a3\u044b\u0437.", - "ButtonGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434", - "ButtonRecordedTv": "\u0416\u0430\u0437\u044b\u043b\u0493\u0430\u043d \u0422\u0414", - "HeaderDisconnectFromPlayer": "\u041e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u043d \u0430\u0436\u044b\u0440\u0430\u0442\u0443", - "ConfirmEndPlayerSession": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 Emby \u0436\u0430\u0431\u0443\u044b\u043d \u049b\u0430\u043b\u0430\u0439\u0441\u044b\u0437 \u0431\u0430?", - "ButtonYes": "\u0418\u04d9", - "ButtonNo": "\u0416\u043e\u049b", - "ButtonRestorePreviousPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0493\u0430\u043d\u0434\u044b \u049b\u0430\u043b\u043f\u044b\u043d\u0430 \u043a\u0435\u043b\u0442\u0456\u0440\u0443", - "AlreadyPaid": "\u04d8\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d \u0442\u04e9\u043b\u0435\u043d\u0434\u0456 \u043c\u0435?", - "AlreadyPaidHelp1": "\u0415\u0433\u0435\u0440 \u04d9\u043b\u0434\u0435\u049b\u0430\u0448\u0430\u043d Media Browser for Android \u0435\u0441\u043a\u0456 \u043d\u04b1\u0441\u049b\u0430\u0441\u044b\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043b\u0435\u0433\u0435\u043d \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0441\u0456\u0437\u0433\u0435 \u043e\u0441\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u0434\u0430\u043d \u0442\u04e9\u043b\u0435\u0443\u0433\u0435 \u049b\u0430\u0436\u0435\u0442\u0456 \u0436\u043e\u049b. \u0411\u0456\u0437\u0433\u0435 {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u0493\u0430 \u0445\u0430\u0442 \u0436\u0456\u0431\u0435\u0440\u0443 \u04af\u0448\u0456\u043d \u0416\u0430\u0440\u0430\u0439\u0434\u044b \u0434\u0435\u0433\u0435\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0441\u0456\u0437 \u04af\u0448\u0456\u043d \u0431\u0456\u0437 \u043e\u043d\u044b \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0435\u043c\u0456\u0437.", - "AlreadyPaidHelp2": "Emby Premiere \u0431\u0430\u0440 \u043c\u0430? \u0416\u0430\u0439 \u0493\u0430\u043d\u0430 \u0431\u04b1\u043b \u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0434\u0456 \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u04a3\u044b\u0437, \u0441\u0456\u0437\u0434\u0456\u04a3 \u04af\u0439\u043b\u0456\u043a WiFi-\u0436\u0435\u043b\u0456\u0441\u0456 \u0456\u0448\u0456\u043d\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0493\u0430 \u043a\u0456\u0440\u0456\u04a3\u0456\u0437, \u0441\u043e\u043d\u0434\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u043e\u043d\u044b\u04a3 \u049b\u04b1\u043b\u043f\u044b \u0430\u0448\u044b\u043b\u0430\u0434\u044b.", - "ButtonForYou": "\u0421\u0456\u0437 \u04af\u0448\u0456\u043d...", - "ButtonLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430...", - "ButtonSearch": "\u0406\u0437\u0434\u0435\u0443", - "ButtonNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430...", - "ButtonViewNewApp": "\u0416\u0430\u04a3\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043d\u044b \u049b\u0430\u0440\u0430\u0443", - "HeaderEmbyForAndroidHasMoved": "Android \u04af\u0448\u0456\u043d Emby \u0436\u044b\u043b\u0436\u044b\u0442\u044b\u043b\u0493\u0430\u043d!", - "MessageEmbyForAndroidHasMoved": "Android \u04af\u0448\u0456\u043d Emby \u0436\u0430\u04a3\u0430 App Store \u043e\u0440\u044b\u043d\u044b\u043d\u0430 \u043a\u04e9\u0448\u0442\u0456. \u0416\u0430\u04a3\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0442\u0435\u043a\u0441\u0435\u0440\u0443\u0456\u043d \u0435\u0441\u043a\u0435\u0440\u0456\u04a3\u0456\u0437. \u041e\u0441\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u043d \u049b\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u04b1\u0437\u0430\u049b \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.", - "HeaderNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456", - "HeaderLatestMovies": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440", - "HeaderLatestEpisodes": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440", - "EmbyPremiereMonthly": "Emby Premiere \u0430\u0439 \u0431\u043e\u0439\u044b\u043d\u0448\u0430", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere \u0430\u0439 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 {0}", - "HeaderEmailAddress": "\u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b", - "TextPleaseEnterYourEmailAddressForSubscription": "\u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u04a3\u044b\u0437\u0434\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437", - "LoginDisclaimer": "Emby \u0436\u0435\u043a\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u04a3\u044b\u0437\u0434\u044b (\u043c\u044b\u0441\u0430\u043b\u044b, \u04af\u0439\u043b\u0456\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u043c\u0435\u043d \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456) \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0493\u0430 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u04af\u0448\u0456\u043d \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d. \u0411\u0456\u0437\u0434\u0456\u04a3 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u049b\u0430\u0440\u0430\u04a3\u044b\u0437. \u041a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d Emby \u0431\u0430\u0493\u0434\u0430\u0440\u043b\u0430\u043c\u0430\u043b\u044b\u049b \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u043c\u0430\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u043d\u0493\u0430\u043d\u0434\u0430 \u043e\u0441\u044b \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u0434\u044b\u04a3 \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0443\u044b\u043d \u0431\u0456\u043b\u0434\u0456\u0440\u0435\u0434\u0456.", - "TermsOfUse": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b", - "HeaderTryMultiSelect": "\u04ae\u043d\u0434\u0435\u0441\u043a\u0435\u043d \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u0443\u0434\u0456 \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0443", - "TryMultiSelectMessage": "\u0411\u0456\u0440\u043d\u0435\u0448\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456\u043d \u04e9\u04a3\u0434\u0435\u0443 \u04af\u0448\u0456\u043d, \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u043f\u043e\u0441\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0439 \u0493\u0430\u043d\u0430 \u0442\u0456\u043d\u0442\u0443\u0456\u0440 \u0431\u0430\u0442\u044b\u0440\u043c\u0430\u0493\u0430 \u0431\u0430\u0441\u044b\u043f \u0442\u04b1\u0440\u044b\u043f \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u044b\u043d \u049b\u0430\u043b\u0430\u0493\u0430\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0434\u0456 \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u04a3\u0456\u0437. \u0421\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437!", - "NumLocationsValue": "{0} \u049b\u0430\u043b\u0442\u0430", - "ButtonAddMediaLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u04af\u0441\u0442\u0435\u0443", - "ButtonManageFolders": "\u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u044b \u0431\u0430\u0441\u049b\u0430\u0440\u0443", - "HeaderTryDragAndDrop": "\u0410\u043f\u0430\u0440\u044b\u043f \u0442\u0430\u0441\u0442\u0430\u0443\u0434\u044b \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", - "TryDragAndDropMessage": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0456\u04a3 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0440\u0435\u0442\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u0439 \u0493\u0430\u043d\u0430 \u0430\u043f\u0430\u0440\u044b\u043f \u0442\u0430\u0441\u0442\u0430\u04a3\u044b\u0437. \u0421\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437!", - "HeaderTryMicrosoftEdge": "Microsoft Edge \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", - "MessageTryMicrosoftEdge": "Windows 10 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u043d\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 Microsoft Edge \u0448\u043e\u043b\u0493\u044b\u0448\u044b\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.", - "HeaderTryModernBrowser": "\u0417\u0430\u043c\u0430\u043d\u0430\u0443\u0438 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", - "MessageTryModernBrowser": "Windows \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u0441\u0456\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d, \u0436\u0430\u04a3\u0430 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d, \u043c\u044b\u0441\u0430\u043b\u044b, Google Chrome, Firefox \u043d\u0435 Opera \u0430\u0440\u049b\u044b\u043b\u044b \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.", - "ErrorAddingListingsToSchedulesDirect": "Schedules Direct \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0456\u0437\u0431\u0435\u043a \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. Schedules Direct \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0434\u0435 \u0442\u0456\u0437\u0431\u0435\u043a\u0442\u0435\u0440\u0434\u0456\u04a3 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0448\u0435\u043a\u0442\u0435\u0443\u043b\u0456 \u0441\u0430\u043d\u044b \u0440\u0443\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u0435\u0434\u0456. \u041e\u0440\u044b\u043d\u0434\u0430\u043c\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d Schedules Direct \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u043a\u0456\u0440\u0456\u043f \u0436\u04d9\u043d\u0435 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0434\u0435\u043d \u0431\u0430\u0441\u049b\u0430 \u0442\u0456\u0437\u0431\u0435\u043b\u0435\u0440\u0434\u0456 \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.", - "PleaseAddAtLeastOneFolder": "\u049a\u043e\u0441\u0443 \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u0443 \u0430\u0440\u049b\u044b\u043b\u044b, \u043e\u0441\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0493\u0430 \u043a\u0435\u043c \u0434\u0435\u0433\u0435\u043d\u0434\u0435 \u0431\u0456\u0440 \u049b\u0430\u043b\u0442\u0430 \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.", - "ErrorAddingMediaPathToVirtualFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u043e\u043b\u044b\u043d \u04af\u0441\u0442\u0435\u0433\u0435\u043d \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0416\u043e\u043b \u0434\u04b1\u0440\u044b\u0441 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u0436\u04d9\u043d\u0435 Emby Server \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043e\u0441\u044b \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0439\u0442\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.", - "ErrorRemovingEmbyConnectAccount": "Emby Connect \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0430\u043b\u0430\u0441\u0442\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. \u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b \u0431\u0430\u0440 \u0435\u043a\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437 \u0436\u04d9\u043d\u0435 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0456 \u043a\u0435\u0439\u0456\u043d \u049b\u0430\u0439\u0442\u0430\u043b\u0430\u04a3\u044b\u0437.", - "ErrorAddingEmbyConnectAccount1": "Emby Connect \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u04af\u0441\u0442\u0435\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u0430\u0442\u0435 \u043e\u0440\u044b\u043d \u0430\u043b\u0434\u044b. Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0436\u0430\u0441\u0430\u0434\u044b\u04a3\u044b\u0437 \u0431\u0430? {0} \u0436\u0430\u043d\u044b\u043d\u0434\u0430 \u0442\u0456\u0440\u043a\u0435\u043b\u0456\u04a3\u0456\u0437.", - "ErrorAddingEmbyConnectAccount2": "\u0422\u0456\u0440\u043a\u0435\u043b\u0433\u0456 \u0436\u0430\u0441\u0430\u0493\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u044d-\u043f\u043e\u0448\u0442\u0430\u043c\u0435\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u0430\u0440\u0493\u0430 \u0441\u04d9\u0439\u043a\u0435\u0441 Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d\u0456\u043d\u0435 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u043e\u0441\u044b \u044d-\u043f\u043e\u0448\u0442\u0430 \u0430\u043b\u044b\u043d\u0431\u0430\u0493\u0430\u043d \u0431\u043e\u043b\u0441\u0430, Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0493\u0430\u043d \u044d-\u043f\u043e\u0448\u0442\u0430 \u0430\u0440\u049b\u044b\u043b\u044b {0} \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d\u0430 \u0445\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0456\u04a3\u0456\u0437.", - "HeaderFavoriteArtists": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440", - "HeaderFavoriteSongs": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440", - "HeaderConfirmPluginInstallation": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043c\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u0443", - "PleaseConfirmPluginInstallation": "\u0416\u043e\u0493\u0430\u0440\u044b\u0434\u0430\u0493\u044b\u043d\u044b \u043e\u049b\u044b\u043f \u0448\u044b\u049b\u049b\u0430\u043d\u044b\u04a3\u044b\u0437\u0434\u044b \u0436\u04d9\u043d\u0435 \u043f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0443\u044b\u04a3\u044b\u0437\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0416\u0430\u0440\u0430\u0439\u0434\u044b \u0434\u0435\u0433\u0435\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.", - "MessagePluginInstallDisclaimer": "Emby \u049b\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0493\u044b \u043c\u04af\u0448\u0435\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u0430\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 Emby \u0442\u04d9\u0436\u0456\u0440\u0438\u0431\u0435\u04a3\u0456\u0437\u0434\u0456 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u043c\u0435\u043d \u0436\u04d9\u043d\u0435 \u0436\u0435\u04a3\u0456\u043b\u0434\u0456\u043a\u0442\u0435\u0440\u043c\u0435\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0441\u044b \u0442\u04d9\u0441\u0456\u043b\u0456 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u041e\u0440\u043d\u0430\u0442\u043f\u0430\u0441 \u0431\u04b1\u0440\u044b\u043d, \u043e\u043b\u0430\u0440 Emby \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u04b1\u0437\u0430\u049b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443, \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u04e9\u04a3\u0434\u0456\u043a \u04e9\u04a3\u0434\u0435\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0436\u04af\u0439\u0435\u043d\u0456\u04a3 \u0442\u04b1\u0440\u0430\u049b\u0442\u044b\u043b\u044b\u0493\u044b\u043d \u0442\u04e9\u043c\u0435\u043d\u0434\u0435\u0442\u0443 \u0441\u0438\u044f\u049b\u0442\u044b \u04d9\u0441\u0435\u0440\u043b\u0435\u0440 \u0435\u0442\u0443\u0433\u0435 \u043c\u04af\u043c\u043a\u0456\u043d \u0431\u043e\u043b\u0443\u044b\u043d\u0430 \u0445\u0430\u0431\u0430\u0440\u0434\u0430\u0440 \u0431\u043e\u043b\u044b\u04a3\u044b\u0437.", - "ButtonPlayOneMinute": "\u0411\u0456\u0440 \u043c\u0438\u043d\u04e9\u0442 \u043e\u0439\u043d\u0430\u0442\u0443", - "ThankYouForTryingEnjoyOneMinute": "\u0411\u0456\u0440 \u043c\u0438\u043d\u04e9\u0442 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u044b \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0437. Emby \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0433\u0435\u043d\u0456\u04a3\u0456\u0437\u0433\u0435 \u0440\u0430\u049b\u043c\u0435\u0442.", - "HeaderTryPlayback": "\u041e\u0439\u043d\u0430\u0442\u0443\u0434\u044b \u0441\u044b\u043d\u0430\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437", - "HeaderBenefitsEmbyPremiere": "Emby Premiere \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b", - "MobileSyncFeatureDescription": "\u0414\u0435\u0440\u0431\u0435\u0441 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0434\u0430\u0440 \u0431\u0435\u043d \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0435\u0440\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.", - "CoverArtFeatureDescription": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0436\u0435\u043a\u0435\u043b\u0435\u0443\u0433\u0435 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u04af\u0448\u0456\u043d Cover Art \u049b\u044b\u0437\u044b\u049b\u0442\u044b \u043c\u04b1\u049b\u0430\u0431\u0430\u043b\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0434\u0430 \u04e9\u04a3\u0434\u0435\u0442\u0443\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u0430\u0439\u0434\u044b.", - "HeaderMobileSync": "\u04b0\u0442\u049b\u044b\u0440 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "HeaderCloudSync": "\u0411\u04b1\u043b\u0442 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443", - "CloudSyncFeatureDescription": "\u0421\u0430\u049b\u0442\u044b\u049b \u043a\u04e9\u0448\u0456\u0440\u043c\u0435\u043d\u0456, \u043c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0456 \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0431\u04b1\u043b\u0442\u043f\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u04a3\u0456\u0437.", - "HeaderFreeApps": "\u0422\u0435\u0433\u0456\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b", - "FreeAppsFeatureDescription": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u0430 \u0442\u0430\u04a3\u0434\u0430\u043c\u0430\u043b\u044b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d \u0442\u0435\u0433\u0456\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u04a3\u044b\u0437.", - "HeaderCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456", - "CinemaModeFeatureDescription": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u0434\u0456 \u0444\u0438\u043b\u044c\u043c \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u0438\u043d\u043e\u0437\u0430\u043b \u04d9\u0441\u0435\u0440\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0435\u0434\u0456.", - "CoverArt": "Cover Art", - "ButtonOff": "\u04e8\u0448\u0456\u0440", - "TitleHardwareAcceleration": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443", - "HardwareAccelerationWarning": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u0442\u044b\u049b \u0436\u0435\u0434\u0435\u043b\u0434\u0435\u0442\u0443 \u049b\u043e\u0441\u0443 \u043a\u0435\u0439\u0431\u0456\u0440 \u043e\u0440\u0442\u0430\u043b\u0430\u0440\u0434\u0430 \u0442\u04b1\u0440\u0430\u049b\u0441\u044b\u0437\u0434\u044b\u049b \u0442\u0443\u0434\u044b\u0440\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d. \u0415\u0433\u0435\u0440 \u0441\u0456\u0437 \u043e\u0441\u044b\u043d\u044b \u049b\u043e\u0441\u049b\u0430\u043d\u043d\u0430\u043d \u043a\u0435\u0439\u0456\u043d \u0431\u0435\u0439\u043d\u0435 \u049b\u0438\u044b\u043d\u0434\u044b\u049b\u043f\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0441\u0430, \u0441\u0456\u0437 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0434\u0456 \u049b\u0430\u0439\u0442\u044b\u043f \u0410\u0432\u0442\u043e \u04af\u0448\u0456\u043d \u04e9\u0437\u0433\u0435\u0440\u0442\u0443\u0456\u04a3\u0456\u0437 \u049b\u0430\u0436\u0435\u0442.", - "HeaderSelectCodecIntrosPath": "\u041a\u043e\u0434\u0435\u043a \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443", - "ButtonLocalRefresh": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443", - "ButtonAddMissingData": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u043e\u043a \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u04af\u0441\u0442\u0435\u0443", - "ButtonFullRefresh": "\u0422\u043e\u043b\u044b\u049b \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443", - "ValueExample": "13:00", - "ButtonGotIt": "\u0422\u04af\u0441\u0456\u043d\u0456\u043a\u0442\u0456" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/ko.json b/dashboard-ui/strings/javascript/ko.json deleted file mode 100644 index e6dddd555b..0000000000 --- a/dashboard-ui/strings/javascript/ko.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "\uc124\uc815\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "AddUser": "\uc0ac\uc6a9\uc790 \ucd94\uac00", - "Users": "\uc0ac\uc6a9\uc790", - "Delete": "\uc0ad\uc81c", - "Administrator": "\uad00\ub9ac\uc790", - "Password": "\ube44\ubc00\ubc88\ud638", - "DeleteImage": "\uc774\ubbf8\uc9c0 \uc0ad\uc81c", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "\uc774 \uc774\ubbf8\uc9c0\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "\ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.", - "FileReadError": "\ud30c\uc77c\uc744 \uc77d\ub294 \ub3d9\uc548 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4.", - "DeleteUser": "\uc0ac\uc6a9\uc790 \uc0ad\uc81c", - "DeleteUserConfirmation": "\uc774 \uc0ac\uc6a9\uc790\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "PasswordResetHeader": "\ube44\ubc00\ubc88\ud638 \ucd08\uae30\ud654", - "PasswordResetComplete": "\ube44\ubc00\ubc88\ud638\uac00 \ucd08\uae30\ud654\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "PinCodeResetComplete": "PIN \ucf54\ub4dc\uac00 \ucd08\uae30\ud654\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "PasswordResetConfirmation": "\ube44\ubc00\ubc88\ud638\ub97c \ucd08\uae30\ud654\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "PinCodeResetConfirmation": "PIN \ucf54\ub4dc\ub97c \ucd08\uae30\ud654\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "HeaderPinCodeReset": "PIN \ucf54\ub4dc \ucd08\uae30\ud654", - "PasswordSaved": "\ube44\ubc00\ubc88\ud638\uac00 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "PasswordMatchError": "\ube44\ubc00\ubc88\ud638\uc640 \ube44\ubc00\ubc88\ud638 \ud655\uc778\uc774 \uc77c\uce58\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "OptionRelease": "\uacf5\uc2dd \ub9b4\ub9ac\uc988", - "OptionBeta": "\ubca0\ud0c0", - "OptionDev": "\uac1c\ubc1c (\ubd88\uc548\uc815)", - "UninstallPluginHeader": "\ud50c\ub7ec\uadf8\uc778 \uc124\uce58 \uc81c\uac70", - "UninstallPluginConfirmation": "{0} \uc744(\ub97c) \uc124\uce58 \uc81c\uac70\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "NoPluginConfigurationMessage": "\uc774 \ud50c\ub7ec\uadf8\uc778\uc740 \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.", - "NoPluginsInstalledMessage": "\uc124\uce58\ud55c \ud50c\ub7ec\uadf8\uc778\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.", - "BrowsePluginCatalogMessage": "\uc0ac\uc6a9 \uac00\ub2a5\ud55c \ud50c\ub7ec\uadf8\uc778\uc744 \ubcf4\ub824\uba74 \ud50c\ub7ec\uadf8\uc778 \uce74\ud0c8\ub85c\uadf8\ub97c \ud0d0\uc0c9\ud558\uc138\uc694.", - "HeaderNewApiKey": "\uc0c8 API \ud0a4", - "LabelAppName": "\uc571 \uc774\ub984", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Emby \uc11c\ubc84\uc640\uc758 \ud1b5\uc2e0\uc744 \uc704\ud574 \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uad8c\ud55c\uc744 \ubd80\uc5ec\ud569\ub2c8\ub2e4.", - "MessageKeyEmailedTo": "\ud0a4\uac00 {0}\uc5d0\uac8c \uc774\uba54\uc77c\ub85c \uc804\uc1a1\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "MessageKeysLinked": "\ud0a4\uac00 \uc5f0\uacb0\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "HeaderConfirmation": "\ud655\uc778", - "MessageKeyUpdated": "\uace0\ub9d9\uc2b5\ub2c8\ub2e4. \uadc0\ud558\uc758 Emby \ud504\ub9ac\ubbf8\uc5b4 \ud0a4\uac00 \uc5c5\ub370\uc774\ud2b8\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "MessageKeyRemoved": "\uace0\ub9d9\uc2b5\ub2c8\ub2e4. \uadc0\ud558\uc758 Emby \ud504\ub9ac\ubbf8\uc5b4 \ud0a4\uac00 \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "HeaderSupportTheTeam": "Emby \ud300 \uc9c0\uc6d0", - "TextEnjoyBonusFeatures": "\ubcf4\ub108\uc2a4 \uae30\ub2a5\uc744 \uc990\uae30\uc138\uc694", - "TitleLiveTV": "TV \ubc29\uc1a1", - "ButtonCancelSyncJob": "\ub3d9\uae30\ud654 \ucde8\uc18c", - "HeaderAddTag": "\ud0dc\uadf8 \ucd94\uac00", - "LabelTag": "\ud0dc\uadf8:", - "ButtonSelectView": "\ubcf4\uae30 \uc120\ud0dd", - "TitleSync": "\ub3d9\uae30\ud654", - "OptionAutomatic": "\uc790\ub3d9", - "HeaderSelectDate": "\ub0a0\uc9dc \uc120\ud0dd", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "\uc815\uae30 \ud6c4\uc6d0\uc740 \uc5b8\uc81c\ub4e0\uc9c0 \uadc0\ud558\uc758 PayPal \uacc4\uc815\uc5d0\uc11c \ucde8\uc18c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "\ub0b4 \ubbf8\ub514\uc5b4", - "ButtonRemoveFromCollection": "\uceec\ub809\uc158\uc5d0\uc11c \uc0ad\uc81c", - "LabelAutomaticUpdateLevel": "\uc790\ub3d9 \uc5c5\ub370\uc774\ud2b8 \uc218\uc900:", - "LabelAutomaticUpdateLevelForPlugins": "\ud50c\ub7ec\uadf8\uc778 \uc790\ub3d9 \uc5c5\ub370\uc774\ud2b8 \uc218\uc900:", - "TitleNotifications": "\uc54c\ub9bc", - "ErrorLaunchingChromecast": "\ud06c\ub86c\uce90\uc2a4\ud2b8 \uc2e4\ud589\uc5d0 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc7a5\uce58\uac00 \ubb34\uc120 \ub124\ud2b8\uc6cc\ud06c\uc5d0 \uc5f0\uacb0\ub418\uc5b4 \uc788\ub294\uc9c0 \ud655\uc778\ud558\uc138\uc694.", - "MessageErrorLoadingSupporterInfo": "Emby \ud504\ub9ac\ubbf8\uc5b4 \uc815\ubcf4\ub97c \uac00\uc838\uc624\uae30\uc5d0 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud574 \uc8fc\uc138\uc694.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "\uc0ac\uc6a9\uc790 \uc0ad\uc81c", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "\uc2dc\uac04 \uc81c\ud55c: 1 \uc2dc\uac04", - "ValueTimeLimitMultiHour": "\uc2dc\uac04 \uc81c\ud55c: {0} \uc2dc\uac04", - "HeaderUsers": "\uc0ac\uc6a9\uc790", - "PluginCategoryGeneral": "\uc77c\ubc18", - "PluginCategoryContentProvider": "\ucf58\ud150\ud2b8 \uc81c\uacf5\uc790", - "PluginCategoryScreenSaver": "\ud654\uba74 \ubcf4\ud638\uae30", - "PluginCategoryTheme": "\ud14c\ub9c8", - "PluginCategorySync": "\ub3d9\uae30\ud654", - "PluginCategorySocialIntegration": "\uc18c\uc15c \ub124\ud2b8\uc6cc\ud06c", - "PluginCategoryNotifications": "\uc54c\ub9bc", - "PluginCategoryMetadata": "\uba54\ud0c0\ub370\uc774\ud130", - "PluginCategoryLiveTV": "TV \ubc29\uc1a1", - "PluginCategoryChannel": "\ucc44\ub110", - "HeaderSearch": "\ucc3e\uae30", - "ValueDateCreated": "\uc0dd\uc131 \ub0a0\uc9dc: {0}", - "LabelArtist": "\uc544\ud2f0\uc2a4\ud2b8", - "LabelMovie": "\uc601\ud654", - "LabelMusicVideo": "\ubba4\uc9c1 \ube44\ub514\uc624", - "LabelEpisode": "\uc5d0\ud53c\uc18c\ub4dc", - "LabelSeries": "\uc2dc\ub9ac\uc988", - "LabelStopping": "Stopping", - "LabelCancelled": "(\ucde8\uc18c\ub428)", - "LabelFailed": "(\uc2e4\ud328)", - "ButtonHelp": "\ub3c4\uc6c0\ub9d0", - "ButtonSave": "\uc800\uc7a5", - "ButtonDownload": "\ub2e4\uc6b4\ub85c\ub4dc", - "SyncJobStatusQueued": "\ub300\uae30", - "SyncJobStatusConverting": "\ubcc0\ud658 \uc911", - "SyncJobStatusFailed": "\uc2e4\ud328\ud568", - "SyncJobStatusCancelled": "\ucde8\uc18c\ub428", - "SyncJobStatusCompleted": "\ub3d9\uae30\ud654\ub428", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "\uc804\uc1a1 \uc911", - "SyncJobStatusCompletedWithError": "\ub3d9\uae30\ud654 \uc624\ub958", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "\uceec\ub809\uc158", - "HeaderAddToCollection": "\uceec\ub809\uc158\uc5d0 \ucd94\uac00", - "HeaderNewCollection": "\uc0c8 \uceec\ub809\uc158", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "\uc778\ud130\ub137\uc5d0\uc11c \uc544\ud2b8\uc6cc\ud06c\uc640 \uba54\ud0c0\ub370\uc774\ud130 \uac80\uc0c9", - "LabelSelectCollection": "\uceec\ub809\uc158 \uc120\ud0dd:", - "HeaderDevices": "\uc7a5\uce58", - "ButtonScheduledTasks": "\uc608\uc57d \uc791\uc5c5", - "MessageItemsAdded": "\ud56d\ubaa9 \ucd94\uac00\ub428", - "ButtonAddToCollection": "\uceec\ub809\uc158\uc5d0 \ucd94\uac00", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "\uc774 \uc791\uc5c5\uc740 \uc77c\ubc18\uc801\uc73c\ub85c \uc608\uc57d \uc791\uc5c5\uc73c\ub85c \uc790\ub3d9 \uc2e4\ud589\ub418\ubbc0\ub85c \uc218\uc791\uc5c5\uc774 \ud544\uc694\uc5c6\uc2b5\ub2c8\ub2e4. \uc608\uc57d \uc791\uc5c5\uc744 \uc124\uc815\ud558\ub824\uba74 \ub2e4\uc74c\uc744 \ubcf4\uc138\uc694:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "\ud604\uc7ac \ub3d9\uae30\ud654\ub97c \uc9c0\uc6d0\ud558\ub294 \uc571\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "\ub458\ub7ec \ubcf4\uae30", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "\ud50c\ub7ec\uadf8\uc778", - "ButtonTakeTheTourToSeeWhatsNew": "\uc0c8\ub85c\uc6b4 \ub0b4\uc6a9\uc744 \ub458\ub7ec \ubcf4\uc138\uc694", - "MessageNoSyncJobsFound": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uc6f9 \uc778\ud130\ud398\uc774\uc2a4\uc5d0 \uc788\ub294 \ub3d9\uae30\ud654 \ubc84\ud2bc\uc744 \uc0ac\uc6a9\ud558\uc5ec \ub3d9\uae30\ud654 \uc791\uc5c5\uc744 \uc0dd\uc131\ud558\uc138\uc694.", - "HeaderLibraryAccess": "\ub77c\uc774\ube0c\ub7ec\ub9ac \uc811\uc18d", - "HeaderChannelAccess": "\ucc44\ub110 \uc811\uc18d", - "HeaderDeviceAccess": "\uc7a5\uce58 \uc811\uc18d", - "HeaderSelectDevices": "\uc7a5\uce58 \uc120\ud0dd", - "ButtonCancelItem": "\ud56d\ubaa9 \ucde8\uc18c", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "\ub354 \uc54c\uc544\ubcf4\uae30", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(\uc11c\ubc84\uac00 \uc885\ub8cc\ub418\uc5b4 \ucde8\uc18c\ub428)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "\uc791\uc5c5 \ud2b8\ub9ac\uac70 \uc0ad\uc81c", - "MessageDeleteTaskTrigger": "\uc774 \uc791\uc5c5 \ud2b8\ub9ac\uac70\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessageNoPluginsInstalled": "\uc124\uce58\ub41c \ud50c\ub7ec\uadf8\uc778\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} \uc124\uce58\ub428", - "LabelNumberReviews": "{0} \ub9ac\ubdf0", - "LabelFree": "\ubb34\ub8cc", - "HeaderTo": "To", - "HeaderPlaybackError": "\uc7ac\uc0dd \uc624\ub958", - "MessagePlaybackErrorNotAllowed": "\uc774 \ucf58\ud150\ud2b8\ub97c \uc7ac\uc0dd\ud560 \uad8c\ud55c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uc790\uc138\ud55c \ub0b4\uc6a9\uc740 \uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790\uc5d0\uac8c \ubb38\uc758\ud558\uc138\uc694.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "\uc120\ud0dd\ud55c \ucf58\ud150\ud2b8\ub294 \uc774 \uc7a5\uce58\uc5d0\uc11c \uc7ac\uc0dd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.", - "HeaderSelectAudio": "\uc624\ub514\uc624 \uc120\ud0dd", - "HeaderSelectSubtitles": "\uc790\ub9c9 \uc120\ud0dd", - "ButtonMarkForRemoval": "\uc7a5\uce58\uc5d0\uc11c \uc81c\uac70", - "ButtonUnmarkForRemoval": "\uc7a5\uce58\uc5d0\uc11c \uc81c\uac70 \ucde8\uc18c", - "LabelDefaultStream": "(\uae30\ubcf8)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(\uae30\ubcf8\/Forced)", - "LabelUnknownLanguage": "\uc54c \uc218 \uc5c6\ub294 \uc5b8\uc5b4", - "MessageConfirmSyncJobItemCancellation": "\uc774 \ud56d\ubaa9\uc744 \ucde8\uc18c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "ButtonMute": "\uc74c\uc18c\uac70", - "ButtonUnmute": "\uc74c\uc18c\uac70 \ucde8\uc18c", - "ButtonStop": "\uc911\uc9c0", - "ButtonNextTrack": "\ub2e4\uc74c \ud2b8\ub799", - "ButtonPause": "\uc77c\uc2dc \uc911\uc9c0", - "ButtonPlay": "\uc7ac\uc0dd", - "ButtonEdit": "\ud3b8\uc9d1", - "ButtonQueue": "\ub300\uae30\uc5f4 \ucd94\uac00", - "ButtonPlayTrailer": "\uc608\uace0\ud3b8 \uc7ac\uc0dd", - "ButtonPlaylist": "\uc7ac\uc0dd\ubaa9\ub85d", - "ButtonPreviousTrack": "\uc774\uc804 \ud2b8\ub799", - "LabelEnabled": "\uc0ac\uc6a9", - "LabelDisabled": "\uc0ac\uc6a9 \uc548 \ud568", - "ButtonMoreInformation": "\ucd94\uac00 \uc815\ubcf4", - "LabelNoUnreadNotifications": "\uc77d\uc9c0 \uc54a\uc740 \uc54c\ub9bc\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.", - "ButtonViewNotifications": "\uc54c\ub9bc \ubcf4\uae30", - "ButtonMarkTheseRead": "\uc77d\uc74c\uc73c\ub85c \ud45c\uc2dc", - "ButtonClose": "\ub2eb\uae30", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "\uc62c\ubc14\ub974\uc9c0 \uc54a\uc740 \uc0ac\uc6a9\uc790\uba85 \ub610\ub294 \ube44\ubc00\ubc88\ud638\uc785\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "HeaderLoginFailure": "\ub85c\uadf8\uc778 \uc2e4\ud328", - "HeaderAllRecordings": "\ubaa8\ub4e0 \ub179\ud654", - "RecommendationBecauseYouLike": "{0} \uc744(\ub97c) \uc88b\uc544\ud558\uae30 \ub54c\ubb38\uc5d0", - "RecommendationBecauseYouWatched": "{0} \uc744(\ub97c) \uc2dc\uccad\ud558\uc600\uae30 \ub54c\ubb38\uc5d0", - "RecommendationDirectedBy": "{0} \uac10\ub3c5", - "RecommendationStarring": "{0} \ucd9c\uc5f0", - "HeaderConfirmRecordingCancellation": "\ub179\ud654 \ucde8\uc18c \ud655\uc778", - "MessageConfirmRecordingCancellation": "\uc774 \ub179\ud654\ub97c \ucde8\uc18c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessageRecordingCancelled": "\ub179\ud654\uac00 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "\uc2dc\ub9ac\uc988 \ucde8\uc18c \ud655\uc778", - "MessageConfirmSeriesCancellation": "\uc774 \uc2dc\ub9ac\uc988\ub97c \ucde8\uc18c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessageSeriesCancelled": "\uc2dc\ub9ac\uc988\uac00 \ucde8\uc18c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "HeaderConfirmRecordingDeletion": "\ub179\ud654 \uc0ad\uc81c \ud655\uc778", - "MessageConfirmRecordingDeletion": "\uc774 \ub179\ud654\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessageRecordingDeleted": "\ub179\ud654\uac00 \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "ButonCancelRecording": "\ub179\ud654 \ucde8\uc18c", - "MessageRecordingSaved": "\ub179\ud654\uac00 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "OptionSunday": "\ub300\uae30", - "OptionMonday": "\uc6d4\uc694\uc77c", - "OptionTuesday": "\ud654\uc694\uc77c", - "OptionWednesday": "\uc218\uc694\uc77c", - "OptionThursday": "\ubaa9\uc694\uc77c", - "OptionFriday": "\uae08\uc694\uc77c", - "OptionSaturday": "\ud1a0\uc694\uc77c", - "OptionEveryday": "\ub9e4\uc77c", - "OptionWeekend": "\uc8fc\ub9d0", - "OptionWeekday": "\uc8fc\uc911", - "HeaderConfirmDeletion": "\uc0ad\uc81c \ud655\uc778", - "MessageConfirmPathSubstitutionDeletion": "\uc774 \uacbd\ub85c \ub300\uccb4\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "LiveTvUpdateAvailable": "(\uc5c5\ub370\uc774\ud2b8 \uc0ac\uc6a9 \uac00\ub2a5)", - "LabelVersionUpToDate": "\ucd5c\uc2e0 \uc0c1\ud0dc\uc785\ub2c8\ub2e4!", - "ButtonResetTuner": "\ud29c\ub108 \ucd08\uae30\ud654", - "HeaderResetTuner": "\ud29c\ub108 \ucd08\uae30\ud654", - "MessageConfirmResetTuner": "\uc774 \ud29c\ub108\ub97c \ucd08\uae30\ud654\ud558\uaca0\uc2b5\ub2c8\uae4c? \ub3d9\uc791 \uc911\uc778 \ud50c\ub808\uc774\uc5b4 \ub610\ub294 \ub179\ud654\uac00 \uc608\uace0\uc5c6\uc774 \uc911\uc9c0\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4.", - "ButtonCancelSeries": "\uc2dc\ub9ac\uc988 \ucde8\uc18c", - "HeaderSeriesRecordings": "\uc2dc\ub9ac\uc988 \ub179\ud654", - "LabelAnytime": "\uc544\ubb34 \ub54c\ub098", - "StatusRecording": "\ub179\ud654", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "\ubbf8\ub514\uc5b4 \ubd84\ud560", - "MessageConfirmSplitMedia": "\ubbf8\ub514\uc5b4 \uc18c\uc2a4\ub97c \uac01\uac01\uc758 \ud56d\ubaa9\uc73c\ub85c \ubd84\ub9ac\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "HeaderError": "\uc624\ub958", - "MessageChromecastConnectionError": "\ud06c\ub86c\uce90\uc2a4\ud2b8 \uc218\uc2e0\uae30\ub97c Emby \uc11c\ubc84\uc5d0 \uc5f0\uacb0\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc5f0\uacb0 \uc0c1\ud0dc\ub97c \ud655\uc778\ud558\uace0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "MessagePleaseSelectOneItem": "\ucd5c\uc18c \ud55c \uac1c\uc758 \ud56d\ubaa9\uc744 \uc120\ud0dd\ud558\uc138\uc694.", - "MessagePleaseSelectTwoItems": "\ucd5c\uc18c \ub450 \uac1c\uc758 \ud56d\ubaa9\uc744 \uc120\ud0dd\ud558\uc138\uc694.", - "MessageTheSelectedItemsWillBeGrouped": "\uc120\ud0dd\ud55c \ube44\ub514\uc624\ub97c \ud55c \uac1c\uc758 \uac00\uc0c1 \ud56d\ubaa9\uc73c\ub85c \ubb36\uc2b5\ub2c8\ub2e4. Emby \uc571\uc774 \uc7a5\uce58\uc640 \ub124\ud2b8\uc6cc\ud06c \uc131\ub2a5\uc744 \uae30\uc900\uc73c\ub85c \uc790\ub3d9 \uc120\ud0dd\ud558\uc5ec \uc7ac\uc0dd\ud569\ub2c8\ub2e4. \uacc4\uc18d\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "HeaderResume": "\uc774\uc5b4\uc11c \uc7ac\uc0dd", - "HeaderMyViews": "\ub0b4 \ubcf4\uae30", - "HeaderLibraryFolders": "\ubbf8\ub514\uc5b4 \ud3f4\ub354", - "HeaderLatestMedia": "\ucd5c\uadfc \ubbf8\ub514\uc5b4", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "\uc990\uaca8\ucc3e\ub294 \uc601\ud654", - "HeaderFavoriteShows": "\uc990\uaca8\ucc3e\ub294 \uc1fc", - "HeaderFavoriteEpisodes": "\uc990\uaca8\ucc3e\ub294 \uc5d0\ud53c\uc18c\ub4dc", - "HeaderFavoriteGames": "\uc990\uaca8\ucc3e\ub294 \uac8c\uc784", - "HeaderRatingsDownloads": "\ud3c9\uc810 \/ \ub2e4\uc6b4\ub85c\ub4dc", - "HeaderConfirmProfileDeletion": "\ud504\ub85c\ud30c\uc77c \uc0ad\uc81c \ud655\uc778", - "MessageConfirmProfileDeletion": "\uc774 \ud504\ub85c\ud30c\uc77c\uc744 \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "HeaderSelectServerCachePath": "\uc11c\ubc84 \uce90\uc2dc \uacbd\ub85c \uc120\ud0dd", - "HeaderSelectTranscodingPath": "\ud2b8\ub79c\uc2a4\ucf54\ub529 \uc784\uc2dc \uacbd\ub85c \uc120\ud0dd", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "\uba54\ud0c0\ub370\uc774\ud130 \uacbd\ub85c \uc120\ud0dd", - "HeaderSelectServerCachePathHelp": "\uc11c\ubc84 \uce90\uc2dc \ud30c\uc77c\uc5d0 \uc0ac\uc6a9\ud560 \uacbd\ub85c\ub97c \ud0d0\uc0c9 \ub610\ub294 \uc785\ub825\ud558\uc138\uc694. \uc4f0\uae30 \uac00\ub2a5\ud55c \ud3f4\ub354\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "HeaderSelectTranscodingPathHelp": "\ud2b8\ub79c\uc2a4\ucf54\ub529 \uc784\uc2dc \ud30c\uc77c\uc5d0 \uc0ac\uc6a9\ud560 \uacbd\ub85c\ub97c \ud0d0\uc0c9 \ub610\ub294 \uc785\ub825\ud558\uc138\uc694. \uc4f0\uae30 \uac00\ub2a5\ud55c \ud3f4\ub354\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "\uba54\ud0c0\ub370\uc774\ud130\ub97c \ubcf4\uad00\ud560 \uacbd\ub85c\ub97c \ud0d0\uc0c9 \ub610\ub294 \uc785\ub825\ud558\uc138\uc694. \uc4f0\uae30 \uac00\ub2a5\ud55c \ud3f4\ub354\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "HeaderSelectChannelDownloadPath": "\ucc44\ub110 \ub2e4\uc6b4\ub85c\ub4dc \uacbd\ub85c \uc120\ud0dd", - "HeaderSelectChannelDownloadPathHelp": "\ucc44\ub110 \uce90\uc2dc \ud30c\uc77c\uc5d0 \uc0ac\uc6a9\ud560 \uacbd\ub85c\ub97c \ud0d0\uc0c9 \ub610\ub294 \uc785\ub825\ud558\uc138\uc694. \uc4f0\uae30 \uac00\ub2a5\ud55c \ud3f4\ub354\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "OptionNewCollection": "New...", - "ButtonAdd": "\ucd94\uac00", - "ButtonRemove": "\uc81c\uac70", - "LabelChapterDownloaders": "\ucc55\ud130 \ub2e4\uc6b4\ub85c\ub354:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "\uc990\uaca8\ucc3e\ub294 \uc568\ubc94", - "HeaderLatestChannelMedia": "\ucd5c\uadfc \ucc44\ub110 \ud56d\ubaa9", - "ButtonOrganizeFile": "\ud30c\uc77c \uad6c\uc131", - "ButtonDeleteFile": "\ud30c\uc77c \uc0ad\uc81c", - "HeaderOrganizeFile": "\ud30c\uc77c \uad6c\uc131", - "HeaderDeleteFile": "\ud30c\uc77c \uc0ad\uc81c", - "StatusSkipped": "Skipped", - "StatusFailed": "\uc2e4\ud328\ud568", - "StatusSuccess": "\uc131\uacf5", - "MessageFileWillBeDeleted": "\ub2e4\uc74c \ud30c\uc77c\uc744 \uc0ad\uc81c\ud569\ub2c8\ub2e4:", - "MessageSureYouWishToProceed": "\uc9c4\ud589\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessageDuplicatesWillBeDeleted": "\ub2e4\uc74c \uc911\ubcf5 \ud30c\uc77c\uc744 \uc0ad\uc81c\ud569\ub2c8\ub2e4:", - "MessageFollowingFileWillBeMovedFrom": "\ub2e4\uc74c \ud30c\uc77c\uc744 \uc774\ub3d9\ud569\ub2c8\ub2e4. \uc6d0 \uc704\uce58:", - "MessageDestinationTo": "\uc774\ub3d9 \uc704\uce58:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "\uacb0\uacfc: {0}", - "AutoOrganizeError": "\ud30c\uc77c \uad6c\uc131 \uc624\ub958", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "\ud30c\uc77c \uad6c\uc131\uc5d0 \uc624\ub958\uac00 \uc788\uc2b5\ub2c8\ub2e4. \uc624\ub958 \ucf54\ub4dc: {0}.", - "HeaderRestart": "\ub2e4\uc2dc \uc2dc\uc791", - "HeaderShutdown": "\uc885\ub8cc", - "MessageConfirmRestart": "Emby \uc11c\ubc84\ub97c \ub2e4\uc2dc \uc2dc\uc791\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessageConfirmShutdown": "Emby \uc11c\ubc84\ub97c \uc885\ub8cc\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "ButtonUpdateNow": "\uc9c0\uae08 \uc5c5\ub370\uc774\ud2b8", - "ValueItemCount": "{0} \ud56d\ubaa9", - "ValueItemCountPlural": "{0} \ud56d\ubaa9", - "NewVersionOfSomethingAvailable": "{0} \uc758 \uc0c8 \ubc84\uc804\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4!", - "VersionXIsAvailableForDownload": "\ubc84\uc804 {0} \uc744(\ub97c) \ub2e4\uc6b4\ub85c\ub4dc \ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.", - "LabelVersionNumber": "\ubc84\uc804 {0}", - "LabelPlayMethodTranscoding": "\ud2b8\ub79c\uc2a4\ucf54\ub529", - "LabelPlayMethodDirectStream": "\ub2e4\uc774\ub809\ud2b8 \uc2a4\ud2b8\ub9ac\ubc0d", - "LabelPlayMethodDirectPlay": "\ub2e4\uc774\ub809\ud2b8 \uc7ac\uc0dd", - "LabelAudioCodec": "\uc624\ub514\uc624: {0}", - "LabelVideoCodec": "\ube44\ub514\uc624: {0}", - "LabelLocalAccessUrl": "\ub85c\uceec \uc811\uc18d: {0}", - "LabelRemoteAccessUrl": "\uc6d0\uaca9 \uc811\uc18d: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "\uc54c \uc218 \uc5c6\ub294 \uc5b8\uc5b4", - "HeaderCurrentSubtitles": "\ud604\uc7ac \uc790\ub9c9", - "MessageDownloadQueued": "\ub2e4\uc6b4\ub85c\ub4dc\uac00 \ub300\uae30\uc5f4\uc5d0 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "MessageAreYouSureDeleteSubtitles": "\uc774 \uc790\ub9c9 \ud30c\uc77c\uc744 \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "ButtonRemoteControl": "\uc6d0\uaca9 \uc81c\uc5b4", - "HeaderLatestTvRecordings": "\ucd5c\uadfc \ub179\ud654", - "ButtonOk": "OK", - "ButtonCancel": "\ucde8\uc18c", - "ButtonRefresh": "\uc0c8\ub85c \uace0\uce68", - "LabelCurrentPath": "\ud604\uc7ac \uacbd\ub85c:", - "HeaderSelectMediaPath": "\ubbf8\ub514\uc5b4 \uacbd\ub85c \uc120\ud0dd", - "HeaderSelectPath": "\uacbd\ub85c \uc120\ud0dd", - "ButtonNetwork": "\ub124\ud2b8\uc6cc\ud06c", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "\uba54\ub274", - "ButtonOpen": "\uc5f4\uae30", - "ButtonOpenInNewTab": "\uc0c8 \ud0ed\uc5d0\uc11c \uc5f4\uae30", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "\uc778\uc2a4\ud134\ud2b8 \ubbf9\uc2a4", - "ButtonResume": "\uc774\uc5b4\uc11c \uc7ac\uc0dd", - "HeaderScenes": "\uc7a5\uba74", - "HeaderAudioTracks": "\uc624\ub514\uc624 \ud2b8\ub799", - "HeaderLibraries": "\ub77c\uc774\ube0c\ub7ec\ub9ac", - "HeaderSubtitles": "\uc790\ub9c9", - "HeaderVideoQuality": "\ube44\ub514\uc624 \ud488\uc9c8", - "MessageErrorPlayingVideo": "\ube44\ub514\uc624 \uc7ac\uc0dd\uc5d0 \uc624\ub958\uac00 \uc788\uc2b5\ub2c8\ub2e4.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "\ud648", - "ButtonDashboard": "\ub300\uc2dc\ubcf4\ub4dc", - "ButtonReports": "Reports", - "ButtonMetadataManager": "\uba54\ud0c0\ub370\uc774\ud130 \uad00\ub9ac", - "HeaderTime": "\uc2dc\uac01", - "HeaderName": "Name", - "HeaderAlbum": "\uc568\ubc94", - "HeaderAlbumArtist": "\uc568\ubc94 \uc544\ud2f0\uc2a4\ud2b8", - "HeaderArtist": "\uc544\ud2f0\uc2a4\ud2b8", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "\uc2dc\uc791", - "HeaderChannels": "\ucc44\ub110", - "HeaderMediaFolders": "\ubbf8\ub514\uc5b4 \ud3f4\ub354", - "HeaderBlockItemsWithNoRating": "\ub4f1\uae09 \uc815\ubcf4\uac00 \uc5c6\ub294 \ucf58\ud150\ud2b8 \ucc28\ub2e8:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV \uc1fc", - "OptionBlockTrailers": "\uc608\uace0\ud3b8", - "OptionBlockMusic": "\uc74c\uc545", - "OptionBlockMovies": "\uc601\ud654", - "OptionBlockBooks": "\ucc45", - "OptionBlockGames": "\uac8c\uc784", - "OptionBlockLiveTvPrograms": "TV \ubc29\uc1a1 \ud504\ub85c\uadf8\ub7a8", - "OptionBlockLiveTvChannels": "TV \ubc29\uc1a1 \ucc44\ub110", - "OptionBlockChannelContent": "\uc778\ud130\ub137 \ucc44\ub110 \ucf58\ud150\ud2b8", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "\ucee8\ud14c\uc774\ub108: {0}", - "ValueAudioCodec": "\uc624\ub514\uc624 \ucf54\ub371: {0}", - "ValueVideoCodec": "\ube44\ub514\uc624 \ucf54\ub371: {0}", - "ValueCodec": "\ucf54\ub371: {0}", - "ValueConditions": "\uc870\uac74: {0}", - "LabelAll": "\ubaa8\ub450", - "HeaderDeleteImage": "\uc774\ubbf8\uc9c0 \uc0ad\uc81c", - "MessageFileNotFound": "\ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.", - "MessageFileReadError": "\uc774 \ud30c\uc77c\uc744 \uc77d\ub294 \ub370 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4.", - "ButtonNextPage": "\ub2e4\uc74c \ud398\uc774\uc9c0", - "ButtonPreviousPage": "\uc774\uc804 \ud398\uc774\uc9c0", - "ButtonMoveLeft": "\uc67c\ucabd\uc73c\ub85c \uc774\ub3d9", - "ButtonMoveRight": "\uc624\ub978\ucabd\uc73c\ub85c \uc774\ub3d9", - "ButtonBrowseOnlineImages": "\uc628\ub77c\uc778 \uc774\ubbf8\uc9c0 \ud0d0\uc0c9", - "HeaderDeleteItem": "\ud56d\ubaa9 \uc0ad\uc81c", - "ConfirmDeleteItem": "\uc774 \ud56d\ubaa9\uc744 \uc0ad\uc81c\ud558\uba74 \ud30c\uc77c \uc2dc\uc2a4\ud15c\uacfc \ub77c\uc774\ube0c\ub7ec\ub9ac \ubaa8\ub450\uc5d0\uc11c \uc0ad\uc81c\ub429\ub2c8\ub2e4. \uacc4\uc18d\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "\uc785\ub825\ud55c \uac12\uc774 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "MessageItemSaved": "\ud56d\ubaa9\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "\uc2dc\uc791\ud558\uae30 \uc804\uc5d0 \uc11c\ube44\uc2a4 \uc57d\uad00\uc5d0 \ub3d9\uc758\ud558\uc138\uc694.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "\uc124\uc815", - "ButtonUninstall": "\uc124\uce58 \uc81c\uac70", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "TV \ubc29\uc1a1", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "\uc2a4\ud06c\ub9b0\uc0f7", - "OptionBackdrops": "\ubc30\uacbd", - "OptionImages": "\uc774\ubbf8\uc9c0", - "OptionKeywords": "\ud0a4\uc6cc\ub4dc", - "OptionTags": "\ud0dc\uadf8", - "OptionStudios": "\uc2a4\ud29c\ub514\uc624", - "OptionName": "Name", - "OptionOverview": "\uc904\uac70\ub9ac", - "OptionGenres": "\uc7a5\ub974", - "OptionParentalRating": "\ub4f1\uae09", - "OptionPeople": "\uc778\ubb3c", - "OptionRuntime": "\uc0c1\uc601 \uc2dc\uac04", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "\ucd9c\uc0dd\uc9c0", - "LabelAllChannels": "\ubaa8\ub4e0 \ucc44\ub110", - "LabelLiveProgram": "\ub77c\uc774\ube0c", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "\ucf58\ud150\ud2b8 \uc885\ub958 \ubcc0\uacbd", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "\uacbd\uace0", - "MessagePleaseRestart": "\uc5c5\ub370\uc774\ud2b8\ub97c \ub9c8\uce58\ub824\uba74 \ub2e4\uc2dc \uc2dc\uc791\ud558\uc138\uc694.", - "ButtonRestart": "\ub2e4\uc2dc \uc2dc\uc791", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "\uc228\uae40", - "MessageSettingsSaved": "\uc124\uc815\uc774 \uc800\uc7a5\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "ButtonSignOut": "\ub85c\uadf8\uc544\uc6c3", - "ButtonMyProfile": "\ub0b4 \ud504\ub85c\ud30c\uc77c", - "ButtonMyPreferences": "\ub0b4 \ud658\uacbd\uc124\uc815", - "MessageBrowserDoesNotSupportWebSockets": "\uc774 \ube0c\ub77c\uc6b0\uc800\ub294 \uc6f9 \uc18c\ucf13\uc744 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ud5a5\uc0c1\ub41c \uacbd\ud5d8\uc744 \uc704\ud558\uc5ec Chrome, Firefox, IE 10+, Safari (iOS), Opera \uac19\uc740 \ucd5c\uc2e0 \ube0c\ub77c\uc6b0\uc800\ub97c \uc0ac\uc6a9\ud558\uc138\uc694.", - "LabelInstallingPackage": "{0} \uc124\uce58 \uc911", - "LabelPackageInstallCompleted": "{0} \uc124\uce58 \uc644\ub8cc.", - "LabelPackageInstallFailed": "{0} \uc124\uce58 \uc2e4\ud328.", - "LabelPackageInstallCancelled": "{0} \uc124\uce58 \ucde8\uc18c.", - "TabServer": "\uc11c\ubc84", - "TabUsers": "\uc0ac\uc6a9\uc790", - "TabLibrary": "\ub77c\uc774\ube0c\ub7ec\ub9ac", - "TabMetadata": "\uba54\ud0c0\ub370\uc774\ud130", - "TabDLNA": "DLNA", - "TabLiveTV": "TV \ubc29\uc1a1", - "TabAutoOrganize": "\uc790\ub3d9 \uad6c\uc131", - "TabPlugins": "\ud50c\ub7ec\uadf8\uc778", - "TabAdvanced": "\uace0\uae09", - "TabHelp": "\ub3c4\uc6c0\ub9d0", - "TabScheduledTasks": "\uc608\uc57d \uc791\uc5c5", - "ButtonFullscreen": "\uc804\uccb4 \ud654\uba74", - "ButtonAudioTracks": "\uc624\ub514\uc624 \ud2b8\ub799", - "ButtonSubtitles": "\uc790\ub9c9", - "ButtonScenes": "\uc7a5\uba74", - "ButtonQuality": "\ud488\uc9c8", - "HeaderNotifications": "\uc54c\ub9bc", - "HeaderSelectPlayer": "\ud50c\ub808\uc774\uc5b4 \uc120\ud0dd", - "ButtonSelect": "\uc120\ud0dd", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "Internet Explorer\uc5d0\uc11c \ucd5c\uc0c1\uc758 \uacb0\uacfc\ub97c \uc704\ud574 WebM \uc7ac\uc0dd \ud50c\ub7ec\uadf8\uc778\uc744 \uc124\uce58\ud558\uc138\uc694.", - "HeaderVideoError": "\ube44\ub514\uc624 \uc624\ub958", - "ButtonAddToPlaylist": "\uc7ac\uc0dd\ubaa9\ub85d\uc5d0 \ucd94\uac00", - "HeaderAddToPlaylist": "\uc7ac\uc0dd\ubaa9\ub85d\uc5d0 \ucd94\uac00", - "LabelName": "Name:", - "ButtonSubmit": "\uc804\uc1a1", - "LabelSelectPlaylist": "\uc7ac\uc0dd\ubaa9\ub85d:", - "OptionNewPlaylist": "\uc0c8 \uc7ac\uc0dd\ubaa9\ub85d...", - "MessageAddedToPlaylistSuccess": "OK", - "ButtonView": "\ubcf4\uae30", - "ButtonViewSeriesRecording": "\uc2dc\ub9ac\uc988 \ub179\ud654 \ubcf4\uae30", - "ValueOriginalAirDate": "\ucd5c\ucd08 \ubc29\uc1a1\uc77c: {0}", - "ButtonRemoveFromPlaylist": "\uc7ac\uc0dd\ubaa9\ub85d\uc5d0\uc11c \uc81c\uac70", - "HeaderSpecials": "\uc2a4\ud398\uc15c", - "HeaderTrailers": "\uc608\uace0\ud3b8", - "HeaderAudio": "\uc624\ub514\uc624", - "HeaderResolution": "\ud574\uc0c1\ub3c4", - "HeaderVideo": "\ube44\ub514\uc624", - "HeaderRuntime": "\uc0c1\uc601 \uc2dc\uac04", - "HeaderCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810", - "HeaderPasswordReset": "\ube44\ubc00\ubc88\ud638 \ucd08\uae30\ud654", - "HeaderParentalRating": "\uc790\ub140 \ubcf4\ud638 \ub4f1\uae09", - "HeaderReleaseDate": "\uac1c\ubd09\uc77c", - "HeaderDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc", - "HeaderSeries": "\uc2dc\ub9ac\uc988", - "HeaderSeason": "\uc2dc\uc98c", - "HeaderSeasonNumber": "\uc2dc\uc98c \ubc88\ud638", - "HeaderNetwork": "\ub124\ud2b8\uc6cc\ud06c", - "HeaderYear": "\uc5f0\ub3c4", - "HeaderGameSystem": "\uac8c\uc784 \uc2dc\uc2a4\ud15c", - "HeaderPlayers": "\ud50c\ub808\uc774\uc5b4", - "HeaderEmbeddedImage": "\ub0b4\uc7a5 \uc774\ubbf8\uc9c0", - "HeaderTrack": "\ud2b8\ub799", - "HeaderDisc": "\ub514\uc2a4\ud06c", - "OptionMovies": "\uc601\ud654", - "OptionCollections": "\uceec\ub809\uc158", - "OptionSeries": "\uc2dc\ub9ac\uc988", - "OptionSeasons": "\uc2dc\uc98c", - "OptionEpisodes": "\uc5d0\ud53c\uc18c\ub4dc", - "OptionGames": "\uac8c\uc784", - "OptionGameSystems": "\uac8c\uc784 \uc2dc\uc2a4\ud15c", - "OptionMusicArtists": "\uc74c\uc545 \uc544\ud2f0\uc2a4\ud2b8", - "OptionMusicAlbums": "\uc74c\uc545 \uc568\ubc94", - "OptionMusicVideos": "\ubba4\uc9c1 \ube44\ub514\uc624", - "OptionSongs": "\ub178\ub798", - "OptionHomeVideos": "\ud648 \ube44\ub514\uc624", - "OptionBooks": "\ucc45", - "OptionAdultVideos": "\uc131\uc778 \ube44\ub514\uc624", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "\uba54\ud0c0\ub370\uc774\ud130 \ub2e4\uc6b4\ub85c\ub354:", - "LabelMetadataDownloadersHelp": "\uc120\ud638\ud558\ub294 \uba54\ud0c0\ub370\uc774\ud130 \ub2e4\uc6b4\ub85c\ub354\ub97c \uc6b0\uc120 \uc21c\uc704\uc5d0 \ub530\ub77c \uc815\ub82c\ud569\ub2c8\ub2e4. \ub0ae\uc740 \uc6b0\uc120 \uc21c\uc704\uc758 \ub2e4\uc6b4\ub85c\ub354\ub294 \ub204\ub77d\ub41c \uc815\ubcf4\ub97c \uac00\uc838\uc624\ub294 \ub370\ub9cc \uc0ac\uc6a9\ud569\ub2c8\ub2e4.", - "LabelMetadataSavers": "\uba54\ud0c0\ub370\uc774\ud130 \uc11c\ubc84", - "LabelMetadataSaversHelp": "\uba54\ud0c0\ub370\uc774\ud130\ub97c \uc800\uc7a5\ud560 \ud615\uc2dd\uc744 \uc120\ud0dd\ud569\ub2c8\ub2e4.", - "LabelImageFetchers": "\uc774\ubbf8\uc9c0 \ub2e4\uc6b4\ub85c\ub354:", - "LabelImageFetchersHelp": "\uc120\ud638\ud558\ub294 \uc774\ubbf8\uc9c0 \ub2e4\uc6b4\ub85c\ub354\ub97c \uc6b0\uc120 \uc21c\uc704\uc5d0 \ub77c \uc815\ub82c\ud569\ub2c8\ub2e4.", - "ButtonQueueAllFromHere": "\uc5ec\uae30\ubd80\ud130 \ubaa8\ub450 \ub300\uae30\uc5f4\uc5d0 \ucd94\uac00", - "ButtonPlayAllFromHere": "\uc5ec\uae30\ubd80\ud130 \ubaa8\ub450 \uc7ac\uc0dd", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "\uc778\ubb3c", - "LabelTitleDisplayOrder": "\uc81c\ubaa9 \ud45c\uc2dc \uc21c\uc11c:", - "OptionSortName": "\uc815\ub82c \uc81c\ubaa9", - "OptionReleaseDate": "\uac1c\ubd09\uc77c", - "LabelSeasonNumber": "\uc2dc\uc98c \ubc88\ud638:", - "LabelDiscNumber": "\ub514\uc2a4\ud06c \ubc88\ud638", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "\uc5d0\ud53c\uc18c\ub4dc \ubc88\ud638:", - "LabelTrackNumber": "\ud2b8\ub799 \ubc88\ud638:", - "LabelNumber": "\ubc88\ud638:", - "LabelReleaseDate": "\uac1c\ubd09\uc77c:", - "LabelEndDate": "End date:", - "LabelYear": "\uc5f0\ub3c4:", - "LabelDateOfBirth": "\uc0dd\uc77c:", - "LabelBirthYear": "\uc0dd\ub144:", - "LabelBirthDate": "\uc0dd\uc77c:", - "LabelDeathDate": "\uc0ac\ub9dd\uc77c:", - "HeaderRemoveMediaLocation": "\ubbf8\ub514\uc5b4 \uc704\uce58 \uc81c\uac70", - "MessageConfirmRemoveMediaLocation": "\uc774 \ubbf8\ub514\uc5b4 \uc704\uce58\ub97c \uc81c\uac70\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "HeaderRenameMediaFolder": "\ubbf8\ub514\uc5b4 \ud3f4\ub354 \uc774\ub984 \ubcc0\uacbd", - "LabelNewName": "\uc0c8 \uc774\ub984:", - "HeaderAddMediaFolder": "\ubbf8\ub514\uc5b4 \ud3f4\ub354 \ucd94\uac00", - "HeaderAddMediaFolderHelp": "\uc774\ub984 (\uc601\ud654, \uc74c\uc545, TV, \uae30\ud0c0):", - "HeaderRemoveMediaFolder": "\ubbf8\ub514\uc5b4 \ud3f4\ub354 \uc81c\uac70", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "\ub2e4\uc74c \ubbf8\ub514\uc5b4 \ud3f4\ub354\uac00 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0\uc11c \uc81c\uac70\ub429\ub2c8\ub2e4:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "\ubbf8\ub514\uc5b4 \ud3f4\ub354\ub97c \uc81c\uac70\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "ButtonRename": "\uc774\ub984 \ubcc0\uacbd", - "ButtonChangeContentType": "\ucf58\ud150\ud2b8 \uc885\ub958 \ubcc0\uacbd", - "HeaderMediaLocations": "\ubbf8\ub514\uc5b4 \uc704\uce58", - "LabelContentTypeValue": "\ucf58\ud150\ud2b8 \uc885\ub958: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "\uc601\ud654", - "FolderTypeMusic": "\uc74c\uc545", - "FolderTypeAdultVideos": "\uc131\uc778 \ube44\ub514\uc624", - "FolderTypePhotos": "\uc0ac\uc9c4", - "FolderTypeMusicVideos": "\ubba4\uc9c1 \ube44\ub514\uc624", - "FolderTypeHomeVideos": "\ud648 \ube44\ub514\uc624", - "FolderTypeGames": "\uac8c\uc784", - "FolderTypeBooks": "\ucc45", - "FolderTypeTvShows": "TV", - "TabMovies": "\uc601\ud654", - "TabSeries": "\uc2dc\ub9ac\uc988", - "TabEpisodes": "\uc5d0\ud53c\uc18c\ub4dc", - "TabTrailers": "\uc608\uace0\ud3b8", - "TabGames": "\uac8c\uc784", - "TabAlbums": "\uc568\ubc94", - "TabSongs": "\ub178\ub798", - "TabMusicVideos": "\ubba4\uc9c1 \ube44\ub514\uc624", - "BirthPlaceValue": "\ucd9c\uc0dd\uc9c0: {0}", - "DeathDateValue": "\uc0ac\ub9dd: {0}", - "BirthDateValue": "\ucd9c\uc0dd: {0}", - "HeaderLatestReviews": "\ucd5c\uadfc \ub9ac\ubdf0", - "HeaderPluginInstallation": "\ud50c\ub7ec\uadf8\uc778 \uc124\uce58", - "MessageAlreadyInstalled": "\uc774 \ubc84\uc804\uc740 \uc774\ubbf8 \uc124\uce58\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.", - "ValueReviewCount": "{0} \ub9ac\ubdf0", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "\uc774 \uae30\ub2a5\uc758 \uc2dc\ud5d8 \uc0ac\uc6a9 \uae30\uac04\uc774 \ub9cc\ub8cc\ub418\uc5c8\uc2b5\ub2c8\ub2e4", - "MessageTrialWillExpireIn": "\uc774 \uae30\ub2a5\uc758 \uc2dc\ud5d8 \uc0ac\uc6a9 \uae30\uac04\uc774 {0} \uc77c \uc548\uc5d0 \ub9cc\ub8cc\ub429\ub2c8\ub2e4", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "\uac00\uaca9: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "\uc0ad\uc81c", - "HeaderEmbyAccountAdded": "Emby \uacc4\uc815 \ucd94\uac00\ub428", - "MessageEmbyAccountAdded": "\uc774 \uc0ac\uc6a9\uc790\uc5d0\uac8c Emby \uacc4\uc815\uc774 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "MessagePendingEmbyAccountAdded": "\uc774 \uc0ac\uc6a9\uc790\uc5d0\uac8c Emby \uacc4\uc815\uc774 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uacc4\uc815 \uc18c\uc720\uc790\uc5d0\uac8c \uc774\uba54\uc77c\uc774 \ubc1c\uc1a1\ub429\ub2c8\ub2e4. \ucd08\ub300\ub294 \uc774\uba54\uc77c\uc5d0 \ud3ec\ud568\ub41c \ub9c1\ud06c\ub97c \ud074\ub9ad\ud558\uc5ec \ud655\uc778\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "HeaderEmbyAccountRemoved": "Emby \uacc4\uc815 \uc81c\uac70\ub428", - "MessageEmbyAccontRemoved": "\uc774 \uc0ac\uc6a9\uc790\uc758 Emby \uacc4\uc815\uc774 \uc81c\uac70\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "TooltipLinkedToEmbyConnect": "Emby Connect\uc5d0 \uc5f0\uacb0\ub428", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "\ub514\uc2a4\ud06c {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} \ubd84", - "ButtonPlayExternalPlayer": "\uc678\ubd80 \ud50c\ub808\uc774\uc5b4\ub85c \uc7ac\uc0dd", - "HeaderSelectExternalPlayer": "\uc678\ubd80 \ud50c\ub808\uc774\uc5b4 \uc120\ud0dd", - "HeaderExternalPlayerPlayback": "\uc678\ubd80 \ud50c\ub808\uc774\uc5b4 \uc7ac\uc0dd", - "ButtonImDone": "I'm Done", - "OptionWatched": "\uc2dc\uccad\ud568", - "OptionUnwatched": "\uc2dc\uccad \uc548 \ud568", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 \uc601\ud654", - "ValueMovieCount": "{0} \uc601\ud654", - "ValueOneTrailer": "1 \uc608\uace0\ud3b8", - "ValueTrailerCount": "{0} \uc608\uace0\ud3b8", - "ValueOneSeries": "1 \uc2dc\ub9ac\uc988", - "ValueSeriesCount": "{0} \uc2dc\ub9ac\uc988", - "ValueOneEpisode": "1 \uc5d0\ud53c\uc18c\ub4dc", - "ValueEpisodeCount": "{0} \uc5d0\ud53c\uc18c\ub4dc", - "ValueOneGame": "1 \uac8c\uc784", - "ValueGameCount": "{0} \uac8c\uc784", - "ValueOneAlbum": "1 \uc568\ubc94", - "ValueAlbumCount": "{0} \uc568\ubc94", - "ValueOneSong": "1 \ub178\ub798", - "ValueSongCount": "{0} \ub178\ub798", - "ValueOneMusicVideo": "1 \ubba4\uc9c1 \ube44\ub514\uc624", - "ValueMusicVideoCount": "{0} \ubba4\uc9c1 \ube44\ub514\uc624", - "HeaderOffline": "\uc624\ud504\ub77c\uc778", - "HeaderUnaired": "Unaired", - "HeaderMissing": "\ub204\ub77d", - "ButtonWebsite": "\uc6f9\uc0ac\uc774\ud2b8", - "TooltipFavorite": "Favorite", - "TooltipLike": "\uc88b\uc544\ud568", - "TooltipDislike": "\uc2eb\uc5b4\ud568", - "TooltipPlayed": "\uc7ac\uc0dd", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "\uc2a4\ud29c\ub514\uc624: {0}", - "ValueStudios": "\uc2a4\ud29c\ub514\uc624: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "\uc544\ud2f0\uc2a4\ud2b8: {0}", - "ValueArtists": "\uc544\ud2f0\uc2a4\ud2b8: {0}", - "HeaderTags": "\ud0dc\uadf8", - "MediaInfoCameraMake": "\uce74\uba54\ub77c \uc81c\uc870\uc0ac", - "MediaInfoCameraModel": "\uce74\uba54\ub77c \ubaa8\ub378", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "\uc870\ub9ac\uac1c", - "MediaInfoExposureTime": "\ub178\ucd9c \uc2dc\uac04", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "\uc154\ud130 \uc18d\ub3c4", - "MediaInfoSoftware": "\uc18c\ud504\ud2b8\uc6e8\uc5b4", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "\uc904\uac70\ub9ac \ud0a4\uc6cc\ub4dc", - "HeaderMovies": "\uc601\ud654", - "HeaderAlbums": "\uc568\ubc94", - "HeaderGames": "\uac8c\uc784", - "HeaderBooks": "\ucc45", - "HeaderEpisodes": "\uc5d0\ud53c\uc18c\ub4dc", - "HeaderSeasons": "\uc2dc\uc98c", - "HeaderTracks": "\ud2b8\ub799", - "HeaderItems": "\ud56d\ubaa9", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "\uc0c1\uc138 \ub9ac\ubdf0", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "\uacbd\ub85c", - "MediaInfoFile": "File", - "MediaInfoFormat": "\ud615\uc2dd", - "MediaInfoContainer": "\ucee8\ud14c\uc774\ub108", - "MediaInfoDefault": "\uae30\ubcf8", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "\uc678\ubd80", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "\uc0d8\ud50c \ub808\uc774\ud2b8", - "MediaInfoBitrate": "\ube44\ud2b8\ub808\uc774\ud2b8", - "MediaInfoChannels": "\ucc44\ub110", - "MediaInfoLayout": "\ub808\uc774\uc544\uc6c3", - "MediaInfoLanguage": "\uc5b8\uc5b4", - "MediaInfoCodec": "\ucf54\ub371", - "MediaInfoCodecTag": "\ucf54\ub371 \ud0dc\uadf8", - "MediaInfoProfile": "\ud504\ub85c\ud30c\uc77c", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "\ud654\uba74\ube44", - "MediaInfoResolution": "\ud574\uc0c1\ub3c4", - "MediaInfoAnamorphic": "\uc544\ub098\ubab0\ud53d", - "MediaInfoInterlaced": "\uc778\ud130\ub808\uc774\uc2a4", - "MediaInfoFramerate": "\ud504\ub808\uc784 \ub808\uc774\ud2b8", - "MediaInfoStreamTypeAudio": "\uc624\ub514\uc624", - "MediaInfoStreamTypeData": "\ub0a0\uc9dc", - "MediaInfoStreamTypeVideo": "\ube44\ub514\uc624", - "MediaInfoStreamTypeSubtitle": "\uc790\ub9c9", - "MediaInfoStreamTypeEmbeddedImage": "\ub0b4\uc7a5 \uc774\ubbf8\uc9c0", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "\uc7ac\uc0dd", - "TabNotifications": "\uc54c\ub9bc", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "\ud3c9\uc810 \ubc0f \ub9ac\ubdf0", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "\ub0b4 \ud3c9\uc810:", - "LabelFullReview": "\uc0c1\uc138 \ub9ac\ubdf0:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "\uc774 \ud56d\ubaa9 \ucd94\ucc9c", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "\uc5f0\uacb0 \uc2e4\ud328", - "MessageUnableToConnectToServer": "\uc120\ud0dd\ud55c \uc11c\ubc84\uc5d0 \uc5f0\uacb0\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc11c\ubc84\uac00 \uc2e4\ud589 \uc911\uc778\uc9c0 \ud655\uc778\ud6c4 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "ButtonSelectServer": "\uc11c\ubc84 \uc120\ud0dd", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "\uc811\uadfc\uc774 \uc81c\ud55c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "DefaultErrorMessage": "\uc694\uad6c \ucc98\ub9ac \uacfc\uc815\uc5d0 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "ButtonAccept": "\uc218\ub77d", - "ButtonReject": "\uac70\uc808", - "HeaderForgotPassword": "\ube44\ubc00\ubc88\ud638 \ubd84\uc2e4", - "MessageContactAdminToResetPassword": "\ube44\ubc00\ubc88\ud638\ub97c \ucd08\uae30\ud654\ud558\ub824\uba74 \uc2dc\uc2a4\ud15c \uad00\ub9ac\uc790\uc5d0\uac8c \ubb38\uc758\ud558\uc138\uc694.", - "MessageForgotPasswordInNetworkRequired": "\ube44\ubc00\ubc88\ud638 \ucd08\uae30\ud654\ub97c \uc9c4\ud589\ud558\ub824\uba74 \uadc0\ud558\uc758 \ud648 \ub124\ud2b8\uc6cc\ud06c\uc5d0\uc11c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "MessageForgotPasswordFileCreated": "\uc9c4\ud589 \ubc29\ubc95\uc774 \uc124\uba85\ub41c \ub2e4\uc74c\uc758 \ud30c\uc77c\uc774 \uadc0\ud558\uc758 \uc11c\ubc84\uc5d0 \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "MessageForgotPasswordFileExpiration": "\ucd08\uae30\ud654 PIN \ucf54\ub4dc\uac00 {0}\uc5d0 \ub9cc\ub8cc\ub429\ub2c8\ub2e4.", - "MessageInvalidForgotPasswordPin": "\uc62c\ubc14\ub974\uc9c0 \uc54a\uac70\ub098 \ub9cc\ub8cc\ub41c PIN \ucf54\ub4dc\uc785\ub2c8\ub2e4. \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "MessagePasswordResetForUsers": "\ub2e4\uc74c \uc0ac\uc6a9\uc790\uc758 \ube44\ubc00\ubc88\ud638\uac00 \uc0ad\uc81c\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \ube48 \ube44\ubc00\ubc88\ud638\ub85c \ub85c\uadf8\uc778\ud558\uc138\uc694.", - "HeaderInviteGuest": "\uc190\ub2d8 \ucd08\ub300", - "ButtonLinkMyEmbyAccount": "\uc9c0\uae08 \ub0b4 \uacc4\uc815 \uc5f0\uacb0", - "MessageConnectAccountRequiredToInviteGuest": "\uc190\ub2d8\uc744 \ucd08\ub300\ud558\ub824\uba74 \uba3c\uc800 \uadc0\ud558\uc758 Emby \uacc4\uc815\uc744 \uc774 \uc11c\ubc84\uc5d0 \uc5f0\uacb0\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "ButtonSync": "\ub3d9\uae30\ud654", - "SyncMedia": "\ubbf8\ub514\uc5b4 \ub3d9\uae30\ud654", - "HeaderCancelSyncJob": "\ub3d9\uae30\ud654 \ucde8\uc18c", - "CancelSyncJobConfirmation": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc744 \ucde8\uc18c\ud558\uba74 \ub2e4\uc74c \ub3d9\uae30\ud654\ub97c \uc9c4\ud589\ud560 \ub54c \ub3d9\uae30\ud654 \ub41c \ubbf8\ub514\uc5b4\ub97c \uc7a5\uce58\uc5d0\uc11c \uc0ad\uc81c\ud569\ub2c8\ub2e4. \uc9c4\ud589\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "TabSync": "\ub3d9\uae30\ud654", - "MessagePleaseSelectDeviceToSyncTo": "\ub3d9\uae30\ud654 \ud560 \uc7a5\uce58\ub97c \uc120\ud0dd\ud558\uc138\uc694.", - "MessageSyncJobCreated": "\ub3d9\uae30\ud654 \uc791\uc5c5\uc774 \uc0dd\uc131\ub418\uc5c8\uc2b5\ub2c8\ub2e4.", - "LabelSyncTo": "\ub3d9\uae30\ud654 \uc7a5\uce58:", - "LabelSyncJobName": "\ub3d9\uae30\ud654 \uc791\uc5c5 \uc774\ub984:", - "LabelQuality": "\ud488\uc9c8:", - "HeaderSettings": "\uc124\uc815", - "OptionAutomaticallySyncNewContent": "\uc0c8 \ucf58\ud150\ud2b8 \uc790\ub3d9 \ub3d9\uae30\ud654", - "OptionAutomaticallySyncNewContentHelp": "\uc0c8 \ucf58\ud150\ud2b8\uac00 \uc7a5\uce58\ub85c \ub3d9\uae30\ud654\ub418\uc5b4 \uc790\ub3d9\uc73c\ub85c \ucd94\uac00\ub429\ub2c8\ub2e4.", - "OptionSyncUnwatchedVideosOnly": "\uc2dc\uccad\ud558\uc9c0 \uc54a\uc740 \ube44\ub514\uc624\ub9cc \ub3d9\uae30\ud654", - "OptionSyncUnwatchedVideosOnlyHelp": "\uc2dc\uccad\ud558\uc9c0 \uc54a\uc740 \ube44\ub514\uc624\ub9cc \ub3d9\uae30\ud654\ub418\uba70 \uc2dc\uccad\ud55c \ube44\ub514\uc624\ub294 \uc7a5\uce58\uc5d0\uc11c \uc0ad\uc81c\ub429\ub2c8\ub2e4.", - "LabelItemLimit": "\ud56d\ubaa9 \uc81c\ud55c:", - "LabelItemLimitHelp": "\uc120\ud0dd\uc0ac\ud56d. \ub3d9\uae30\ud654 \ud560 \ud56d\ubaa9 \uc218\ub97c \uc81c\ud55c\ud569\ub2c8\ub2e4.", - "MessageBookPluginRequired": "Bookshelf \ud50c\ub7ec\uadf8\uc778 \uc124\uce58 \ud544\uc694", - "MessageGamePluginRequired": "GameBrowser \ud50c\ub7ec\uadf8\uc778 \uc124\uce58 \ud544\uc694", - "MessageUnsetContentHelp": "\ucf58\ud150\ud2b8\uac00 \uc77c\ubc18 \ud3f4\ub354\ub85c \ud45c\uc2dc\ub429\ub2c8\ub2e4. \ucd5c\uc0c1\uc758 \uacb0\uacfc\ub97c \uc704\ud574 \uba54\ud0c0\ub370\uc774\ud130 \uad00\ub9ac\uc790\ub97c \uc0ac\uc6a9\ud558\uc5ec \ud558\uc704 \ud3f4\ub354\uc758 \ucf58\ud150\ud2b8 \uc885\ub958\ub97c \uc124\uc815\ud558\uc138\uc694.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "\uc7a5\uce58\uc5d0\uc11c \uc0ad\uc81c\ub428", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "\ud504\ub85c\ud30c\uc77c:", - "LabelBitrateMbps": "\ube44\ud2b8\ub808\uc774\ud2b8 (Mbps):", - "EmbyIntroDownloadMessage": "Emby \uc11c\ubc84\ub97c \ub2e4\uc6b4\ub85c\ub4dc\ud558\uace0 \uc124\uce58\ud558\ub824\uba74 {0} \uc744(\ub97c) \ubc29\ubb38\ud558\uc138\uc694.", - "ButtonNewServer": "\uc0c8 \uc11c\ubc84", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "\uc0c8 \uc11c\ubc84", - "MyDevice": "\ub0b4 \uc7a5\uce58", - "ButtonRemote": "\uc6d0\uaca9", - "TabInfo": "\uc815\ubcf4", - "TabCast": "\ubc30\uc5ed", - "TabScenes": "\uc7a5\uba74", - "HeaderUnlockApp": "\uc571 \uc81c\ud55c \ud480\uae30", - "HeaderUnlockSync": "Emby \ub3d9\uae30\ud654 \uc81c\ud55c \ud480\uae30", - "MessageUnlockAppWithPurchaseOrSupporter": "\uc774 \uae30\ub2a5\uc758 \uc81c\ud55c\uc744 \ud480\ub824\uba74 \uad6c\ub9e4\ud558\uac70\ub098 Emby \ud504\ub9ac\ubbf8\uc5b4\ub97c \uad6c\ub3c5\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "MessageUnlockAppWithSupporter": "Emby \ud504\ub9ac\ubbf8\uc5b4 \uad6c\ub3c5\uc73c\ub85c \uc774 \uae30\ub2a5\uc758 \uc81c\ud55c\uc744 \ud489\ub2c8\ub2e4.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "\ud604\uc7ac \uacb0\uc81c \uc11c\ube44\uc2a4\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub098\uc911\uc5d0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "MessagePleaseSignInLocalNetwork": "\uc9c4\ud589\ud558\uae30 \uc804\uc5d0 WiFi \ub610\ub294 LAN \uc5f0\uacb0\uc744 \ud1b5\ud574 \uadc0\ud558\uc758 \ub85c\uceec \ub124\ud2b8\uc6cc\ud06c\uc5d0 \uc5f0\uacb0\ub418\uc5b4 \uc788\ub294\uc9c0 \ud655\uc778\ud558\uc138\uc694.", - "ButtonUnlockWithPurchase": "\uad6c\ub9e4\ud558\uc5ec \uc81c\ud55c \ud480\uae30", - "ButtonUnlockPrice": "\uc81c\ud55c \ud480\uae30 {0}", - "MessageLiveTvGuideRequiresUnlock": "TV \ubc29\uc1a1 \uac00\uc774\ub4dc\ub294 \ud604\uc7ac {0} \ucc44\ub110\uc5d0 \uc81c\ud55c\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \uc81c\ud55c \ud480\uae30 \ubc84\ud2bc\uc744 \ud074\ub9ad\ud558\uc5ec \ubaa8\ub4e0 \uacbd\ud5d8\uc744 \uc990\uae30\uc138\uc694.", - "OptionEnableFullscreen": "\uc804\uccb4 \ud654\uba74 \uc0ac\uc6a9", - "ButtonServer": "\uc11c\ubc84", - "HeaderAdmin": "\uad00\ub9ac\uc790", - "HeaderLibrary": "\ub77c\uc774\ube0c\ub7ec\ub9ac", - "HeaderMedia": "\ubbf8\ub514\uc5b4", - "ButtonInbox": "\uc218\uc2e0\ud568", - "HeaderAdvanced": "\uace0\uae09", - "HeaderGroupVersions": "\uadf8\ub8f9 \ubc84\uc804", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "\ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "\ud56d\ubaa9\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.", - "ButtonManageServer": "\uc11c\ubc84 \uad00\ub9ac", - "ButtonEditSubtitles": "\uc790\ub9c9 \ud3b8\uc9d1", - "ButtonPreferences": "\ud658\uacbd \uc124\uc815", - "ButtonViewArtist": "\uc544\ud2f0\uc2a4\ud2b8 \ubcf4\uae30", - "ButtonViewAlbum": "\uc568\ubc94 \ubcf4\uae30", - "ButtonEditImages": "\uc774\ubbf8\uc9c0 \ud3b8\uc9d1", - "ErrorMessagePasswordNotMatchConfirm": "\ube44\ubc00\ubc88\ud638\uc640 \ube44\ubc00\ubc88\ud638 \ud655\uc778\uc774 \uc77c\uce58\ud558\uc5ec\uc57c \ud569\ub2c8\ub2e4.", - "ErrorMessageUsernameInUse": "\uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc778 \uc0ac\uc6a9\uc790\uba85\uc785\ub2c8\ub2e4. \ub2e4\ub978 \uc774\ub984\uc73c\ub85c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "ErrorMessageEmailInUse": "\uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc778 \uc774\uba54\uc77c \uc8fc\uc18c\uc785\ub2c8\ub2e4. \ub2e4\ub978 \uc774\uba54\uc77c \uc8fc\uc18c\ub85c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uac70\ub098 \ube44\ubc00\ubc88\ud638 \ubd84\uc2e4 \uae30\ub2a5\uc744 \uc0ac\uc6a9\ud558\uc138\uc694.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "\uacf5\uc720", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "\uacf5\uc720", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "\uc774 \uc7a5\uce58\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "MessageConfirmDeleteGuideProvider": "\uc774 \uac00\uc774\ub4dc \uc81c\uacf5\uc790\ub97c \uc0ad\uc81c\ud558\uaca0\uc2b5\ub2c8\uae4c?", - "HeaderDeleteProvider": "\uc81c\uacf5\uc790 \uc0ad\uc81c", - "HeaderAddProvider": "\uc81c\uacf5\uc790 \ucd94\uac00", - "ErrorAddingTunerDevice": "\ud29c\ub108 \uc7a5\uce58\ub97c \ucd94\uac00\ud558\ub294\ub370 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc811\uc18d \uac00\ub2a5\ud55c\uc9c0 \ud655\uc778\ud558\uace0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "ErrorSavingTvProvider": "TV \uc81c\uacf5\uc790\ub97c \uc800\uc7a5\ud558\ub294\ub370 \uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4. \uc811\uc18d \uac00\ub2a5\ud55c\uc9c0 \ud655\uc778\ud558\uace0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc138\uc694.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\ud3ec\uc2a4\ud130", - "OptionPosterCard": "\ud3ec\uc2a4\ud130 \uce74\ub4dc", - "OptionTimeline": "Timeline", - "OptionList": "\ubaa9\ub85d", - "OptionThumb": "\uc378\ub124\uc77c", - "OptionThumbCard": "\uc378\ub124\uc77c \uce74\ub4dc", - "OptionBanner": "\ubc30\ub108", - "NoSlideshowContentFound": "\uc2ac\ub77c\uc774\ub4dc \uc1fc \uc774\ubbf8\uc9c0\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.", - "OptionPhotoSlideshow": "\uc0ac\uc9c4 \uc2ac\ub77c\uc774\ub4dc \uc1fc", - "OptionBackdropSlideshow": "\ubc30\uacbd \uc2ac\ub77c\uc774\ub4dc \uc1fc", - "HeaderTopPlugins": "\ucd5c\uace0 \ud50c\ub7ec\uadf8\uc778", - "ButtonRecord": "\ub179\ud654", - "ButtonOther": "Other", - "HeaderSortBy": "\uc815\ub82c \uae30\uc900:", - "HeaderSortOrder": "\uc815\ub82c \uc21c\uc11c:", - "OptionAscending": "\uc624\ub984\ucc28\uc21c", - "OptionDescending": "\ub0b4\ub9bc\ucc28\uc21c", - "OptionNameSort": "\uc81c\ubaa9", - "OptionTvdbRating": "TVDb \ud3c9\uc810", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb \ud3c9\uc810", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "\ucd94\uac00\ud55c \ub0a0\uc9dc", - "OptionPlayCount": "\uc7ac\uc0dd \ud69f\uc218", - "ButtonDisconnect": "\uc5f0\uacb0 \ud574\uc81c", - "OptionAlbumArtist": "\uc568\ubc94 \uc544\ud2f0\uc2a4\ud2b8", - "OptionArtist": "\uc544\ud2f0\uc2a4\ud2b8", - "OptionAlbum": "\uc568\ubc94", - "OptionTrackName": "\ud2b8\ub799 \uc81c\ubaa9", - "OptionCommunityRating": "\ucee4\ubba4\ub2c8\ud2f0 \ud3c9\uc810", - "ButtonSort": "\uc815\ub82c", - "ButtonMenu": "\uba54\ub274", - "OptionDefaultSort": "\uae30\ubcf8", - "ButtonFilter": "\ud544\ud130", - "OptionCriticRating": "Critic \ud3c9\uc810", - "OptionVideoBitrate": "\ube44\ub514\uc624 \ube44\ud2b8\ub808\uc774\ud2b8", - "OptionMetascore": "Metascore", - "OptionRevenue": "\uc218\uc775", - "OptionBudget": "\uc608\uc0b0", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "\uac00\uc774\ub4dc", - "ButtonRecordedTv": "TV \ub179\ud654", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "\uc608", - "ButtonNo": "\uc544\ub2c8\uc624", - "ButtonRestorePreviousPurchase": "\uad6c\ub9e4 \ubcf5\uc6d0", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "\ub77c\uc774\ube0c\ub7ec\ub9ac", - "ButtonSearch": "\ucc3e\uae30", - "ButtonNowPlaying": "\uc9c0\uae08 \uc7ac\uc0dd \uc911", - "ButtonViewNewApp": "\uc0c8 \uc571 \ubcf4\uae30", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "\uc774\uba54\uc77c \uc8fc\uc18c", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "\uc2dc\ub124\ub9c8 \ubaa8\ub4dc", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/ms.json b/dashboard-ui/strings/javascript/ms.json deleted file mode 100644 index 57d536b87b..0000000000 --- a/dashboard-ui/strings/javascript/ms.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Seting Disimpan", - "AddUser": "Tambah Pengguna", - "Users": "Para Pengguna", - "Delete": "Padam", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/nb.json b/dashboard-ui/strings/javascript/nb.json deleted file mode 100644 index 883e6071d3..0000000000 --- a/dashboard-ui/strings/javascript/nb.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Innstillinger lagret", - "AddUser": "Legg til bruker", - "Users": "Brukere", - "Delete": "Slett", - "Administrator": "Administrator", - "Password": "Passord", - "DeleteImage": "Slett bilde", - "MessageThankYouForSupporting": "Takk for at du st\u00f8tter Emby.", - "MessagePleaseSupportProject": "Vennligst st\u00f8tt Emby.", - "DeleteImageConfirmation": "Er du sikker p\u00e5 at du vil slette bildet?", - "FileReadCancelled": "Lesing av filen kansellert.", - "FileNotFound": "Fil ikke funnet", - "FileReadError": "Feil oppstod i det filen ble lest", - "DeleteUser": "Slett bruker", - "DeleteUserConfirmation": "Er du sikker p\u00e5 at du vil slette denne brukeren?", - "PasswordResetHeader": "Tilbakestill passord", - "PasswordResetComplete": "Passordet har blitt tilbakestilt", - "PinCodeResetComplete": "PIN-koden har blitt tilbakestilt", - "PasswordResetConfirmation": "Er du sikker p\u00e5 at du vil tilbakestille passordet?", - "PinCodeResetConfirmation": "Er du sikker p\u00e5 at du vil tilbakestille PIN-koden?", - "HeaderPinCodeReset": "Tilbakestill PIN-kode", - "PasswordSaved": "Passord lagret", - "PasswordMatchError": "Passord og passord-verifiseringen m\u00e5 matche", - "OptionRelease": "Offisiell utgivelse", - "OptionBeta": "Beta", - "OptionDev": "Dev (Ustabil)", - "UninstallPluginHeader": "Avinstaller programtillegget", - "UninstallPluginConfirmation": "Er du sikker p\u00e5 at du \u00f8nsker \u00e5 avinstallere {0}?", - "NoPluginConfigurationMessage": "Dette programtillegget har ingenting \u00e5 konfigurere.", - "NoPluginsInstalledMessage": "Du har ingen programtillegg installert.", - "BrowsePluginCatalogMessage": "Browse v\u00e5r plugin-katalog for \u00e5 se tilgjengelige plugins", - "HeaderNewApiKey": "Ny Api N\u00f8kkel", - "LabelAppName": "Applikasjonsnavn", - "LabelAppNameExample": "Eksempel: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "N\u00f8kkel sendt til {0}", - "MessageKeysLinked": "N\u00f8kler lenket.", - "HeaderConfirmation": "Bekreftelse", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "St\u00f8tt Emby teamet!", - "TextEnjoyBonusFeatures": "Nyt bonusfunksjonene", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Legg til tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Synk", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Velg dato", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identifiser", - "HeaderIdentifyItem": "Identifiser Element", - "LabelRecurringDonationCanBeCancelledHelp": "Gjentakende donasjoner kan avbrytes n\u00e5r som helst fra din PayPal-konto.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "Mine media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Beskjeder", - "ErrorLaunchingChromecast": "Det var en feil ved start av Chromecast. Vennligst forsikre deg om at enheten har korrekt forbindelse til ditt tr\u00e5dl\u00f8se nettverk.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Fjern bruker", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Tidsgrense: 1 time", - "ValueTimeLimitMultiHour": "Tidsgrense: {0} time", - "HeaderUsers": "Brukere", - "PluginCategoryGeneral": "Generelt", - "PluginCategoryContentProvider": "Innholdstilbydere", - "PluginCategoryScreenSaver": "Skjermspar", - "PluginCategoryTheme": "Temaer", - "PluginCategorySync": "Synk", - "PluginCategorySocialIntegration": "Sosiale nettverk", - "PluginCategoryNotifications": "Varslinger", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Kanaler", - "HeaderSearch": "S\u00f8k", - "ValueDateCreated": "Dato opprettet: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Film", - "LabelMusicVideo": "Musikk Video", - "LabelEpisode": "Episode", - "LabelSeries": "Serier", - "LabelStopping": "Stoppe", - "LabelCancelled": "(kansellert)", - "LabelFailed": "(feilet)", - "ButtonHelp": "Hjelp", - "ButtonSave": "Lagre", - "ButtonDownload": "Nedlasting", - "SyncJobStatusQueued": "I k\u00f8", - "SyncJobStatusConverting": "Konverterer", - "SyncJobStatusFailed": "Feilet", - "SyncJobStatusCancelled": "Avbrutt", - "SyncJobStatusCompleted": "Synkronisert", - "SyncJobStatusReadyToTransfer": "Klar til overf\u00f8ring", - "SyncJobStatusTransferring": "Overf\u00f8rer", - "SyncJobStatusCompletedWithError": "Synkronisert med feil", - "SyncJobItemStatusReadyToTransfer": "Klar til overf\u00f8ring", - "LabelCollection": "Samling", - "HeaderAddToCollection": "Legg til i Samling", - "HeaderNewCollection": "Ny Samling", - "NewCollectionNameExample": "Eksempel: Star Wars-samling", - "OptionSearchForInternetMetadata": "S\u00f8k p\u00e5 internet for artwork og metadata", - "LabelSelectCollection": "Velg samling:", - "HeaderDevices": "Enheter", - "ButtonScheduledTasks": "Planlagte oppgaver", - "MessageItemsAdded": "Elementer lagt til", - "ButtonAddToCollection": "Legg til samling", - "HeaderSelectCertificatePath": "Velg sti for sertifikat:", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "Det ser ikke ut til at du har noen applikasjoner som st\u00f8tter synkronisering.", - "HeaderWelcomeToProjectServerDashboard": "Velkommen til Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Velkommen til Emby", - "ButtonTakeTheTour": "Bli med p\u00e5 omvisning", - "HeaderWelcomeBack": "Velkommen tilbake!", - "TitlePlugins": "Programtillegg", - "ButtonTakeTheTourToSeeWhatsNew": "Ta en titt p\u00e5 hva som er nytt", - "MessageNoSyncJobsFound": "Ingen synkroniseringsjobber funnet. Opprett en synkroniseringsjobb ved hjelp av Synkroniseringsknappene i biblioteket", - "HeaderLibraryAccess": "Bibliotek tilgang", - "HeaderChannelAccess": "Kanal tilgang", - "HeaderDeviceAccess": "Enhetstilgang", - "HeaderSelectDevices": "Velg enheter", - "ButtonCancelItem": "Avbryt element", - "ButtonQueueForRetry": "K\u00f8 for \u00e5 pr\u00f8ve igjen", - "ButtonReenable": "Skru p\u00e5 igjen", - "ButtonLearnMore": "L\u00e6re mer", - "SyncJobItemStatusSyncedMarkForRemoval": "Markert for fjerning", - "LabelAbortedByServerShutdown": "(Avbrutt av server shutdown)", - "LabelScheduledTaskLastRan": "Sist kj\u00f8rt {0}, tar {1}.", - "HeaderDeleteTaskTrigger": "Slett Oppgave Trigger", - "MessageDeleteTaskTrigger": "Er du sikker p\u00e5 at du vil slette denne oppgave triggeren?", - "MessageNoPluginsInstalled": "Du har ingen programtillegg installert.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installert.", - "LabelNumberReviews": "{0} Anmeldelser", - "LabelFree": "Gratis", - "HeaderTo": "Til", - "HeaderPlaybackError": "Avspillingsfeil", - "MessagePlaybackErrorNotAllowed": "Du er for \u00f8yeblikket ikke autorisert til \u00e5 spille dette innholdet. Ta kontakt med systemadministratoren for mer informasjon.", - "MessagePlaybackErrorNoCompatibleStream": "Ingen kompatible streamer er tilgjengelig for \u00f8yeblikket. Vennligst pr\u00f8v igjen senere eller kontakt systemadministratoren for mer informasjon.", - "MessagePlaybackErrorRateLimitExceeded": "Avspillingshastighet grensen er overskredet. Ta kontakt med systemadministratoren for mer informasjon.", - "MessagePlaybackErrorPlaceHolder": "Valgt innholdet, kan ikke avspilles fra denne enheten.", - "HeaderSelectAudio": "Velg Lyd", - "HeaderSelectSubtitles": "Velg Undertekst", - "ButtonMarkForRemoval": "Fjern fra enheten.", - "ButtonUnmarkForRemoval": "Avbryt fjerning fra enheten", - "LabelDefaultStream": "(Standard)", - "LabelForcedStream": "(Tvunget)", - "LabelDefaultForcedStream": "(Standard\/Tvunget)", - "LabelUnknownLanguage": "Ukjent spr\u00e5k", - "MessageConfirmSyncJobItemCancellation": "Er du sikker p\u00e5 at du vil kansellere dette elementet?", - "ButtonMute": "Mute", - "ButtonUnmute": "Lyd p\u00e5", - "ButtonStop": "Stopp", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Spill", - "ButtonEdit": "Rediger", - "ButtonQueue": "K\u00f8", - "ButtonPlayTrailer": "Spill trailer", - "ButtonPlaylist": "Spilleliste", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Aktivert", - "LabelDisabled": "Deaktivert", - "ButtonMoreInformation": "Mer Informasjon", - "LabelNoUnreadNotifications": "Ingen uleste meldinger.", - "ButtonViewNotifications": "Se meldinger.", - "ButtonMarkTheseRead": "Maker disse som lest", - "ButtonClose": "Lukk", - "LabelAllPlaysSentToPlayer": "Alt som spilles vil bli sendt til den valgte spilleren.", - "MessageInvalidUser": "Ugyldig brukernavn eller passord. Vennligst pr\u00f8v igjen.", - "HeaderLoginFailure": "P\u00e5loggingsfeil", - "HeaderAllRecordings": "Alle opptak", - "RecommendationBecauseYouLike": "Fordi du liker {0}", - "RecommendationBecauseYouWatched": "Fordi du s\u00e5 {0}", - "RecommendationDirectedBy": "Regissert av {0}", - "RecommendationStarring": "Med {0}", - "HeaderConfirmRecordingCancellation": "Bekreft Avbryt Opptak", - "MessageConfirmRecordingCancellation": "Er du sikker p\u00e5 at du vil avbryte dette opptaket?", - "MessageRecordingCancelled": "Opptak er Avbrutt.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Bekreft Serier kansellering", - "MessageConfirmSeriesCancellation": "Er du sikker p\u00e5 at du vil kansellere denne serien?", - "MessageSeriesCancelled": "Serie kansellert.", - "HeaderConfirmRecordingDeletion": "Bekreft Sletting av Opptak", - "MessageConfirmRecordingDeletion": "Er du sikker p\u00e5 at du vil slette dette opptaket?", - "MessageRecordingDeleted": "Opptak slettet.", - "ButonCancelRecording": "Avbryt Opptak", - "MessageRecordingSaved": "Opptak lagret.", - "OptionSunday": "S\u00f8ndag", - "OptionMonday": "Mandag", - "OptionTuesday": "Tirsdag", - "OptionWednesday": "Onsdag", - "OptionThursday": "Torsdag", - "OptionFriday": "Fredag", - "OptionSaturday": "L\u00f8rdag", - "OptionEveryday": "Hver dag", - "OptionWeekend": "Helger", - "OptionWeekday": "Ukedager", - "HeaderConfirmDeletion": "Bekreft Kansellering", - "MessageConfirmPathSubstitutionDeletion": "Er du sikker p\u00e5 at du vil slette sti erstatter?", - "LiveTvUpdateAvailable": "(Oppdatering tilgjengelig)", - "LabelVersionUpToDate": "Oppdatert!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Er du sikker p\u00e5 at du vil resette denne tuneren? Alle aktive enheter eller opptak vil br\u00e5tt stoppe.", - "ButtonCancelSeries": "Kanseller Serier", - "HeaderSeriesRecordings": "Serie Oppdak", - "LabelAnytime": "N\u00e5r som helst", - "StatusRecording": "Opptak", - "StatusWatching": "Ser P\u00e5", - "StatusRecordingProgram": "Opptak {0}", - "StatusWatchingProgram": "Ser P\u00e5 {0}", - "HeaderSplitMedia": "Del Media Fra Hverandre", - "MessageConfirmSplitMedia": "Er du sikker at du vil splitte mediakilden i separerte elementer?", - "HeaderError": "Feil", - "MessageChromecastConnectionError": "Chromecastmottakeren din klarer ikke \u00e5 koble til Emby Server. Vennligst sjekk deres internettforbindelser og pr\u00f8v igjen.", - "MessagePleaseSelectOneItem": "Vennligst velg minst ett element.", - "MessagePleaseSelectTwoItems": "Vennligst velg minst to elementer.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Fortsette", - "HeaderMyViews": "Mitt Syn", - "HeaderLibraryFolders": "Media Mapper", - "HeaderLatestMedia": "Siste Media", - "ButtonMoreItems": "More...", - "ButtonMore": "Mer", - "HeaderFavoriteMovies": "Favorittfilmer", - "HeaderFavoriteShows": "Favorittserier", - "HeaderFavoriteEpisodes": "Favorittepisoder", - "HeaderFavoriteGames": "Favorittspill", - "HeaderRatingsDownloads": "Rangering \/ Nedlasting", - "HeaderConfirmProfileDeletion": "Bekreft sletting av profil", - "MessageConfirmProfileDeletion": "Er du sikker p\u00e5 at du vil slette denne profilen?", - "HeaderSelectServerCachePath": "Velg Sti for Server Cache", - "HeaderSelectTranscodingPath": "Velg Sti for Midlertidig Transcoding", - "HeaderSelectImagesByNamePath": "Velg Sti for Bilder etter Navn", - "HeaderSelectMetadataPath": "Velg Sti for Metadata", - "HeaderSelectServerCachePathHelp": "Bla eller skriv stien som skal brukes for server cache filer. Mappen m\u00e5 v\u00e6re skrivbar.", - "HeaderSelectTranscodingPathHelp": "Bla eller skriv stien som skal brukes for transcoding av midlertidige filer. Mappen m\u00e5 v\u00e6re skrivbar.", - "HeaderSelectImagesByNamePathHelp": "Bla eller skriv stien til dine elementer etter navn mappe. Mappen m\u00e5 v\u00e6re skrivbar.", - "HeaderSelectMetadataPathHelp": "Bla eller skriv stien som skal brukes for metadata. Mappen m\u00e5 v\u00e6re skrivbar.", - "HeaderSelectChannelDownloadPath": "Velg Nedlastingsti For Kanal", - "HeaderSelectChannelDownloadPathHelp": "Bla igjennom eller skriv en sti som brukes for lagring av cache filer. Mappen m\u00e5 v\u00e6re skrivbar.", - "OptionNewCollection": "Ny...", - "ButtonAdd": "Legg til", - "ButtonRemove": "Fjern", - "LabelChapterDownloaders": "Kapittel nedlastinger:", - "LabelChapterDownloadersHelp": "Aktiver og ranger din foretrukne kapittel nedlasting i f\u00f8lgende prioritet. Lavere prioritet nedlastinger vil kun bli brukt for \u00e5 fylle inn manglende informasjon", - "HeaderFavoriteAlbums": "Favoritt Albumer", - "HeaderLatestChannelMedia": "Siste Kanal Elementer", - "ButtonOrganizeFile": "Organiser Fil", - "ButtonDeleteFile": "Slett FIl", - "HeaderOrganizeFile": "Organiser Fil", - "HeaderDeleteFile": "Slett FIl", - "StatusSkipped": "Hoppet over", - "StatusFailed": "Feilet", - "StatusSuccess": "Sukksess", - "MessageFileWillBeDeleted": "F\u00f8lgende fil vil bli slettet:", - "MessageSureYouWishToProceed": "Er du sikker p\u00e5 at du vil forsette?", - "MessageDuplicatesWillBeDeleted": "I tillegg vil f\u00f8lgende duplisering bli slettet:", - "MessageFollowingFileWillBeMovedFrom": "F\u00f8lgende fil har blitt flyttet fra:", - "MessageDestinationTo": "til:", - "HeaderSelectWatchFolder": "Velg overv\u00e5ket mappe", - "HeaderSelectWatchFolderHelp": "S\u00f8k igjennom eller velg sti for din Se mappe. Mappen m\u00e5 v\u00e6re skrivbar.", - "OrganizePatternResult": "Resultat: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Omstart", - "HeaderShutdown": "Sl\u00e5 Av", - "MessageConfirmRestart": "Er du sikker p\u00e5 at du vil starte Emby Server p\u00e5 ny?", - "MessageConfirmShutdown": "Er du sikker p\u00e5 at du vil avslutte Emby Server", - "ButtonUpdateNow": "Oppdater N\u00e5", - "ValueItemCount": "{0} element", - "ValueItemCountPlural": "{0} elementer", - "NewVersionOfSomethingAvailable": "En ny versjon av {0} er tilgjengelig!", - "VersionXIsAvailableForDownload": "Vesjon {0} er n\u00e5 tilgjengelig for nedlasting.", - "LabelVersionNumber": "Versjon {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direkte Streaming", - "LabelPlayMethodDirectPlay": "Direkte Avspilling", - "LabelAudioCodec": "Lyd: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Lokal tilgang: {0}", - "LabelRemoteAccessUrl": "Ekstern tilgang: {0}", - "LabelRunningOnPort": "Kj\u00f8rer p\u00e5 http port {0}.", - "LabelRunningOnPorts": "Kj\u00f8rer p\u00e5 http port {0} og https port {1}.", - "HeaderLatestFromChannel": "Siste fra {0}", - "LabelUnknownLanaguage": "Ukjent Spr\u00e5k", - "HeaderCurrentSubtitles": "N\u00e5v\u00e6rende undertekster", - "MessageDownloadQueued": "Nedlastingen har blitt satt i k\u00f8.", - "MessageAreYouSureDeleteSubtitles": "Er du sikker p\u00e5 at du vil slette denne undertekst filen?", - "ButtonRemoteControl": "Ekstern Kontroll", - "HeaderLatestTvRecordings": "Siste Opptak", - "ButtonOk": "Ok", - "ButtonCancel": "Avbryt", - "ButtonRefresh": "Oppdater", - "LabelCurrentPath": "N\u00e5v\u00e6rende sti:", - "HeaderSelectMediaPath": "Velg Media Sti", - "HeaderSelectPath": "Velg sti", - "ButtonNetwork": "Nettverk", - "MessageDirectoryPickerInstruction": "Nettverksti kan skrives inn manuelt i tilfelle Nettverk-knappen ikke klarer \u00e5 lokalisere enhetene dine. For eksempel {0} eller {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Meny", - "ButtonOpen": "\u00c5pne", - "ButtonOpenInNewTab": "\u00c5pne i ny fane", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Direktemiks", - "ButtonResume": "Fortsette", - "HeaderScenes": "Scener", - "HeaderAudioTracks": "Lydspor", - "HeaderLibraries": "Bibliotek", - "HeaderSubtitles": "Undertekster", - "HeaderVideoQuality": "Videookvalitet", - "MessageErrorPlayingVideo": "Det oppstod en feil ved avspilling av vidoen.", - "MessageEnsureOpenTuner": "Vennligst s\u00f8rg for at det minst er \u00e9n \u00e5pen tuner tilgjengelig.", - "ButtonHome": "Hjem", - "ButtonDashboard": "Dashbord", - "ButtonReports": "Rapporter", - "ButtonMetadataManager": "Metadata Behandler", - "HeaderTime": "Tid", - "HeaderName": "Navn", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Lagt til {0}", - "ButtonStart": "Start", - "HeaderChannels": "Kanaler", - "HeaderMediaFolders": "Mediemapper", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Andre", - "OptionBlockTvShows": "TV Serier", - "OptionBlockTrailers": "Trailere", - "OptionBlockMusic": "Musikk", - "OptionBlockMovies": "Filmer", - "OptionBlockBooks": "B\u00f8ker", - "OptionBlockGames": "Spill", - "OptionBlockLiveTvPrograms": "Live TV Programmer", - "OptionBlockLiveTvChannels": "Live TV Kanaler", - "OptionBlockChannelContent": "Innhold fra Internettkanal", - "ButtonRevoke": "Tilbakekall", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Tilbakekall API-n\u00f8kkel", - "ValueContainer": "Kontainer: {0}", - "ValueAudioCodec": "Lyd Kodek: {0}", - "ValueVideoCodec": "Video Kodek: {0}", - "ValueCodec": "Kodek: {0}", - "ValueConditions": "Tilstand: {0}", - "LabelAll": "Alle", - "HeaderDeleteImage": "Slett bilde", - "MessageFileNotFound": "Fant ikke fil.", - "MessageFileReadError": "En feil oppstod n\u00e5r filen skulle leses.", - "ButtonNextPage": "Neste Side", - "ButtonPreviousPage": "Forrige Side", - "ButtonMoveLeft": "Flytt til venstre", - "ButtonMoveRight": "Flytt til h\u00f8yre", - "ButtonBrowseOnlineImages": "Bla igjennom bilder online", - "HeaderDeleteItem": "Slett element", - "ConfirmDeleteItem": "Sletter elementet fra b\u00e5de filsystemet og biblioteket. Er du sikker p\u00e5 at du vil fortsette?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Vennligst skriv ett navn eller en ekstern id.", - "MessageValueNotCorrect": "Verdien som ble skrevet er ikke korrekt. Vennligst pr\u00f8v igjen.", - "MessageItemSaved": "Element lagret.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Vennligst aksepter tjenestevilk\u00e5rene f\u00f8r du fortsetter.", - "OptionEnded": "Avsluttet", - "OptionContinuing": "Fortsetter", - "OptionOff": "Av", - "OptionOn": "P\u00e5", - "ButtonSettings": "Innstillinger", - "ButtonUninstall": "Avinstaller", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Mangler lokal trailer", - "MissingPrimaryImage": "Mangler primary bilde.", - "MissingBackdropImage": "Mangler backdrop bilde.", - "MissingLogoImage": "Mangler logo bilde.", - "MissingEpisode": "Mangler episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Bilder", - "OptionKeywords": "N\u00f8kkelord", - "OptionTags": "Tagger", - "OptionStudios": "Studioer", - "OptionName": "Navn", - "OptionOverview": "Oversikt", - "OptionGenres": "Sjangere", - "OptionParentalRating": "Foreldresensur", - "OptionPeople": "Person", - "OptionRuntime": "Spilletid", - "OptionProductionLocations": "Produksjonsplass", - "OptionBirthLocation": "F\u00f8dested", - "LabelAllChannels": "Alle kanaler", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NY", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Endre innholdstype", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Varsling", - "MessagePleaseRestart": "Vennligst utf\u00f8r en omstart for \u00e5 fullf\u00f8re oppdatering.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Skjul", - "MessageSettingsSaved": "Innstillinger lagret.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "Min Profil", - "ButtonMyPreferences": "Mine Preferanser", - "MessageBrowserDoesNotSupportWebSockets": "Denne nettleseren st\u00f8tter ikke web sockets. For en bedre brukeropplevelse pr\u00f8v en nyere nettleser som for eksemepel Chrome, Firefox, IE10+, Safari (IOS) eller Opera.", - "LabelInstallingPackage": "Installerer {0}", - "LabelPackageInstallCompleted": "{0} installering fullf\u00f8rt.", - "LabelPackageInstallFailed": "{0} installasjon feilet.", - "LabelPackageInstallCancelled": "{0} installasjon avbrutt.", - "TabServer": "Server", - "TabUsers": "Brukere", - "TabLibrary": "Bibliotek", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-organiser", - "TabPlugins": "Programtillegg", - "TabAdvanced": "Avansert", - "TabHelp": "Hjelp", - "TabScheduledTasks": "Planlagte Oppgaver", - "ButtonFullscreen": "Fullskjerm", - "ButtonAudioTracks": "Lydspor", - "ButtonSubtitles": "Undertekster", - "ButtonScenes": "Scener", - "ButtonQuality": "Kvalitet", - "HeaderNotifications": "Melding", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Velg", - "ButtonNew": "Ny", - "MessageInternetExplorerWebm": "For det beste resultatet med Internet Explorer anbefales det at du installerer WebM programtillegg for videoavspilling.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Legg til spilleliste", - "HeaderAddToPlaylist": "Legg til Spilleliste", - "LabelName": "Navn", - "ButtonSubmit": "Send", - "LabelSelectPlaylist": "Spilleliste", - "OptionNewPlaylist": "Ny spilleliste...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Se", - "ButtonViewSeriesRecording": "Se serie opptak", - "ValueOriginalAirDate": "Original lanseringsdato: {0}", - "ButtonRemoveFromPlaylist": "Fjern fra spilleliste", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailere", - "HeaderAudio": "Lyd", - "HeaderResolution": "Oppl\u00f8sning", - "HeaderVideo": "Video", - "HeaderRuntime": "Spilletid", - "HeaderCommunityRating": "Fellesskap anmeldelse", - "HeaderPasswordReset": "Resett passord", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Utgivelsesdato", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Sesong", - "HeaderSeasonNumber": "Sesong nummer", - "HeaderNetwork": "Nettverk", - "HeaderYear": "Year", - "HeaderGameSystem": "Spill system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "innebygd bilde", - "HeaderTrack": "Spor", - "HeaderDisc": "Disk", - "OptionMovies": "Filmer", - "OptionCollections": "Samlinger", - "OptionSeries": "Serier", - "OptionSeasons": "Sesonger", - "OptionEpisodes": "Episoder", - "OptionGames": "Spill", - "OptionGameSystems": "Spill systemer", - "OptionMusicArtists": "Musikk artist", - "OptionMusicAlbums": "Musikk album", - "OptionMusicVideos": "Musikk videoer", - "OptionSongs": "Sanger", - "OptionHomeVideos": "Hjemme videoer", - "OptionBooks": "B\u00f8ker", - "OptionAdultVideos": "Voksen videoer", - "ButtonUp": "Opp", - "ButtonDown": "Ned", - "LabelMetadataReaders": "Metadata Behandler:", - "LabelMetadataReadersHelp": "Ranger dine prefererte lokale metadata kilder i prioritert rekkef\u00f8lge. F\u00f8rste fil funnet vil bli lest.", - "LabelMetadataDownloaders": "Metadata nedlastere:", - "LabelMetadataDownloadersHelp": "Aktiver og ranger din foretrukne kapittel nedlasting i f\u00f8lgende prioritet. Lavere prioritet nedlastinger vil kun bli brukt for \u00e5 fylle inn manglende informasjon", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Velg filformatene dine metadata skal lagres til.", - "LabelImageFetchers": "Bildekilder:", - "LabelImageFetchersHelp": "Aktiver og ranger dine foretrukne bildekilder i prioritert rekkef\u00f8lge.", - "ButtonQueueAllFromHere": "K\u00f8 alt herfra", - "ButtonPlayAllFromHere": "Spill alt herfra", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identifiser Element", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Tittel visnings rekkef\u00f8lge:", - "OptionSortName": "Sorterings navn", - "OptionReleaseDate": "Utgivelsesdato", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disk nummer", - "LabelParentNumber": "Forelder-ID", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Spor nummer:", - "LabelNumber": "Nummer:", - "LabelReleaseDate": "Utgivelsesdato:", - "LabelEndDate": "Slutt dato:", - "LabelYear": "\u00c5r:", - "LabelDateOfBirth": "F\u00f8dseldato:", - "LabelBirthYear": "F\u00f8dsels\u00e5r:", - "LabelBirthDate": "F\u00f8dselsdato:", - "LabelDeathDate": "D\u00f8dsdato:", - "HeaderRemoveMediaLocation": "Fjern Mediamappe", - "MessageConfirmRemoveMediaLocation": "Er du sikker p\u00e5 at du vil slette dette stedet??", - "HeaderRenameMediaFolder": "Endre navn p\u00e5 Mediamappe", - "LabelNewName": "Nytt navn:", - "HeaderAddMediaFolder": "Legg til mediamappe", - "HeaderAddMediaFolderHelp": "Navn (Filmer, Musikk, TV, etc):", - "HeaderRemoveMediaFolder": "Fjern Mediamappe", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "F\u00f8lgende mapper med media vil bli fjernet fra ditt bibliotek:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Er du sikker p\u00e5 at dul vil slette denne media-mappen?", - "ButtonRename": "Gi nytt navn", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Steder", - "LabelContentTypeValue": "Innholdstype {0}", - "LabelPathSubstitutionHelp": "Valgfritt: Sti erstatter kan koble server stier til nettverkressurser som klienter har tilgang til for direkte avspilling.", - "FolderTypeUnset": "Ikke bestemt (variert innhold)", - "FolderTypeMovies": "Filmer", - "FolderTypeMusic": "Musikk", - "FolderTypeAdultVideos": "Voksen-videoer", - "FolderTypePhotos": "Foto", - "FolderTypeMusicVideos": "Musikk-videoer", - "FolderTypeHomeVideos": "Hjemme-videoer", - "FolderTypeGames": "Spill", - "FolderTypeBooks": "B\u00f8ker", - "FolderTypeTvShows": "TV", - "TabMovies": "Filmer", - "TabSeries": "Serier", - "TabEpisodes": "Episoder", - "TabTrailers": "Trailere", - "TabGames": "Spill", - "TabAlbums": "Album", - "TabSongs": "Sanger", - "TabMusicVideos": "Musikk-videoer", - "BirthPlaceValue": "F\u00f8dested: {0}", - "DeathDateValue": "D\u00f8de: {0}", - "BirthDateValue": "F\u00f8dt: {0}", - "HeaderLatestReviews": "Siste anmeldelser", - "HeaderPluginInstallation": "Programtillegg installasjon", - "MessageAlreadyInstalled": "Denne versjonen er allerede installert.", - "ValueReviewCount": "{0} Anmeldelser", - "MessageYouHaveVersionInstalled": "Du har for \u00f8yeblikket versjon {0} installert", - "MessageTrialExpired": "Pr\u00f8veperioden for denne funksjonen er utl\u00f8pt", - "MessageTrialWillExpireIn": "Pr\u00f8veperioden for denne funksjonen utl\u00f8per om {0} dag (er)", - "MessageInstallPluginFromApp": "Dette programtillegget m\u00e5 installeres direkte i appen du har tenkt \u00e5 bruke den i.", - "ValuePriceUSD": "Pris: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "Etter \u00e5 ha fullf\u00f8rt denne transaksjonen vil du m\u00e5tte avbestille din forrige gjentagende donasjon fra din PayPal-konto. Takk for at du st\u00f8tter Emby.", - "ButtonDelete": "Slett", - "HeaderEmbyAccountAdded": "Emby konto lagt til", - "MessageEmbyAccountAdded": "Emby-konto er blitt lagt til denne brukeren.", - "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.", - "HeaderEmbyAccountRemoved": "Embykonto er fjernet", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Knyttet til Emby Connect.", - "HeaderUnrated": "Uvurdert", - "ValueDiscNumber": "Disk {0}", - "HeaderUnknownDate": "Ukjent dato", - "HeaderUnknownYear": "Ukjent \u00e5r", - "ValueMinutes": "{0} minutter", - "ButtonPlayExternalPlayer": "Spill i ekstern avspiller", - "HeaderSelectExternalPlayer": "Velg ekstern avspiller", - "HeaderExternalPlayerPlayback": "Ekstern avspilling", - "ButtonImDone": "Jeg er ferdig", - "OptionWatched": "Sett", - "OptionUnwatched": "Usett", - "ExternalPlayerPlaystateOptionsHelp": "Spesifiser hvordan du vil fortsette avspillingen av denne videoen neste gang.", - "LabelMarkAs": "Merk som:", - "OptionInProgress": "Igang", - "LabelResumePoint": "Fortsettelsespunkt", - "ValueOneMovie": "1 film", - "ValueMovieCount": "{0} filmer", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailere", - "ValueOneSeries": "1 serie", - "ValueSeriesCount": "{0} serier", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episoder", - "ValueOneGame": "1 spill", - "ValueGameCount": "{0} spill", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} album", - "ValueOneSong": "1 sang", - "ValueSongCount": "{0} sanger", - "ValueOneMusicVideo": "1 musikkvideo", - "ValueMusicVideoCount": "{0} musikkvideoer", - "HeaderOffline": "Offline", - "HeaderUnaired": "Ikke sendt", - "HeaderMissing": "Mangler", - "ButtonWebsite": "Nettsted", - "TooltipFavorite": "Favoritt", - "TooltipLike": "Liker", - "TooltipDislike": "Misliker", - "TooltipPlayed": "Sett", - "ValueSeriesYearToPresent": "{0}-N\u00e5", - "ValueAwards": "Priser: {0}", - "ValueBudget": "Budsjett: {0}", - "ValueRevenue": "Inntjening: {0}", - "ValuePremiered": "Premiere {0}", - "ValuePremieres": "Premiere {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studioer: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Spesiell - {0}", - "LabelLimit": "Grense:", - "ValueLinks": "Lenker: {0}", - "HeaderPeople": "Personer", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artister: {0}", - "HeaderTags": "Tagger", - "MediaInfoCameraMake": "Kameramerke", - "MediaInfoCameraModel": "Kameramodell", - "MediaInfoAltitude": "H\u00f8yde", - "MediaInfoAperture": "Blender\u00e5pning", - "MediaInfoExposureTime": "Eksponeringstid", - "MediaInfoFocalLength": "Brennvidde", - "MediaInfoOrientation": "Orientering", - "MediaInfoIsoSpeedRating": "ISO innstilling", - "MediaInfoLatitude": "Breddegrad", - "MediaInfoLongitude": "Lengdegrad", - "MediaInfoShutterSpeed": "Lukkerhastighet", - "MediaInfoSoftware": "Programvare", - "HeaderIfYouLikeCheckTheseOut": "Hvis du liker {0}, sjekk ut disse...", - "HeaderPlotKeywords": "Plott n\u00f8kkelord", - "HeaderMovies": "Filmer", - "HeaderAlbums": "Albumer", - "HeaderGames": "Spill", - "HeaderBooks": "B\u00f8ker", - "HeaderEpisodes": "Episoder", - "HeaderSeasons": "Sesonger", - "HeaderTracks": "Spor", - "HeaderItems": "Elementer", - "HeaderOtherItems": "Andre elementer", - "ButtonFullReview": "Full anmeldelse", - "ValueAsRole": "som {0}", - "ValueGuestStar": "Gjesteartist", - "MediaInfoSize": "St\u00f8rrelse", - "MediaInfoPath": "Sti", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Kontainer", - "MediaInfoDefault": "Standard", - "MediaInfoForced": "Tvunget", - "MediaInfoExternal": "Ekstern", - "MediaInfoTimestamp": "Tidstempel", - "MediaInfoPixelFormat": "Pikselformat", - "MediaInfoBitDepth": "Bitdybde", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Kanaler", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Spr\u00e5k", - "MediaInfoCodec": "Kodek", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profil", - "MediaInfoLevel": "Niv\u00e5", - "MediaInfoAspectRatio": "Sideforhold", - "MediaInfoResolution": "Oppl\u00f8sning", - "MediaInfoAnamorphic": "Anamorfisk", - "MediaInfoInterlaced": "Linjeflettet", - "MediaInfoFramerate": "Bildefrekvens", - "MediaInfoStreamTypeAudio": "Lyd", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Undertekst", - "MediaInfoStreamTypeEmbeddedImage": "Innebygd bilde", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Spill av", - "TabNotifications": "Varslinger", - "TabExpert": "Ekspert", - "HeaderSelectCustomIntrosPath": "Velg tilpasset intro sti", - "HeaderRateAndReview": "Ranger og anmeld", - "HeaderThankYou": "Takk", - "MessageThankYouForYourReview": "Takk for din anmeldelse.", - "LabelYourRating": "Din vurdering:", - "LabelFullReview": "Full anmeldelse:", - "LabelShortRatingDescription": "Kort sammendrag av vurdering:", - "OptionIRecommendThisItem": "Jeg anbefaler dette elementet", - "WebClientTourContent": "Vis dine nylig tilf\u00f8yde medier, neste episodene og mer. De gr\u00f8nne sirklene viser hvor mange uspilte elementer du har.", - "WebClientTourMovies": "Spill av filmer, trailere og mer fra hvilken som helst enhet med en nettleser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Trykk og hold eller h\u00f8yreklikk hvilken som helst plakat for en hurtigmeny", - "WebClientTourMetadataManager": "Klikk rediger for \u00e5 \u00e5pne metadata behandleren", - "WebClientTourPlaylists": "Du kan enkelt lage spillelister og direktemikser, og spille dem p\u00e5 hvilken som helst enhet", - "WebClientTourCollections": "Lag dine egne samlebokser", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Utform startsiden slik du \u00f8nsker den.", - "WebClientTourUserPreferences4": "Konfigurer bakgrunner, temasanger og eksterne avspillere", - "WebClientTourMobile1": "Webklienten fungerer bra p\u00e5 smarttelefoner og nettbrett ...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Synkronis\u00e9r dine personlige mediefiler til dine enheter for offline bruk.", - "MessageEnjoyYourStay": "Nyt oppholdet", - "DashboardTourDashboard": "Server dashboard lar deg overv\u00e5ke serveren og brukerene. Du kan til enhver tid se hvem som gj\u00f8r hva, og hvor de er.", - "DashboardTourHelp": "Applikasjonens hjelpesystem har knapper som gir enkel tilgang til relevant dokumentasjon fra wikien.", - "DashboardTourUsers": "Opprett bruker kontoer enkelt for dine venner og familie, hver med deres egne rettigheter, bibliotek tillgang, foreldre kontroll og mere til.", - "DashboardTourCinemaMode": "Kino-modus bringer kinoopplevelsen direkte til din stue med muligheten til \u00e5 spille trailere og tilpassede introer f\u00f8r filmen begynner.", - "DashboardTourChapters": "Aktiver generering av kapittel bilder for dine videoer for en mer behagelig presentasjon mens du ser p\u00e5.", - "DashboardTourSubtitles": "Last ned undertekster automatisk for dine videoer p\u00e5 alle spr\u00e5k.", - "DashboardTourPlugins": "Installer programtillegg som internett video kanaler, direkte tv, metadata eskanners, og mere til.", - "DashboardTourNotifications": "Send meldinger automatisk for server handlinger til dine mobile enheter, epost, etc.", - "DashboardTourScheduledTasks": "Administrer enkelt operasjoner som kan ta lang tid med oppgaveplanlegging. Bestem n\u00e5r de kj\u00f8rer og hvor ofte.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Synkroniser personlige mediafiler til din enhet for \u00e5 se p\u00e5 offline.", - "MessageRefreshQueued": "Oppfrisk k\u00f8en", - "TabDevices": "Enheter", - "TabExtras": "Ekstra", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Sist brukt av {0}", - "HeaderDeleteDevice": "Slett Enhet", - "DeleteDeviceConfirmation": "Er du sikker p\u00e5 at du vil slette denne enheten? Den vil gjenoppst\u00e5 neste gang en bruker logger inn med den.", - "LabelEnableCameraUploadFor": "Aktiver kameraopplasting for:", - "HeaderSelectUploadPath": "Velg Opplastings sti", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "Sluttid m\u00e5 v\u00e6re senere enn starttid.", - "ButtonLibraryAccess": "Bibliotektilgang", - "ButtonParentalControl": "Foreldrekontroll", - "HeaderInvitationSent": "Invitasjon Sendt", - "MessageInvitationSentToUser": "En epost har blitt sent til {0} med oppfordring til \u00e5 godta invitasjonen din.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Tilkobling feilet", - "MessageUnableToConnectToServer": "Vi kan ikke kontakte angitt server akkurat n\u00e5. Sjekk at den er startet og pr\u00f8v igjen.", - "ButtonSelectServer": "Velg server", - "MessagePluginConfigurationRequiresLocalAccess": "Logg inn p\u00e5 din lokale server direkte for \u00e5 konfigurere dette programtillegget.", - "MessageLoggedOutParentalControl": "Tilgangen er forel\u00f8pig begrenset. Vennligst pr\u00f8v igjen senere.", - "DefaultErrorMessage": "Det skjedde en feil under behandling av foresp\u00f8rselen. Vennligst pr\u00f8v igjen senere.", - "ButtonAccept": "Godta", - "ButtonReject": "Avvis", - "HeaderForgotPassword": "Glemt passord", - "MessageContactAdminToResetPassword": "Vennligst kontakte administrator for hjelp til \u00e5 resette passordet ditt.", - "MessageForgotPasswordInNetworkRequired": "Vennligst pr\u00f8v igjen fra hjemmenettet ditt for \u00e5 starte prosessen med \u00e5 gjenopprette passordet ditt.", - "MessageForgotPasswordFileCreated": "F\u00f8lgende fil er opprettet p\u00e5 serveren og inneholder instruksjoner om hvordan du kan fortsette:", - "MessageForgotPasswordFileExpiration": "PIN-koden for gjenoppretting er gyldig til {0}.", - "MessageInvalidForgotPasswordPin": "Ugyldig eller utg\u00e5tt PIN kode angitt. Vennligst pr\u00f8v igjen.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Inviter gjest", - "ButtonLinkMyEmbyAccount": "Link kontoen min n\u00e5", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Synk", - "SyncMedia": "Synkroniser media", - "HeaderCancelSyncJob": "Avbryt synkronisering", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Synk", - "MessagePleaseSelectDeviceToSyncTo": "Velg enhet \u00e5 synkronisere til.", - "MessageSyncJobCreated": "Synkroniseringsjobb p\u00e5begynt.", - "LabelSyncTo": "Synkroniser til:", - "LabelSyncJobName": "Navn p\u00e5 synkroniseringsjobb:", - "LabelQuality": "Kvalitet:", - "HeaderSettings": "Innstillinger", - "OptionAutomaticallySyncNewContent": "Automatisk synkroniser nytt innhold", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Synkroniser kun usette videoer", - "OptionSyncUnwatchedVideosOnlyHelp": "Kun usette videoer blir synkronisert, og videoer blir fjernet fra enheten s\u00e5 snart de er sett.", - "LabelItemLimit": "Begrenset antall:", - "LabelItemLimitHelp": "Valgfri. Sett en grense for hvor mange enheter som skal synkroniseres.", - "MessageBookPluginRequired": "Forutsetter at programtillegget bokhylle er installert", - "MessageGamePluginRequired": "Forutsetter at programtillegget GameBrowser er installert", - "MessageUnsetContentHelp": "Innhold vises som enkle mapper. For beste resultat, bruk metadata for \u00e5 sette innholdstype for mapper.", - "SyncJobItemStatusQueued": "I k\u00f8", - "SyncJobItemStatusConverting": "Konverterer", - "SyncJobItemStatusTransferring": "Overf\u00f8rer", - "SyncJobItemStatusSynced": "Synkronisert", - "SyncJobItemStatusFailed": "Feilet", - "SyncJobItemStatusRemovedFromDevice": "Fjernet fra enheten", - "SyncJobItemStatusCancelled": "Kansellert", - "LabelProfile": "Profil:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "For \u00e5 laste ned og installere Emby Server bes\u00f8k {0}.", - "ButtonNewServer": "Ny server", - "ButtonSignInWithConnect": "Logg inn med Emby Connect", - "HeaderNewServer": "Ny server", - "MyDevice": "Min(e) enhet(er)", - "ButtonRemote": "Fjernkont.", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scener", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Avansert", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Avansert Oppfrskning", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Synk.", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Plakat", - "OptionPosterCard": "Plakatkort", - "OptionTimeline": "Tidslinje", - "OptionList": "Liste", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb-kort", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Opptak", - "ButtonOther": "Other", - "HeaderSortBy": "Sorter etter:", - "HeaderSortOrder": "Sorter Etter:", - "OptionAscending": "\u00d8kende", - "OptionDescending": "Synkende", - "OptionNameSort": "Navn", - "OptionTvdbRating": "Tvdb Rangering", - "OptionPremiereDate": "Premieredato", - "OptionImdbRating": "IMDb Rangering", - "OptionDatePlayed": "Dato spilt", - "OptionDateAdded": "Dato lagt til", - "OptionPlayCount": "Antall avspillinger", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "L\u00e5tnavn", - "OptionCommunityRating": "Community Rangering", - "ButtonSort": "Sorter", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Standard", - "ButtonFilter": "Filter", - "OptionCriticRating": "Kritikervurdering", - "OptionVideoBitrate": "Video bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Inntjening", - "OptionBudget": "Budsjett", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "S\u00f8k", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Neste", - "HeaderLatestMovies": "Siste Filmer", - "HeaderLatestEpisodes": "Siste episoder", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Kino Modus", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/nl.json b/dashboard-ui/strings/javascript/nl.json deleted file mode 100644 index d292ebe095..0000000000 --- a/dashboard-ui/strings/javascript/nl.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Instellingen opgeslagen.", - "AddUser": "Gebruiker toevoegen", - "Users": "Gebruikers", - "Delete": "Verwijderen", - "Administrator": "Beheerder", - "Password": "Wachtwoord", - "DeleteImage": "Verwijder afbeelding", - "MessageThankYouForSupporting": "Bedankt voor uw steun aan Emby", - "MessagePleaseSupportProject": "Steun Emby a.u.b.", - "DeleteImageConfirmation": "Weet u zeker dat u deze afbeelding wilt verwijderen?", - "FileReadCancelled": "Bestand lezen is geannuleerd.", - "FileNotFound": "Bestand niet gevonden.", - "FileReadError": "Er is een fout opgetreden bij het lezen van het bestand.", - "DeleteUser": "Verwijder gebruiker", - "DeleteUserConfirmation": "Weet u zeker dat u deze gebruiker wilt verwijderen?", - "PasswordResetHeader": "Reset Wachtwoord", - "PasswordResetComplete": "Het wachtwoord is opnieuw ingesteld.", - "PinCodeResetComplete": "De pincode is gereset.", - "PasswordResetConfirmation": "Weet u zeker dat u het wachtwoord opnieuw in wilt stellen?", - "PinCodeResetConfirmation": "Weet u zeker dat u de pincode wilt resetten?", - "HeaderPinCodeReset": "Reset Pincode", - "PasswordSaved": "Wachtwoord opgeslagen.", - "PasswordMatchError": "Wachtwoord en wachtwoord bevestiging moeten hetzelfde zijn.", - "OptionRelease": "Offici\u00eble Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Instabiel)", - "UninstallPluginHeader": "Plug-in de\u00efnstalleren", - "UninstallPluginConfirmation": "Weet u zeker dat u {0} wilt de\u00efnstalleren?", - "NoPluginConfigurationMessage": "Deze Plug-in heeft niets in te stellen", - "NoPluginsInstalledMessage": "U heeft geen Plugin ge\u00efnstalleerd", - "BrowsePluginCatalogMessage": "Bekijk de Plugin catalogus voor beschikbare Plug-ins.", - "HeaderNewApiKey": "Nieuwe Api sleutel", - "LabelAppName": "Applicatie Naam", - "LabelAppNameExample": "Voorbeeld: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Geef een applicatie toestemming om te communiceren met Emby Server.", - "MessageKeyEmailedTo": "Sleutel gemaild naar {0}.", - "MessageKeysLinked": "Sleutels gekoppeld.", - "HeaderConfirmation": "Bevestiging", - "MessageKeyUpdated": "Dank u wel. Uw Emby Premiere sleutel is bijgewerkt.", - "MessageKeyRemoved": "Dank u wel. Uw Emby Premiere sleutel is verwijderd.", - "HeaderSupportTheTeam": "Ondersteun het Emby Team", - "TextEnjoyBonusFeatures": "Profiteer van extra mogelijkheden", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Annuleer sync", - "HeaderAddTag": "Voeg tag toe", - "LabelTag": "Tag:", - "ButtonSelectView": "Selecteer weergave", - "TitleSync": "Synchroniseer", - "OptionAutomatic": "Automatisch", - "HeaderSelectDate": "Selecteer Datum", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identificeer", - "HeaderIdentifyItem": "Identificeer item", - "LabelRecurringDonationCanBeCancelledHelp": "Terugkerende donaties kunnen op elk moment stop gezet worden in uw PayPal account.", - "LabelFromHelp": "Voorbeeld: {0} (op de server)", - "HeaderMyMedia": "Mijn media", - "ButtonRemoveFromCollection": "Verwijder uit collectie", - "LabelAutomaticUpdateLevel": "Niveau automatische update:", - "LabelAutomaticUpdateLevelForPlugins": "Niveau automatische update voor plugins:", - "TitleNotifications": "Meldingen", - "ErrorLaunchingChromecast": "Er is een fout opgetreden bij het starten van chromecast. Zorg ervoor dat uw apparaat is aangesloten op uw draadloze netwerk.", - "MessageErrorLoadingSupporterInfo": "Er is een fout bij het laden van Emby Premiere informatie opgetreden. Probeer het later opnieuw.", - "MessageLinkYourSupporterKey": "Koppel uw Emby Premiere sleutel aan max. {0} Emby Connect-leden om te genieten van gratis toegang tot de volgende apps:", - "HeaderConfirmRemoveUser": "Gebruiker verwijderen", - "MessageConfirmRemoveConnectSupporter": "Weet u zeker dat u de extra Emby Premiere voordelen van deze gebruiker wilt verwijderen?", - "ValueTimeLimitSingleHour": "Tijdslimiet: 1 uur", - "ValueTimeLimitMultiHour": "Tijdslimiet: {0} uren", - "HeaderUsers": "Gebruikers", - "PluginCategoryGeneral": "Algemeen", - "PluginCategoryContentProvider": "Inhouds Providers", - "PluginCategoryScreenSaver": "Scherm beveiligers", - "PluginCategoryTheme": "Thema's", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Sociale Netwerken", - "PluginCategoryNotifications": "Meldingen", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Kanalen", - "HeaderSearch": "Zoeken", - "ValueDateCreated": "Datum aangemaakt: {0}", - "LabelArtist": "Artiest", - "LabelMovie": "Film", - "LabelMusicVideo": "Muziek Video", - "LabelEpisode": "Aflevering", - "LabelSeries": "Series", - "LabelStopping": "Stoppen", - "LabelCancelled": "(Geannuleerd)", - "LabelFailed": "(Mislukt)", - "ButtonHelp": "Hulp", - "ButtonSave": "Opslaan", - "ButtonDownload": "Downloaden", - "SyncJobStatusQueued": "In wachtrij", - "SyncJobStatusConverting": "Converteren", - "SyncJobStatusFailed": "Mislukt", - "SyncJobStatusCancelled": "Afgebroken", - "SyncJobStatusCompleted": "Gesynced", - "SyncJobStatusReadyToTransfer": "Klaar om te Verzenden", - "SyncJobStatusTransferring": "Verzenden", - "SyncJobStatusCompletedWithError": "Gesynchroniseerd met fouten", - "SyncJobItemStatusReadyToTransfer": "Klaar om te Verzenden", - "LabelCollection": "Collectie", - "HeaderAddToCollection": "Toevoegen aan Collectie", - "HeaderNewCollection": "Nieuwe Collectie", - "NewCollectionNameExample": "Voorbeeld: Star Wars Collectie", - "OptionSearchForInternetMetadata": "Zoeken op het internet voor afbeeldingen en metadata", - "LabelSelectCollection": "Selecteer collectie:", - "HeaderDevices": "Apparaten", - "ButtonScheduledTasks": "Geplande taken", - "MessageItemsAdded": "Items toegevoegd", - "ButtonAddToCollection": "Toevoegen aan Collectie", - "HeaderSelectCertificatePath": "Selecteer Certificaat Pad", - "ConfirmMessageScheduledTaskButton": "Deze operatie loopt normaal gesproken automatisch als een geplande taak en behoeft geen handmatige inspanning. Om de geplande taak te configureren, zie:", - "HeaderSupporterBenefit": "Een actief Emby Premiere abonnement geeft extra voordelen zoals toegang tot synchronisatie, Premium plugins, Internet kanalen en meer. {0} meer info{1}.", - "LabelSyncNoTargetsHelp": "Het lijkt erop dat u momenteel geen apps heeft die synchroniseren ondersteunen.", - "HeaderWelcomeToProjectServerDashboard": "Welkom bij het Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welkom bij Emby", - "ButtonTakeTheTour": "Volg de tour", - "HeaderWelcomeBack": "Welkom terug!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Volg de tour om te zien wat nieuw is", - "MessageNoSyncJobsFound": "Geen sync opdrachten gevonden. Maak sync opdrachten via de Synchronisatie knoppen in de web interface.", - "HeaderLibraryAccess": "Bibliotheek toegang", - "HeaderChannelAccess": "Kanaal toegang", - "HeaderDeviceAccess": "Apparaat Toegang", - "HeaderSelectDevices": "Selecteer Apparaten", - "ButtonCancelItem": "Annuleren item", - "ButtonQueueForRetry": "Wachtrij voor opnieuw proberen", - "ButtonReenable": "Opnieuw inschakelen", - "ButtonLearnMore": "Meer informatie", - "SyncJobItemStatusSyncedMarkForRemoval": "Gemarkeerd voor verwijdering", - "LabelAbortedByServerShutdown": "(Afgebroken door afsluiten van de server)", - "LabelScheduledTaskLastRan": "Laatste keer {0}, duur {1}.", - "HeaderDeleteTaskTrigger": "Verwijderen Taak Trigger", - "MessageDeleteTaskTrigger": "Weet u zeker dat u deze taak trigger wilt verwijderen?", - "MessageNoPluginsInstalled": "U heeft geen Plugins ge\u00efnstalleerd.", - "MessageNoPluginsDueToAppStore": "Om plugins te beheren, gebruik dan de Emby web app.", - "LabelVersionInstalled": "{0} ge\u00efnstalleerd", - "LabelNumberReviews": "{0} Recensies", - "LabelFree": "Gratis", - "HeaderTo": "Naar", - "HeaderPlaybackError": "Afspeel Fout", - "MessagePlaybackErrorNotAllowed": "U bent niet bevoegd om deze content af te spelen. Neem contact op met uw systeembeheerder voor meer informatie.", - "MessagePlaybackErrorNoCompatibleStream": "Geen compatibele streams beschikbaar. Probeer het later opnieuw of neem contact op met de serverbeheerder.", - "MessagePlaybackErrorRateLimitExceeded": "Uw afspeel rate limiet is overschreden. Neem contact op met de beheerder van de server voor details.", - "MessagePlaybackErrorPlaceHolder": "De gekozen content is niet af te spelen vanaf dit apparaat.", - "HeaderSelectAudio": "Selecteer geluid", - "HeaderSelectSubtitles": "Selecteer ondertiteling", - "ButtonMarkForRemoval": "Van apparaat verwijderen", - "ButtonUnmarkForRemoval": "Afbreken verwijderen van apparaat", - "LabelDefaultStream": "(Standaard)", - "LabelForcedStream": "(Geforceerd)", - "LabelDefaultForcedStream": "(Standaard \/ Georceerd)", - "LabelUnknownLanguage": "Onbekende taal", - "MessageConfirmSyncJobItemCancellation": "Bent u zeker dat u dit item wilt annuleren?", - "ButtonMute": "Dempen", - "ButtonUnmute": "Dempen opheffen", - "ButtonStop": "Stop", - "ButtonNextTrack": "Volgend nummer", - "ButtonPause": "Pauze", - "ButtonPlay": "Afspelen", - "ButtonEdit": "Bewerken", - "ButtonQueue": "Wachtrij", - "ButtonPlayTrailer": "Trailer afspelen", - "ButtonPlaylist": "Afspeellijst", - "ButtonPreviousTrack": "Vorig nummer", - "LabelEnabled": "Ingeschakeld", - "LabelDisabled": "Uitgeschakeld", - "ButtonMoreInformation": "Meer informatie", - "LabelNoUnreadNotifications": "Geen ongelezen meldingen.", - "ButtonViewNotifications": "Bekijk meldingen", - "ButtonMarkTheseRead": "Markeer deze gelezen", - "ButtonClose": "Sluiten", - "LabelAllPlaysSentToPlayer": "Alles zal worden verzonden naar de geselecteerde speler.", - "MessageInvalidUser": "Foutieve gebruikersnaam of wachtwoord. Probeer opnieuw.", - "HeaderLoginFailure": "Aanmeld fout", - "HeaderAllRecordings": "Alle Opnames", - "RecommendationBecauseYouLike": "Omdat u {0} leuk vond.", - "RecommendationBecauseYouWatched": "Omdat u keek naar {0}", - "RecommendationDirectedBy": "Geregisseerd door {0}", - "RecommendationStarring": "In de hoofdrollen {0}", - "HeaderConfirmRecordingCancellation": "Bevestigen Annulering Opname", - "MessageConfirmRecordingCancellation": "Weet u zeker dat u deze opname wilt annuleren?", - "MessageRecordingCancelled": "Opname geannuleerd.", - "MessageRecordingScheduled": "Opname schema", - "HeaderConfirmSeriesCancellation": "Bevestigen Series Annulering", - "MessageConfirmSeriesCancellation": "Weet u zeker dat u deze serie wilt annuleren?", - "MessageSeriesCancelled": "Serie geannuleerd.", - "HeaderConfirmRecordingDeletion": "Bevestigen Verwijdering Opname", - "MessageConfirmRecordingDeletion": "Weet u zeker dat u deze opname wilt verwijderen?", - "MessageRecordingDeleted": "Opname gewist.", - "ButonCancelRecording": "Annuleren Opname", - "MessageRecordingSaved": "Opname opgeslagen.", - "OptionSunday": "Zondag", - "OptionMonday": "Maandag", - "OptionTuesday": "Dinsdag", - "OptionWednesday": "Woensdag", - "OptionThursday": "Donderdag", - "OptionFriday": "Vrijdag", - "OptionSaturday": "Zaterdag", - "OptionEveryday": "Elke dag", - "OptionWeekend": "Weekenden", - "OptionWeekday": "Weekdagen", - "HeaderConfirmDeletion": "Bevestigen Verwijdering", - "MessageConfirmPathSubstitutionDeletion": "Weet u zeker dat u dit pad vervanging wilt verwijderen?", - "LiveTvUpdateAvailable": "(Update beschikbaar)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Weet u zeker dat u deze tuner wilt resetten? Alle actieve spelers of opnamen zullen direct worden gestaakt.", - "ButtonCancelSeries": "Annuleren Series", - "HeaderSeriesRecordings": "Serie Opnames", - "LabelAnytime": "Elke keer", - "StatusRecording": "Opname", - "StatusWatching": "Kijken", - "StatusRecordingProgram": "Opnemen {0}", - "StatusWatchingProgram": "Kijken naar {0}", - "HeaderSplitMedia": "Splits Media Apart", - "MessageConfirmSplitMedia": "Weet u zeker dat u de media bronnen wilt splitsen in afzonderlijke items?", - "HeaderError": "Fout", - "MessageChromecastConnectionError": "Uw Chromecast ontvanger kan niet met uw Emby Server verbinden. Controleer de verbindingen en probeer het opnieuw.", - "MessagePleaseSelectOneItem": "Selecteer ten minste een item.", - "MessagePleaseSelectTwoItems": "Selecteer ten minste twee items.", - "MessageTheSelectedItemsWillBeGrouped": "De geselecteerde videos worden in 1 item gegroepeerd. Emby apps zullen automatisch de juiste versie selecteren op basis van het apparaat en netwerk prestaties. Weet u zeker dat u door wilt gaan?", - "HeaderResume": "Hervatten", - "HeaderMyViews": "Mijn Overzichten", - "HeaderLibraryFolders": "Media Mappen", - "HeaderLatestMedia": "Nieuw in bibliotheek", - "ButtonMoreItems": "Meer...", - "ButtonMore": "Meer", - "HeaderFavoriteMovies": "Favoriete Films", - "HeaderFavoriteShows": "Favoriete Shows", - "HeaderFavoriteEpisodes": "Favoriete Afleveringen", - "HeaderFavoriteGames": "Favoriete Games", - "HeaderRatingsDownloads": "Waardering \/ Downloads", - "HeaderConfirmProfileDeletion": "Bevestigen Profiel Verwijdering", - "MessageConfirmProfileDeletion": "Weet u zeker dat u dit profiel wilt verwijderen?", - "HeaderSelectServerCachePath": "Selecteer Server Cache Pad", - "HeaderSelectTranscodingPath": "Selecteer Tijdelijke Transcodeer Pad", - "HeaderSelectImagesByNamePath": "Selecteer Afbeeldingen op naam Pad", - "HeaderSelectMetadataPath": "Selecteer Metadata Pad", - "HeaderSelectServerCachePathHelp": "Bladeren of voer het pad in om te gebruiken voor server cache-bestanden. De map moet beschrijfbaar zijn.", - "HeaderSelectTranscodingPathHelp": "Bladeren of voer het pad in om te gebruiken voor het transcoderen van tijdelijke bestanden. De map moet beschrijfbaar zijn.", - "HeaderSelectImagesByNamePathHelp": "Bladeren of voer het pad in naar uw Afbeeldingen op naam Map. De map moet beschrijfbaar zijn.", - "HeaderSelectMetadataPathHelp": "Blader of voer het pad in dat u wilt gebruiken om metadata in op te slaan. De map moet beschrijfbaar zijn.", - "HeaderSelectChannelDownloadPath": "Selecteer Kanaal Download Pad", - "HeaderSelectChannelDownloadPathHelp": "Bladeren of voer het pad in om te gebruiken voor het opslaan van kanaal cache-bestanden. De map moet beschrijfbaar zijn.", - "OptionNewCollection": "Nieuw ...", - "ButtonAdd": "Toevoegen", - "ButtonRemove": "Verwijderen", - "LabelChapterDownloaders": "Hoofdstuk downloaders:", - "LabelChapterDownloadersHelp": "Schakel rangschikking van uw favoriete hoofdstuk downloaders in, in volgorde van prioriteit. Lagere prioriteit downloaders zullen enkel gebruikt worden om de ontbrekende gegevens in te vullen.", - "HeaderFavoriteAlbums": "Favoriete Albums", - "HeaderLatestChannelMedia": "Nieuwste Kanaal Items", - "ButtonOrganizeFile": "Bestand Organiseren", - "ButtonDeleteFile": "Bestand verwijderen", - "HeaderOrganizeFile": "Bestand Organiseren", - "HeaderDeleteFile": "Bestand verwijderen", - "StatusSkipped": "Overgeslagen", - "StatusFailed": "Mislukt", - "StatusSuccess": "Succes", - "MessageFileWillBeDeleted": "Het volgende bestand wordt verwijderd:", - "MessageSureYouWishToProceed": "Weet u zeker dat u wilt doorgaan?", - "MessageDuplicatesWillBeDeleted": "Daarnaast zullen de volgende dupliaten worden geschrapt:", - "MessageFollowingFileWillBeMovedFrom": "Het volgende bestand wordt verplaatst van:", - "MessageDestinationTo": "naar:", - "HeaderSelectWatchFolder": "Selecteer Bewaakte Map", - "HeaderSelectWatchFolderHelp": "Blader of voer het pad in naar uw bewaakte map. De map moet beschrijfbaar zijn.", - "OrganizePatternResult": "Resultaat: {0}", - "AutoOrganizeError": "Fout bij het organiseren van het bestand", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "Er was een fout bij het organiseren van he bestand. Fout code: {0}", - "HeaderRestart": "Herstart", - "HeaderShutdown": "Afsluiten", - "MessageConfirmRestart": "Weet u zeker dat u Emby Server wilt herstarten?", - "MessageConfirmShutdown": "Weet u zeker dat u Emby Server wilt afsluiten?", - "ButtonUpdateNow": "Nu bijwerken", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "Er is een nieuwe versie van {0} beschikbaar!", - "VersionXIsAvailableForDownload": "Versie {0} is nu beschikbaar voor download.", - "LabelVersionNumber": "Versie {0}", - "LabelPlayMethodTranscoding": "Transcoderen", - "LabelPlayMethodDirectStream": "Direct Streamen", - "LabelPlayMethodDirectPlay": "Direct Afspelen", - "LabelAudioCodec": "Geluid: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Lokale toegang: {0}", - "LabelRemoteAccessUrl": "Toegang op afstand: {0}", - "LabelRunningOnPort": "Draait op http poort {0}.", - "LabelRunningOnPorts": "Draait op http poort {0} en https poort {1}.", - "HeaderLatestFromChannel": "Laatste van {0}", - "LabelUnknownLanaguage": "Onbekende taal", - "HeaderCurrentSubtitles": "Huidige ondertiteling", - "MessageDownloadQueued": "De download is in de wachtrij geplaatst.", - "MessageAreYouSureDeleteSubtitles": "Weet u zeker dat u dit ondertitelbestand wilt verwijderen?", - "ButtonRemoteControl": "Beheer op afstand", - "HeaderLatestTvRecordings": "Nieuwste opnames", - "ButtonOk": "Ok", - "ButtonCancel": "Annuleren", - "ButtonRefresh": "Vernieuwen", - "LabelCurrentPath": "Huidige pad:", - "HeaderSelectMediaPath": "Selecteer Media Pad", - "HeaderSelectPath": "Selecteer Pad", - "ButtonNetwork": "Netwerk", - "MessageDirectoryPickerInstruction": "Netwerk paden kunnen handmatig worden ingevoerd in het geval de Netwerk knop faalt om uw apparatuur te lokaliseren . Bijvoorbeeld: {0} of {1}.", - "MessageDirectoryPickerBSDInstruction": "Voor BSD kan het noodzakelijk zijn opslag op uw FreeNAS Jail te configureren voordat Emby het kan benaderen.", - "MessageDirectoryPickerLinuxInstruction": "Voor Linux moeten Emby systeem gebruikers minimaal lees toegang hebben tot de opslag locaties.", - "HeaderMenu": "Menu", - "ButtonOpen": "Openen", - "ButtonOpenInNewTab": "Openen in nieuw tabblad", - "ButtonShuffle": "Willekeurig", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Hervatten", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Geluidssporen", - "HeaderLibraries": "Bibliotheken", - "HeaderSubtitles": "Ondertiteling", - "HeaderVideoQuality": "Video Kwaliteit", - "MessageErrorPlayingVideo": "Er ging iets mis bij het afspelen van de video.", - "MessageEnsureOpenTuner": "Controleer of er een vrije tuner beschikbaar is.", - "ButtonHome": "Start", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Rapporten", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Tijd", - "HeaderName": "Naam", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artiest", - "HeaderArtist": "Artiest", - "LabelAddedOnDate": "Toegevoegd {0}", - "ButtonStart": "Start", - "HeaderChannels": "Kanalen", - "HeaderMediaFolders": "Media Mappen", - "HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder classificatiegegevens:", - "OptionBlockOthers": "Overigen", - "OptionBlockTvShows": "TV Series", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Muziek", - "OptionBlockMovies": "Films", - "OptionBlockBooks": "Boeken", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programma's", - "OptionBlockLiveTvChannels": "Live TV Kanalen", - "OptionBlockChannelContent": "Internet kanaal Inhoud", - "ButtonRevoke": "Herroepen", - "MessageConfirmRevokeApiKey": "Weet u zeker dat u deze api key in wilt trekken? De verbinding met Emby Server zal direct verbroken worden.", - "HeaderConfirmRevokeApiKey": "Intrekken Api Sleutel", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Geluidscodec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Voorwaarden: {0}", - "LabelAll": "Alles", - "HeaderDeleteImage": "Afbeelding verwijderen", - "MessageFileNotFound": "Bestand niet gevonden.", - "MessageFileReadError": "Er is een fout opgetreden bij het lezen van dit bestand.", - "ButtonNextPage": "Volgende pagina", - "ButtonPreviousPage": "Vorige Pagina", - "ButtonMoveLeft": "Verplaats naar links", - "ButtonMoveRight": "Verplaats naar rechts", - "ButtonBrowseOnlineImages": "Blader door online afbeeldingen", - "HeaderDeleteItem": "Item verwijderen", - "ConfirmDeleteItem": "Verwijderen van dit item zal het verwijderen uit zowel het bestandssysteem als de Media Bibliotheek. Weet u zeker dat u wilt doorgaan?", - "HeaderDeleteItems": "Verwijder items", - "ConfirmDeleteItems": "Het verwijderen van deze items verwijdert ze van het bestandssysteem en uit uw bibliotheek. Weet u zeker dat u verder wilt gaan?", - "MessagePleaseEnterNameOrId": "Voer een naam of een externe Id in", - "MessageValueNotCorrect": "De ingevoerde waarde is niet correct. Probeer het opnieuw.", - "MessageItemSaved": "Item opgeslagen.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Accepteer a.u.b. de voorwaarden voordat u doorgaat.", - "OptionEnded": "Gestopt", - "OptionContinuing": "Wordt vervolgd...", - "OptionOff": "Uit", - "OptionOn": "Aan", - "ButtonSettings": "Instellingen", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Schakel velden in", - "HeaderEnabledFieldsHelp": "Schakel een veld uit om dit te blokkeren van wijzigingen.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Lokale trailer ontbreekt.", - "MissingPrimaryImage": "Primaire afbeelding ontbreekt.", - "MissingBackdropImage": "Achtergrondafbeelding ontbreekt.", - "MissingLogoImage": "Logo ontbreekt.", - "MissingEpisode": "Ontbrekende aflevering.", - "OptionScreenshots": "Schermopnamen", - "OptionBackdrops": "Achtergronden", - "OptionImages": "Afbeeldingen", - "OptionKeywords": "Trefwoorden", - "OptionTags": "Tags", - "OptionStudios": "Studio's", - "OptionName": "Naam", - "OptionOverview": "Overzicht", - "OptionGenres": "Genres", - "OptionParentalRating": "Kijkwijzer classificatie", - "OptionPeople": "Personen", - "OptionRuntime": "Speelduur", - "OptionProductionLocations": "Productie Locaties", - "OptionBirthLocation": "Geboorte Locatie", - "LabelAllChannels": "Alle kanalen", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NIEUW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Verander Content Type", - "HeaderChangeFolderTypeHelp": "Als u het type wilt wijzigen, verwijder het dan en maak dan een nieuwe bibliotheek met het nieuwe type.", - "HeaderAlert": "Waarschuwing", - "MessagePleaseRestart": "Herstart om update te voltooien.", - "ButtonRestart": "Herstart", - "MessagePleaseRefreshPage": "Ververs a.u.b. deze pagina om nieuwe updates van Emby Server te ontvangen.", - "ButtonHide": "Verbergen", - "MessageSettingsSaved": "Instellingen opgeslagen.", - "ButtonSignOut": "Afmelden", - "ButtonMyProfile": "Mijn profiel", - "ButtonMyPreferences": "Mijn Voorkeuren", - "MessageBrowserDoesNotSupportWebSockets": "Deze browser ondersteunt geen web sockets. Voor een betere ervaring, probeer een nieuwere browser zoals Chrome, Firefox, IE10 +, Safari (iOS) of Opera.", - "LabelInstallingPackage": "Installeren van {0}", - "LabelPackageInstallCompleted": "{0} installatie voltooid.", - "LabelPackageInstallFailed": "{0} installatie is mislukt.", - "LabelPackageInstallCancelled": "{0} installatie geannuleerd.", - "TabServer": "Server", - "TabUsers": "Gebruikers", - "TabLibrary": "Bibliotheek", - "TabMetadata": "Metagegevens", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Autom. Organiseren", - "TabPlugins": "Plugins", - "TabAdvanced": "Geavanceerd", - "TabHelp": "Hulp", - "TabScheduledTasks": "Geplande taken", - "ButtonFullscreen": "Volledig scherm", - "ButtonAudioTracks": "Geluidssporen", - "ButtonSubtitles": "Ondertiteling", - "ButtonScenes": "Scenes", - "ButtonQuality": "Kwaliteit", - "HeaderNotifications": "Meldingen", - "HeaderSelectPlayer": "Selecteer Speler", - "ButtonSelect": "Selecteer", - "ButtonNew": "Nieuw", - "MessageInternetExplorerWebm": "Voor het beste resultaat met Internet Explorer installeert u de WebM plugin.", - "HeaderVideoError": "Video Fout", - "ButtonAddToPlaylist": "Toevoegen aan afspeellijst", - "HeaderAddToPlaylist": "Toevoegen aan Afspeellijst", - "LabelName": "Naam:", - "ButtonSubmit": "Uitvoeren", - "LabelSelectPlaylist": "Afspeellijst:", - "OptionNewPlaylist": "Nieuwe afspeellijst...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Weergave", - "ButtonViewSeriesRecording": "Bekijk serie opnamen", - "ValueOriginalAirDate": "Originele uitzenddatum: {0}", - "ButtonRemoveFromPlaylist": "Verwijderen uit afspeellijst", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Geluid", - "HeaderResolution": "Resolutie", - "HeaderVideo": "Video", - "HeaderRuntime": "Speelduur", - "HeaderCommunityRating": "Gemeenschap cijfer", - "HeaderPasswordReset": "Wachtwoord resetten", - "HeaderParentalRating": "Kijkwijzer classificatie", - "HeaderReleaseDate": "Uitgave datum", - "HeaderDateAdded": "Datum toegevoegd", - "HeaderSeries": "Series", - "HeaderSeason": "Seizoen", - "HeaderSeasonNumber": "Seizoen nummer", - "HeaderNetwork": "Zender", - "HeaderYear": "Jaar", - "HeaderGameSystem": "Game systeem", - "HeaderPlayers": "Spelers", - "HeaderEmbeddedImage": "Ingesloten afbeelding", - "HeaderTrack": "Track", - "HeaderDisc": "Schijf", - "OptionMovies": "Films", - "OptionCollections": "Collecties", - "OptionSeries": "Series", - "OptionSeasons": "Seizoenen", - "OptionEpisodes": "Afleveringen", - "OptionGames": "Games", - "OptionGameSystems": "Spel Systemen", - "OptionMusicArtists": "Muziek artiesten", - "OptionMusicAlbums": "Muziek albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Nummers ", - "OptionHomeVideos": "Home video's", - "OptionBooks": "Boeken", - "OptionAdultVideos": "Erotische video's", - "ButtonUp": "Omhoog", - "ButtonDown": "Omlaag", - "LabelMetadataReaders": "Metadata lezers:", - "LabelMetadataReadersHelp": "Rangschik de gewenste lokale metadata bronnen in volgorde van prioriteit. Het eerst gevonden bestand zal worden gelezen.", - "LabelMetadataDownloaders": "Metadata Downloaders:", - "LabelMetadataDownloadersHelp": "Rangschik uw voorkeurs metadata downloader in volgorde van prioriteit. Lagere prioriteit downloaders zullen alleen worden gebruikt om de ontbrekende informatie in te vullen.", - "LabelMetadataSavers": "Metadata Opslag:", - "LabelMetadataSaversHelp": "Kies de bestandsindeling om uw metadata op te slaan.", - "LabelImageFetchers": "Afbeeldingen Downloaders:", - "LabelImageFetchersHelp": "Rangschik uw voorkeurs afbeeldingen downloader in volgorde van prioriteit.", - "ButtonQueueAllFromHere": "Plaats in de wachtrij vanaf hier", - "ButtonPlayAllFromHere": "Speel allemaal vanaf hier", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identificeer item", - "PersonTypePerson": "Persoon", - "LabelTitleDisplayOrder": "Titel weergave volgorde:", - "OptionSortName": "Sorteerbaar", - "OptionReleaseDate": "Uitgave datum", - "LabelSeasonNumber": "Seizoennummer:", - "LabelDiscNumber": "Disc nummer", - "LabelParentNumber": "Bovenliggend nummer", - "LabelEpisodeNumber": "Afleveringsnummer:", - "LabelTrackNumber": "Tracknummer:", - "LabelNumber": "Nummer:", - "LabelReleaseDate": "Uitgave datum:", - "LabelEndDate": "Eind datum|", - "LabelYear": "Jaar:", - "LabelDateOfBirth": "Geboortedatum:", - "LabelBirthYear": "Geboorte jaar:", - "LabelBirthDate": "Geboortedatum:", - "LabelDeathDate": "Overlijdens datum:", - "HeaderRemoveMediaLocation": "Verwijder media locatie", - "MessageConfirmRemoveMediaLocation": "Weet u zeker dat u deze locatie wilt verwijderen?", - "HeaderRenameMediaFolder": "Hernoem media map", - "LabelNewName": "Nieuwe naam:", - "HeaderAddMediaFolder": "Voeg media map toe", - "HeaderAddMediaFolderHelp": "Naam (Films, Muziek, TV etc):", - "HeaderRemoveMediaFolder": "Verwijder media map", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "De volgende media locaties worden uit de bibliotheek verwijderd:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Weet u zeker dat u deze media map wilt verwijderen?", - "ButtonRename": "Hernoem", - "ButtonChangeContentType": "Verander content type", - "HeaderMediaLocations": "Media Locaties", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optioneel: Pad vervanging kan server paden naar netwerk locaties verwijzen zodat clients direct kunnen afspelen.", - "FolderTypeUnset": "Niet ingesteld (gemengde inhoud)", - "FolderTypeMovies": "Films", - "FolderTypeMusic": "Muziek", - "FolderTypeAdultVideos": "Adult video's", - "FolderTypePhotos": "Foto's", - "FolderTypeMusicVideos": "Muziek video's", - "FolderTypeHomeVideos": "Thuis video's", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Boeken", - "FolderTypeTvShows": "TV", - "TabMovies": "Films", - "TabSeries": "Serie", - "TabEpisodes": "Afleveringen", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Muziek Videos", - "BirthPlaceValue": "Geboorte plaats: {0})", - "DeathDateValue": "Overleden: {0}", - "BirthDateValue": "Geboren: {0}", - "HeaderLatestReviews": "Recente reviews", - "HeaderPluginInstallation": "Plugin installatie", - "MessageAlreadyInstalled": "Deze versie is al ge\u00efnstalleerd", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "Op dit moment is versie {0} ge\u00efnstalleerd.", - "MessageTrialExpired": "De proef periode voor deze feature is verlopen", - "MessageTrialWillExpireIn": "De proef periode voor deze feature zal in {0} dag(en) verlopen", - "MessageInstallPluginFromApp": "Deze plugin moet ge\u00efnstalleerd worden vanuit de app waarin u het wilt gebruiken.", - "ValuePriceUSD": "Prijs {0} (USD)", - "MessageFeatureIncludedWithSupporter": "U bent ingeschreven voor deze functie en kunt het blijven gebruiken zolang u een actief Emby Premiere abonnement heeft.", - "MessageChangeRecurringPlanConfirm": "Na het voltooien van deze transactie zult u de eerdere terugkerende donatie in uw PayPal account moeten annuleren. Bedankt voor de ondersteuning aan Emby.", - "ButtonDelete": "Verwijderen", - "HeaderEmbyAccountAdded": "Emby Account Toegevoegd", - "MessageEmbyAccountAdded": "Het Emby account is aan deze gebruiker toegevoegd.", - "MessagePendingEmbyAccountAdded": "Het Emby account is aan deze gebruiker toegevoegd.Er wordt een emailbericht naar de eigenaar van het account gestuurd. De uitnodigind moet bevestigd worden door op de link in het emailbericht te klikken.", - "HeaderEmbyAccountRemoved": "Emby Account Verwijderd", - "MessageEmbyAccontRemoved": "Het Emby account is verwijderd van deze gebruiker.", - "TooltipLinkedToEmbyConnect": "Gekoppeld aan Emby Connect", - "HeaderUnrated": "Geen rating", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Onbekende datum", - "HeaderUnknownYear": "Onbekend jaar", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Speel in externe speler", - "HeaderSelectExternalPlayer": "Selecteer externe speler", - "HeaderExternalPlayerPlayback": "Afspelen met externe speler", - "ButtonImDone": "Ik ben klaar", - "OptionWatched": "Gezien", - "OptionUnwatched": "Ongezien", - "ExternalPlayerPlaystateOptionsHelp": "Geef aan hoe u deze video de volgende keer wilt hervatten.", - "LabelMarkAs": "Markeer als:", - "OptionInProgress": "In uitvoering", - "LabelResumePoint": "Hervat punt:", - "ValueOneMovie": "1 film", - "ValueMovieCount": "{0} films", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 serie", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 aflevering", - "ValueEpisodeCount": "{0} afleveringen", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 nummer", - "ValueSongCount": "{0} nummers", - "ValueOneMusicVideo": "1 muziek video", - "ValueMusicVideoCount": "{0} muziek video's", - "HeaderOffline": "Offline", - "HeaderUnaired": "Niet uitgezonden", - "HeaderMissing": "Ontbreekt", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favoriet", - "TooltipLike": "Leuk", - "TooltipDislike": "Niet leuk", - "TooltipPlayed": "Afgespeeld", - "ValueSeriesYearToPresent": "{0}-Heden", - "ValueAwards": "Prijzen: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiere {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studio's: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Speciaal - {0}", - "LabelLimit": "Limiet:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "Personen", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artiest: {0}", - "ValueArtists": "Artiesten: {0}", - "HeaderTags": "Labels", - "MediaInfoCameraMake": "Camera merk", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Hoogte", - "MediaInfoAperture": "Diafragma", - "MediaInfoExposureTime": "Belichtingstijd", - "MediaInfoFocalLength": "Brandpuntsafstand", - "MediaInfoOrientation": "Ori\u00ebntatie", - "MediaInfoIsoSpeedRating": "ISO-waarde", - "MediaInfoLatitude": "Breedte graad", - "MediaInfoLongitude": "Lengte graad", - "MediaInfoShutterSpeed": "Sluitertijd", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "Als u {0} leuk vindt, probeer deze dan ook eens...", - "HeaderPlotKeywords": "Trefwoorden plot", - "HeaderMovies": "Films", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Boeken", - "HeaderEpisodes": "Afleveringen", - "HeaderSeasons": "Seizoenen", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Overige Items", - "ButtonFullReview": "Volledige review", - "ValueAsRole": "als {0}", - "ValueGuestStar": "Gast ster", - "MediaInfoSize": "Grootte", - "MediaInfoPath": "Pad", - "MediaInfoFile": "Bestande", - "MediaInfoFormat": "Formaat", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Standaard", - "MediaInfoForced": "Geforceerd", - "MediaInfoExternal": "Extern", - "MediaInfoTimestamp": "Tijdstempel", - "MediaInfoPixelFormat": "Pixel formaat", - "MediaInfoBitDepth": "Bitdiepte", - "MediaInfoSampleRate": "Samplesnelheid", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Kanalen", - "MediaInfoLayout": "Opmaak", - "MediaInfoLanguage": "Taal", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profiel", - "MediaInfoLevel": "Niveau", - "MediaInfoAspectRatio": "Beeld verhouding", - "MediaInfoResolution": "Resolutie", - "MediaInfoAnamorphic": "Anamorf", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Geluid", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Ondertiteling", - "MediaInfoStreamTypeEmbeddedImage": "Ingevoegde afbeelding", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Afspelen", - "TabNotifications": "Meldingen", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Selecteer eigen pad naar intro's", - "HeaderRateAndReview": "Beoordelen", - "HeaderThankYou": "Bedankt", - "MessageThankYouForYourReview": "Bedankt voor de beoordeling", - "LabelYourRating": "Uw beoordeling:", - "LabelFullReview": "Volledige beoordeling:", - "LabelShortRatingDescription": "Korte beoordeling overzicht:", - "OptionIRecommendThisItem": "Ik beveel dit item aan", - "WebClientTourContent": "Bekijk uw recent toegevoegde media, volgende afleveringen, en meer. De groene cirkels geven aan hoeveel afgespeelde items u heeft.", - "WebClientTourMovies": "Speel films, trailers en meer van elk apparaat met een webbrowser", - "WebClientTourMouseOver": "Houd de muis over een poster voor snelle toegang tot belangrijke informatie", - "WebClientTourTapHold": "Klik en houd vast of rechtsklik op een poster voor een context menu", - "WebClientTourMetadataManager": "Klik wijzigen om de metadata manager te openen", - "WebClientTourPlaylists": "Gemakkelijk afspeellijsten maken en instant mixen, en speel ze op elk apparaat", - "WebClientTourCollections": "Maak film collecties door boxsets te groeperen", - "WebClientTourUserPreferences1": "Met gebruikersvoorkeuren kunt u de manier aanpassen waarop uw bibliotheek in al uw Emby apps worden weergegeven.", - "WebClientTourUserPreferences2": "Configureer geluids- en ondertitelingstaal eenmalig, voor elke Emby app", - "WebClientTourUserPreferences3": "Ontwerp de startpagina van de web client volgens uw wensen", - "WebClientTourUserPreferences4": "Achtergronden, theme songs en externe spelers configureren", - "WebClientTourMobile1": "De webclient werkt geweldig op smartphones en tablets ...", - "WebClientTourMobile2": "en bedien eenvoudig uw andere apparaten en Emby apps", - "WebClientTourMySync": "Synchroniseer uw persoonlijke media naar uw apparaten om het offline te bekijken.", - "MessageEnjoyYourStay": "Geniet van uw verblijf", - "DashboardTourDashboard": "Het server-dashboard steld u in staat uw server en uw gebruikers te monitoren . U zult altijd weten wie wat doet en waar ze zijn.", - "DashboardTourHelp": "De in-app hulp bevat handige knoppen om wiki pagina's te openen die gaan over de informatie op het scherm.", - "DashboardTourUsers": "Maak gemakkelijk gebruikersaccounts voor uw vrienden en familie, elk met hun eigen machtigingen, bibliotheek toegang, ouderlijk toezicht en meer.", - "DashboardTourCinemaMode": "Cinema mode brengt de theater ervaring naar uw woonkamer met de mogelijkheid om trailers en eigen intro's voor de film af te spelen.", - "DashboardTourChapters": "Schakel hoofdstuk afbeeldingen genereren in voor uw video's voor een aantrekkelijker presentatie tijdens het kijken.", - "DashboardTourSubtitles": "Download automatisch ondertiteling voor uw video's in een andere taal.", - "DashboardTourPlugins": "Installeer plugins zoals Internet videokanalen, live tv, metadata, scanners en meer.", - "DashboardTourNotifications": "Meldingen van de server gebeurtenissen automatisch verzenden naar uw mobiele apparaat, e-mail en meer.", - "DashboardTourScheduledTasks": "Beheer eenvoudig langlopende transacties met geplande taken. Beslis zelf wanneer ze worden uitgevoerd en hoe vaak.", - "DashboardTourMobile": "Het Emby Server dashboard werkt goed op smartphones en tablets. Beheer uw server vanuit uw handpalm, altijd en overal.", - "DashboardTourSync": "Synchroniseer uw persoonlijke media naar uw apparaten om het offline te bekijken.", - "MessageRefreshQueued": "Vernieuwen wachtrij", - "TabDevices": "Apparaten", - "TabExtras": "Extra's", - "HeaderUploadImage": "Afbeelding uploaden", - "DeviceLastUsedByUserName": "Het laatste gebruikt door {0}", - "HeaderDeleteDevice": "Verwijder apparaat", - "DeleteDeviceConfirmation": "Weet u zeker dat u dit apparaat wilt verwijderen? Het zal opnieuw verschijnen als een gebruiker zich hiermee aanmeldt.", - "LabelEnableCameraUploadFor": "Schakel camera upload in voor:", - "HeaderSelectUploadPath": "Kies upload pad", - "LabelEnableCameraUploadForHelp": "Uploads zullen automatisch op de achtergrond plaatsvinden wanneer bij Emby aangemeld is.", - "ErrorMessageStartHourGreaterThanEnd": "Eind tijd moet na de start tijd liggen.", - "ButtonLibraryAccess": "Bibliotheek toegang", - "ButtonParentalControl": "Ouderlijk toezicht", - "HeaderInvitationSent": "Uitnodiging verzonden", - "MessageInvitationSentToUser": "Een email is verzonden naar {0} om uw uitnodiging om media te delen te accepteren.", - "MessageInvitationSentToNewUser": "Een email is verzonden naar {0} met een uitnodiging om aan te melden bij Emby.", - "HeaderConnectionFailure": "Verbindingsfout", - "MessageUnableToConnectToServer": "Het is momenteel niet mogelijk met de geselecteerde server te verbinden. Controleer dat deze draait en probeer het opnieuw.", - "ButtonSelectServer": "Server Selecteren", - "MessagePluginConfigurationRequiresLocalAccess": "Meld svp. op de lokale server aan om deze plugin te configureren.", - "MessageLoggedOutParentalControl": "Toegang is momenteel bepertk, probeer later opnieuw.", - "DefaultErrorMessage": "Er is een fout opgetreden. Probeer later opnieuw.", - "ButtonAccept": "Accepteren", - "ButtonReject": "Weigeren", - "HeaderForgotPassword": "Wachtwoord vergeten", - "MessageContactAdminToResetPassword": "Neem contact op met de server beheerder om uw wachtwoord te resetten.", - "MessageForgotPasswordInNetworkRequired": "Probeer de wachtwoord herstel procedure opnieuw vanuit uw thuisnetwerk.", - "MessageForgotPasswordFileCreated": "Het volgende bestand met instructies hoe nu verder te gaan is gemaakt:", - "MessageForgotPasswordFileExpiration": "De herstel pincode verloopt {0}.", - "MessageInvalidForgotPasswordPin": "Er is een ongeldige of verlopen pincode ingegeven. Probeer opnieuw.", - "MessagePasswordResetForUsers": "Wachtwoorden van de volgende gebruikers zijn verwijderd. Gebruik een leeg wachtwoord om aan te melden.", - "HeaderInviteGuest": "Nodig gast uit", - "ButtonLinkMyEmbyAccount": "Koppel mijn account nu", - "MessageConnectAccountRequiredToInviteGuest": "Om gasten uit te kunnen nodigen moet u uw Emby account aan deze server koppelen.", - "ButtonSync": "Synchronisatie", - "SyncMedia": "Synchroniseer media", - "HeaderCancelSyncJob": "Annuleer synchronisatie", - "CancelSyncJobConfirmation": "Als u de synchroniseertaak annuleert wordt de gesynchroniseerde media bij de volgende synchroniseertaak van het apparaat verwijderd. Weet u zeker dat u door wilt gaan?", - "TabSync": "Synchronisatie", - "MessagePleaseSelectDeviceToSyncTo": "Selecteer een apparaat om mee te synchroniseren.", - "MessageSyncJobCreated": "Synchronisatie taak gemaakt.", - "LabelSyncTo": "Synchroniseer naar:", - "LabelSyncJobName": "Naam synchroniseer taak:", - "LabelQuality": "Kwaliteit", - "HeaderSettings": "Instellingen", - "OptionAutomaticallySyncNewContent": "Nieuwe inhoud automatisch synchroniseren", - "OptionAutomaticallySyncNewContentHelp": "Nieuwe inhoud zal automatisch met het apparaat gesynchroniseerd worden.", - "OptionSyncUnwatchedVideosOnly": "Synchroniseer alleen onbekeken video's", - "OptionSyncUnwatchedVideosOnlyHelp": "Alleen onbekeken video's zullen worden gesynchroniseerd en van het apparaat worden verwijderd als ze bekeken zijn.", - "LabelItemLimit": "Item limiet:", - "LabelItemLimitHelp": "Optioneel. Een limiet stellen aan het aantal items die zullen worden gesynchroniseerd.", - "MessageBookPluginRequired": "Vereist installatie van de Bookshelf plugin", - "MessageGamePluginRequired": "Vereist installatie van de GameBrowser plugin", - "MessageUnsetContentHelp": "Inhoud zal als gewone folders worden getoond. Gebruik voor het beste resultaat de Metadata Manager om de inhoud types voor subfolders in te stellen.", - "SyncJobItemStatusQueued": "In wachtrij", - "SyncJobItemStatusConverting": "Converteren", - "SyncJobItemStatusTransferring": "Versturen", - "SyncJobItemStatusSynced": "Gesynchroniseerd", - "SyncJobItemStatusFailed": "Mislukt", - "SyncJobItemStatusRemovedFromDevice": "Van apparaat verwijderd", - "SyncJobItemStatusCancelled": "Geannuleerd", - "LabelProfile": "profiel:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "Ga naar {0} om Emby Server te downloaden en te installeren.", - "ButtonNewServer": "Nieuwe server", - "ButtonSignInWithConnect": "Aanmelden met Emby Connect", - "HeaderNewServer": "Nieuwe Server", - "MyDevice": "Mijn apparaat", - "ButtonRemote": "Afstandsbediening", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "App vrijgeven", - "HeaderUnlockSync": "Ontgrendel Emby Sync", - "MessageUnlockAppWithPurchaseOrSupporter": "Ontgrendel deze functie met een kleine eenmalige aankoop, of met een actief Emby Premiere abonnement.", - "MessageUnlockAppWithSupporter": "Ontgrendel deze functie met een actief Emby Premiere abonnement.", - "MessageToValidateSupporter": "Als u een actief emby Premiere abonnement hebt, meldt u een keer aan via uw thuisnetwerk.", - "MessagePaymentServicesUnavailable": "Betaal services zijn momenteel niet beschikbaar, Probeer het later svp. nog eens.", - "MessagePleaseSignInLocalNetwork": "Controleer of u verbonden bent met uw lokale netwerk voordat u verder gaat.", - "ButtonUnlockWithPurchase": "Geef vrij met een aankoop", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "De Live TV Gids is momenteel gelimiteerd tot {0} kanalen. Klik op de Geef vrij knop om te zien hoe u deze limiet op kunt heffen.", - "OptionEnableFullscreen": "Schakel volledig scherm in", - "ButtonServer": "Server", - "HeaderAdmin": "Beheerder", - "HeaderLibrary": "Bibliotheek", - "HeaderMedia": "Media", - "ButtonInbox": "inbox", - "HeaderAdvanced": "Geavanceerd", - "HeaderGroupVersions": "Versies Groeperen", - "HeaderSaySomethingLike": "Zeg iets zoals...", - "ButtonTryAgain": "Opnieuw Proberen", - "HeaderYouSaid": "U zei...", - "MessageWeDidntRecognizeCommand": "Sorry, dat commande herkennen we niet.", - "MessageIfYouBlockedVoice": "Als u spraak toegang uitgeschakeld heeft moet u dit opnieuw configureren voordat u verder gaat.", - "MessageNoItemsFound": "Geen items gevonden.", - "ButtonManageServer": "Beheer server", - "ButtonEditSubtitles": "Bewerk ondertiteling", - "ButtonPreferences": "Voorkeuren", - "ButtonViewArtist": "Bekijk artiest", - "ButtonViewAlbum": "Bekijk album", - "ButtonEditImages": "Bewerk afbeeldingen", - "ErrorMessagePasswordNotMatchConfirm": "Het wachtwoord en de wachtwoordbevestiging moeten overeenkomen.", - "ErrorMessageUsernameInUse": "Deze gebruikersnaam is al in gebruik. Kies een andere en probeer het opnieuw.", - "ErrorMessageEmailInUse": "Dit emailadres is al in gebruik. Kies een ander en probeer het opnieuw, of gebruik de vergeten wachtwoord functie.", - "MessageThankYouForConnectSignUp": "Bedankt voor het aanmelden bij Emby Connect. Een e-mail met instructies hoe uw account bevestigd moet worden wordt verstuurd. Bevestig het account en keer terug om aan te melden.", - "HeaderShare": "Delen", - "ButtonShareHelp": "Deel een webpagina met media-informatie met sociale media. Media-bestanden worden nooit publiekelijk gedeeld.", - "ButtonShare": "Delen", - "HeaderConfirm": "bevestigen", - "ButtonAdvancedRefresh": "Geavanceerd vernieuwen", - "MessageConfirmDeleteTunerDevice": "Weet u zeker dat u dit apparaat wilt verwijderen?", - "MessageConfirmDeleteGuideProvider": "Weet u zeker dat u deze gidsprovider wilt verwijderen?", - "HeaderDeleteProvider": "Verwijder aanbieder", - "HeaderAddProvider": "Voeg aanbieder toe.", - "ErrorAddingTunerDevice": "Er was een fout bij het toevoegen van de tuner. Controleer of deze toegankelijk is en probeer het opnieuw.", - "ErrorSavingTvProvider": "Er was een fout bij het opslaan van de TV aanbieder. Controleer of deze toegankelijk is en probeer het opnieuw.", - "ErrorGettingTvLineups": "Er was een fout bij het downloaden van de TV lineup. Controleer of uw gegevens correct zijn en probeer het opnieuw.", - "MessageCreateAccountAt": "Maak een account bij {0}", - "ErrorPleaseSelectLineup": "Selecteer een lineup en probeer het opnieuw. Als er geen lineups beschibaar zijn, controleer dan of uw gebruikersnaam, wachtwoord en postcode correct zijn.", - "HeaderTryEmbyPremiere": "Probeer Emby Premiere", - "ButtonBecomeSupporter": "Verkrijg Emby Premiere", - "ButtonClosePlayVideo": "Sluit af en speel mijn media", - "MessageDidYouKnowCinemaMode": "Wist u dat u met Emby Premiere uw ervaring met functies zoals Cinema Mode kunt verbeteren?", - "MessageDidYouKnowCinemaMode2": "Cinema Mode geeft u de echte bioscoop ervaring met trailers en eigen intros voordat de film begint.", - "OptionEnableDisplayMirroring": "Schakel beeld spiegeling in", - "HeaderSyncRequiresSupporterMembership": "Sync vereist een actief Emby Premiere abonnement.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync vereist een verbinding met een Emby Server met een actief Emby Premiere abonnement.", - "ErrorValidatingSupporterInfo": "Er is een fout bij het valideren van uw Emby Premiere gegevens . Probeer het later opnieuw.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Synchroniseren gestart", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster kaart", - "OptionTimeline": "Tijdlijn", - "OptionList": "Lijst", - "OptionThumb": "Miniatuur", - "OptionThumbCard": "Miniaturen kaart", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "Geen voorstelling afbeeldingen gevonden.", - "OptionPhotoSlideshow": "Foto voorstelling", - "OptionBackdropSlideshow": "Achtergrondafbeelding voorstelling", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Opnemen", - "ButtonOther": "Andere", - "HeaderSortBy": "Sorteren op", - "HeaderSortOrder": "Sorteer volgorde", - "OptionAscending": "Oplopend", - "OptionDescending": "Aflopend", - "OptionNameSort": "Naam", - "OptionTvdbRating": "Tvdb Waardering", - "OptionPremiereDate": "Premi\u00e8re Datum", - "OptionImdbRating": "IMDb Waardering", - "OptionDatePlayed": "Datum afgespeeld", - "OptionDateAdded": "Datum toegevoegd", - "OptionPlayCount": "Afspeel telling", - "ButtonDisconnect": "Loskoppelen", - "OptionAlbumArtist": "Albumartiest", - "OptionArtist": "Artiest", - "OptionAlbum": "Album", - "OptionTrackName": "Naam van Nummer", - "OptionCommunityRating": "Gemeenschaps Waardering", - "ButtonSort": "Sorteren", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Standaard", - "ButtonFilter": "Filter", - "OptionCriticRating": "Kritieken", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Inkomsten", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "Klik op de Externe Services tab om de opties voor andere Live TV aanbieders te zien.", - "ButtonGuide": "Gids", - "ButtonRecordedTv": "Tv-opnamen", - "HeaderDisconnectFromPlayer": "Loskoppelen van Speler", - "ConfirmEndPlayerSession": "Wilt u Emby afsluiten op dit toestel?", - "ButtonYes": "Ja", - "ButtonNo": "Nee", - "ButtonRestorePreviousPurchase": "Herstel aankoop", - "AlreadyPaid": "Al betaald?", - "AlreadyPaidHelp1": "Als u een oudere versie van Media Browser voor Android aangeschaft hebt hoeft u niet opnieuw te betalen om deze app te activeren. Klik op OK om ons u een e-mail op {0} te sturen en wij activeren deze voor u.", - "AlreadyPaidHelp2": "Heeft u Emby Premiere? Annuleer dan deze dialoog en meldt u via uw draadloos thuisnetwerk aan bij de app. Deze zal daarna automatisch ontgrendeld worden.", - "ButtonForYou": "Voor U", - "ButtonLibrary": "Bibliotheek", - "ButtonSearch": "Zoeken", - "ButtonNowPlaying": "Wordt nu afgespeeld", - "ButtonViewNewApp": "Bekijk nieuwe app", - "HeaderEmbyForAndroidHasMoved": "Emby voor Android is verhuisd!", - "MessageEmbyForAndroidHasMoved": "Emby voor Android is verhuisd naar een nieuwe plek in de app store. Probeer a.u.b. de nieuwe app. U kunt doorgaan met deze app te gebruiken voor zo lang als u wilt.", - "HeaderNextUp": "Volgend", - "HeaderLatestMovies": "Nieuwste Films", - "HeaderLatestEpisodes": "Nieuwste Afleveringen", - "EmbyPremiereMonthly": "Emby Premiere Maandelijks", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Maandelijks {0}", - "HeaderEmailAddress": "E-mailadres", - "TextPleaseEnterYourEmailAddressForSubscription": "Vul alstublieft uw e-mail adres in. ", - "LoginDisclaimer": "Emby is ontworpen om uw persoonlijke mediabibliotheek te helpen beheren, zoals home video's en foto's. Zie onze gebruiksvoorwaarden. Het gebruik van Emby software betekent acceptatie van deze voorwaarden.", - "TermsOfUse": "Gebruiksvoorwaarden", - "HeaderTryMultiSelect": "Probeer multi-select", - "TryMultiSelectMessage": "Als u meerdere media-items wilt bewerken, klikt u er op een poster en hou even vast, selecteer nu de items die u wilt beheren. Probeer maar!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Voeg Media Bibliotheek toe", - "ButtonManageFolders": "Beheer mappen", - "HeaderTryDragAndDrop": "Probeer 'Drag and Drop'", - "TryDragAndDropMessage": "Gebruik 'drag and drop' om uw afspeellijst aan te passen.", - "HeaderTryMicrosoftEdge": "Probeer Microsoft Edge", - "MessageTryMicrosoftEdge": "Voor een betere ervaring in Windows 10 gebruikt u de nieuwe Microsoft Edge webbrowser.", - "HeaderTryModernBrowser": "Probeer een Moderne Webbrowser", - "MessageTryModernBrowser": "Voor een betere ervaring in Windows, probeer een moderne webbrowser zoals Google Chrome, Firefox of Opera.", - "ErrorAddingListingsToSchedulesDirect": "Er ging iets mis bij het toevoegen van de lineup aan uw Schedules Direct account. Schedules Direct staat maar een beperkt aantal lineups per account toe. Het kan nodig zijn dat u zich aan moet melden op de Schedules Direct website en andere lineups moet verwijderen voordat u verder kunt.", - "PleaseAddAtLeastOneFolder": "Voeg ten minste 1 map to aan deze bibliotheek door op de Toevoegen knop te klikken.", - "ErrorAddingMediaPathToVirtualFolder": "Er ging iets mis bij het toevoegen van het media pad. Controleer of het pad klopt en of het Emby server process toegang heeft tot het pad.", - "ErrorRemovingEmbyConnectAccount": "Er ging iets mis bij het verwijderen van het Emby Connect account. Controleer de internet verbinding en probeer het opnieuw.", - "ErrorAddingEmbyConnectAccount1": "Er ging iets mis bij het toevoegen van de Emby Connect account. Hebt u een Emby account aangemaakt? Registreer op {0}.", - "ErrorAddingEmbyConnectAccount2": "Verzekert u zich er a.u.b. van dat het Emby account geactiveerd is door de instructies te volgen in de e-mail die verstuurd is na het aanmaken van de account. Als u deze mail niet ontvangen hebt, stuur dan a.u.b. een e-mail naar {0} vanaf het e-mailadres dat gebruikt is bij het aanmaken van het Emby account.", - "HeaderFavoriteArtists": "Favoriete Artiest", - "HeaderFavoriteSongs": "Favoriete Nummers", - "HeaderConfirmPluginInstallation": "Bevestig Plugin Installatie", - "PleaseConfirmPluginInstallation": "Klik op OK om te bevestigen dat u bovenstaande heeft gelezen en door wenst te gaan met het installeren van de plugin.", - "MessagePluginInstallDisclaimer": "Plugins ontwikkeld door leden van de Emby gemeenschap zijn een geweldige manier om uw Emby ervaring met extra functies en voordelen te verbeteren. Alvorens te installeren, dient u zich bewust te zijn van de gevolgen die zij kunnen hebben op uw Emby Server, zoals langere bibliotheek scans, extra achtergrondinformatie verwerking, en een verminderde stabiliteit van het systeem.", - "ButtonPlayOneMinute": "Speel \u00e9\u00e9n minuut", - "ThankYouForTryingEnjoyOneMinute": "U kunt nu genieten van \u00e9\u00e9n minuut afspelen. Bedankt voor het uitproberen van Emby.", - "HeaderTryPlayback": "Probeer afspelen", - "HeaderBenefitsEmbyPremiere": "Voordelen van Emby Premiere", - "MobileSyncFeatureDescription": "Synchroniseert uw media op uw smartphones en tablets voor een gemakkelijke offline toegang.", - "CoverArtFeatureDescription": "Cover Art cre\u00ebert leuke covers en andere bewerkingen om u te helpen uw mediabeelden te personaliseren.", - "HeaderMobileSync": "Mobiel Synchronisatie", - "HeaderCloudSync": "Cloud Synchronisatie", - "CloudSyncFeatureDescription": "Synchroniseer uw media naar de cloud voor eenvoudige backup, archivering en conversie.", - "HeaderFreeApps": "Gratis Emby Apps", - "FreeAppsFeatureDescription": "Geniet van gratis toegang om Emby apps te selecteren voor uw apparaten.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode geeft u de ware bioscoopervaring met trailers en aangepaste intro voor de weergave van uw keuze.", - "CoverArt": "Cover Art", - "ButtonOff": "Uit", - "TitleHardwareAcceleration": "Hardware versnelling", - "HardwareAccelerationWarning": "Het inschakelen van hardware versnelling kan problemen veroorzaken in somige omgevingen. Als je problemen met video afspelen ondervindt na inschakelen, zet deze setting dan weer op Auto.", - "HeaderSelectCodecIntrosPath": "Selecteer het Codec intro's pad", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/pl.json b/dashboard-ui/strings/javascript/pl.json deleted file mode 100644 index 5a1010608a..0000000000 --- a/dashboard-ui/strings/javascript/pl.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Ustawienia zapisane.", - "AddUser": "Dodaj u\u017cytkownika", - "Users": "U\u017cytkownicy", - "Delete": "Usu\u0144", - "Administrator": "Administrator", - "Password": "Has\u0142o", - "DeleteImage": "Usu\u0144 zdj\u0119cie", - "MessageThankYouForSupporting": "Dzi\u0119kujemy za wspieranie Emby.", - "MessagePleaseSupportProject": "Prosz\u0119 wesprzyj Emby.", - "DeleteImageConfirmation": "Jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 to zdj\u0119cie?", - "FileReadCancelled": "Odczytywanie pliku zosta\u0142o anulowane.", - "FileNotFound": "Plik nie znaleziony.", - "FileReadError": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas odczytywania pliku.", - "DeleteUser": "Usu\u0144 u\u017cytkownika", - "DeleteUserConfirmation": "Czy na pewno chcesz skasowa\u0107 tego u\u017cytkownika?", - "PasswordResetHeader": "Zresetuj has\u0142o", - "PasswordResetComplete": "Has\u0142o zosta\u0142o zresetowane.", - "PinCodeResetComplete": "Kod pin zosta\u0142 zresetowany.", - "PasswordResetConfirmation": "Jeste\u015b pewien \u017ce chcesz zresetowa\u0107 has\u0142o?", - "PinCodeResetConfirmation": "Jeste\u015b pewien \u017ce chcesz zresetowa\u0107 kod pin?", - "HeaderPinCodeReset": "Resetuj Kod Pin", - "PasswordSaved": "Has\u0142o zapisane.", - "PasswordMatchError": "Has\u0142o i potwierdzenie has\u0142a musz\u0105 si\u0119 zgadza\u0107.", - "OptionRelease": "Oficjalne Wydanie", - "OptionBeta": "Beta", - "OptionDev": "Dev (Niestabilne)", - "UninstallPluginHeader": "Usu\u0144 wtyczk\u0119", - "UninstallPluginConfirmation": "Czy na pewno chcesz usun\u0105\u0107 {0}?", - "NoPluginConfigurationMessage": "Ta wtyczka nie ma \u017cadnych ustawie\u0144.", - "NoPluginsInstalledMessage": "Nie masz \u017cadnych wtyczek zainstalowanych.", - "BrowsePluginCatalogMessage": "Przejrzyj nasz katalog wtyczek \u017ceby zobaczy\u0107 dost\u0119pne wtyczki.", - "HeaderNewApiKey": "Nowy Klucz Api", - "LabelAppName": "Nazwa Aplikacji", - "LabelAppNameExample": "Przyk\u0142ad: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Przyznaj uprawnienia aplikacji do komunikacji z Serwerem Emby.", - "MessageKeyEmailedTo": "Klucz wys\u0142any do {0}.", - "MessageKeysLinked": "Klucz po\u0142\u0105czony.", - "HeaderConfirmation": "Potwierdzenie", - "MessageKeyUpdated": "Dzi\u0119kujemy. Tw\u00f3j klucz Emby Premiere zosta\u0142 aktualizowany.", - "MessageKeyRemoved": "Dzi\u0119kujemy. Tw\u00f3j klucz Emby Premiere zosta\u0142 usuni\u0119ty.", - "HeaderSupportTheTeam": "Wesprzyj dru\u017cyn\u0119 Emby", - "TextEnjoyBonusFeatures": "Sprawd\u017a Funkcje Specjalne", - "TitleLiveTV": "TV Na \u017bywo", - "ButtonCancelSyncJob": "Anuluj Sync", - "HeaderAddTag": "Dodaj tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Wybierz widok", - "TitleSync": "Synchronizuj", - "OptionAutomatic": "Automatycznie", - "HeaderSelectDate": "Wybierz Dat\u0119", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identyfikuj", - "HeaderIdentifyItem": "Identyfikuj obiekt", - "LabelRecurringDonationCanBeCancelledHelp": "Okresowe dotacje mog\u0105 zosta\u0107 anulowane w dowolnym momencie poprzez swoje konto PayPal.", - "LabelFromHelp": "Przyk\u0142ad: {0} (na serwerze)", - "HeaderMyMedia": "Moje Media", - "ButtonRemoveFromCollection": "Usu\u0144 z Kolekcji", - "LabelAutomaticUpdateLevel": "Automatyczne poziom aktualizacji:", - "LabelAutomaticUpdateLevelForPlugins": "Automatyczne poziom aktualizacji dla wtyczek:", - "TitleNotifications": "Powiadomienia", - "ErrorLaunchingChromecast": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas uruchamiania chromecast. Prosz\u0119 upewnij si\u0119 \u017ce twoje urz\u0105dzenie jest pod\u0142\u0105czone do sieci bezprzewodowej.", - "MessageErrorLoadingSupporterInfo": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas \u0142adowania informacji Emby Premiere. Spr\u00f3buj ponownie p\u00f3\u017aniej.", - "MessageLinkYourSupporterKey": "Po\u0142\u0105cz sw\u00f3j klucz Emby Premier z {0} cz\u0142onkami Emby Connect aby cieszy\u0107 si\u0119 darmowych dost\u0119pem do nast\u0119puj\u0105cych aplikacji:", - "HeaderConfirmRemoveUser": "Usu\u0144 U\u017cytkownika", - "MessageConfirmRemoveConnectSupporter": "Czy jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 dodatkowe korzy\u015bci Emby Premier temu u\u017cytkownikowi?", - "ValueTimeLimitSingleHour": "Limit czasu: 1 godzina", - "ValueTimeLimitMultiHour": "Limit czasu: {0} godzin", - "HeaderUsers": "U\u017cytkownicy", - "PluginCategoryGeneral": "Og\u00f3lne", - "PluginCategoryContentProvider": "\u0179r\u00f3d\u0142a zawarto\u015bci", - "PluginCategoryScreenSaver": "Wygaszacze ekranu", - "PluginCategoryTheme": "Sk\u00f3rki", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Portale spo\u0142eczno\u015bciowe", - "PluginCategoryNotifications": "Powiadomienia", - "PluginCategoryMetadata": "Metadane", - "PluginCategoryLiveTV": "Telewizja na \u017cywo", - "PluginCategoryChannel": "Kana\u0142y", - "HeaderSearch": "Szukaj", - "ValueDateCreated": "Data stworzenia: {0}", - "LabelArtist": "Wykonawca", - "LabelMovie": "Film", - "LabelMusicVideo": "Teledysk", - "LabelEpisode": "Odcinek", - "LabelSeries": "Seriale", - "LabelStopping": "Zatrzymywanie", - "LabelCancelled": "(anulowano)", - "LabelFailed": "(wyst\u0105pi\u0142 b\u0142\u0105d)", - "ButtonHelp": "Pomoc", - "ButtonSave": "Zapisz", - "ButtonDownload": "Pobierz", - "SyncJobStatusQueued": "Zakolejkowane", - "SyncJobStatusConverting": "Konwertowanie", - "SyncJobStatusFailed": "Wyst\u0105pi\u0142 b\u0142\u0105d", - "SyncJobStatusCancelled": "Anulowano", - "SyncJobStatusCompleted": "Zsynchronizowano", - "SyncJobStatusReadyToTransfer": "Gotowy do transferu", - "SyncJobStatusTransferring": "Przenosz\u0119", - "SyncJobStatusCompletedWithError": "Zsynchronizowano z b\u0142\u0119dami", - "SyncJobItemStatusReadyToTransfer": "Gotowe do transferu", - "LabelCollection": "Zbiory", - "HeaderAddToCollection": "Dodaj do Kolekcji", - "HeaderNewCollection": "Nowa Kolekcja", - "NewCollectionNameExample": "Przyk\u0142ad: Star Wars Kolekcja", - "OptionSearchForInternetMetadata": "Szukaj artwork\u00f3w i metadanych w internecie", - "LabelSelectCollection": "Wybierz kolekcje:", - "HeaderDevices": "Urz\u0105dzenia", - "ButtonScheduledTasks": "Zaplanowane zadania", - "MessageItemsAdded": "Obiekty dodane", - "ButtonAddToCollection": "Dodaj do zbior\u00f3w", - "HeaderSelectCertificatePath": "Wybierz \u015bcie\u017ck\u0119 do certyfiaktu", - "ConfirmMessageScheduledTaskButton": "Operacja zazwyczaj dzia\u0142a w tle jako zaplanowane zadanie oraz nie wymaga r\u0119cznego w\u0142\u0105czenia. Aby skonfigurowa\u0107 zaplanowane zadanie zobacz:", - "HeaderSupporterBenefit": "Aktywa subskrypcja Emby Premiere daje dodatkowe korzy\u015bci np: dost\u0119p do synchronizacji, pluginy premium, zawarto\u015b\u0107 kana\u0142\u00f3w internetowych i inne. {0} Dowiedz si\u0119 wi\u0119cej {1}.", - "LabelSyncNoTargetsHelp": "Wygl\u0105da na to, \u017ce nie masz \u017cadnych aplikacji wspieraj\u0105cych synchronizacj\u0119.", - "HeaderWelcomeToProjectServerDashboard": "Witaj w dashboard'zie serwera Emby!", - "HeaderWelcomeToProjectWebClient": "Witamy w Emby", - "ButtonTakeTheTour": "Dowiedz si\u0119 wi\u0119cej", - "HeaderWelcomeBack": "Witaj ponownie!", - "TitlePlugins": "Wtyczki", - "ButtonTakeTheTourToSeeWhatsNew": "Zobacz co nowego dla Ciebie przygotowali\u015bmy", - "MessageNoSyncJobsFound": "Brak zada\u0144 synchronizacji. Stw\u00f3rz nowe u\u017cywaj\u0105c odno\u015bnik\u00f3w Sync w interfejsie webowym Emby.", - "HeaderLibraryAccess": "Dost\u0119p do Bibliotek", - "HeaderChannelAccess": "Dost\u0119p do Kana\u0142\u00f3w", - "HeaderDeviceAccess": "Dost\u0119p urz\u0105dze\u0144", - "HeaderSelectDevices": "Wybierz urz\u0105dzenie", - "ButtonCancelItem": "Anuluj obiekt", - "ButtonQueueForRetry": "Zapisz aby spr\u00f3bowa\u0107 p\u00f3\u017aniej", - "ButtonReenable": "Aktywuj ponownie", - "ButtonLearnMore": "Dowiedz si\u0119 wi\u0119cej", - "SyncJobItemStatusSyncedMarkForRemoval": "Oznaczone do usuni\u0119cia", - "LabelAbortedByServerShutdown": "(Przerwano w skuter wy\u0142\u0105czenia serwera)", - "LabelScheduledTaskLastRan": "Ostation uruchomiono {0}, czas trwania {1}.", - "HeaderDeleteTaskTrigger": "Usu\u0144 Wyzwalacz Zadania", - "MessageDeleteTaskTrigger": "Jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 ten wyzwalacz zadania?", - "MessageNoPluginsInstalled": "Nie masz \u017cadnych wtyczek zainstalowanych.", - "MessageNoPluginsDueToAppStore": "Prosz\u0119 u\u017cy\u0107 aplikacji internetowej Emby aby zarz\u0105dza\u0107 pluginami.", - "LabelVersionInstalled": "{0} zainstalowanych", - "LabelNumberReviews": "{0} Recenzji", - "LabelFree": "Darmowe", - "HeaderTo": "Do", - "HeaderPlaybackError": "B\u0142\u0105d Odtwarzania", - "MessagePlaybackErrorNotAllowed": "Obecnie nie jeste\u015b autoryzowany do odtwarzania tej zawarto\u015bci. prosz\u0119 skontaktuj si\u0119 ze swoim administratorem.", - "MessagePlaybackErrorNoCompatibleStream": "Obecnie brak kompatybilnych stream\u00f3w. Prosz\u0119 spr\u00f3buj ponownie p\u00f3\u017aniej lub skontaktuj si\u0119 z administratorem systemu.", - "MessagePlaybackErrorRateLimitExceeded": "Tw\u00f3j limit odtwarzania wyczerpa\u0142 si\u0119. Prosz\u0119 skontaktuj si\u0119 z administratorem systemu.", - "MessagePlaybackErrorPlaceHolder": "Wybrana zawarto\u015b\u0107 nie mo\u017ce by\u0107 odtwarzana z tego urz\u0105dzenia.", - "HeaderSelectAudio": "Wybierz Audio", - "HeaderSelectSubtitles": "Wybierz Napisy", - "ButtonMarkForRemoval": "Usu\u0144 z Urz\u0105dzenia", - "ButtonUnmarkForRemoval": "Anuluj usuwanie z urz\u0105dzenia", - "LabelDefaultStream": "(Domy\u015blny)", - "LabelForcedStream": "(Wymuszony)", - "LabelDefaultForcedStream": "(Domy\u015blny\/Wymuszony)", - "LabelUnknownLanguage": "Nieznany j\u0119zyk", - "MessageConfirmSyncJobItemCancellation": "Czy na pewno chcesz usun\u0105\u0107 t\u0105 pozycj\u0119?", - "ButtonMute": "Wycisz", - "ButtonUnmute": "(OD)Wycisz", - "ButtonStop": "Stop", - "ButtonNextTrack": "Nast\u0119pna \u015bcie\u017cka", - "ButtonPause": "Pauza", - "ButtonPlay": "Odtwarzaj", - "ButtonEdit": "Edytuj", - "ButtonQueue": "Kolejka", - "ButtonPlayTrailer": "Odtw\u00f3rz zwiastun", - "ButtonPlaylist": "Playlista", - "ButtonPreviousTrack": "Poprzednia \u015acie\u017cka", - "LabelEnabled": "W\u0142\u0105czone", - "LabelDisabled": "Wy\u0142\u0105czone", - "ButtonMoreInformation": "Wi\u0119cej Informacji", - "LabelNoUnreadNotifications": "Brak nieprzeczytanych powiadomie\u0144", - "ButtonViewNotifications": "Zobacz powiadomienia", - "ButtonMarkTheseRead": "Oznacz jako przeczytane", - "ButtonClose": "Zamknij", - "LabelAllPlaysSentToPlayer": "Wszystkie odtworzenia b\u0119d\u0105 wysy\u0142ane do wybranego odtwarzacza.", - "MessageInvalidUser": "Nieprawid\u0142owa nazwa u\u017cytkownika lub has\u0142o. Spr\u00f3buj ponownie.", - "HeaderLoginFailure": "B\u0142\u0105d Logowania", - "HeaderAllRecordings": "Wszystkie Nagrania", - "RecommendationBecauseYouLike": "Bo polubi\u0142e\u015b {0}", - "RecommendationBecauseYouWatched": "Bo obejrza\u0142e\u015b {0}", - "RecommendationDirectedBy": "Re\u017cyserowane przez {0}", - "RecommendationStarring": "Wyst\u0119puj\u0105 {0}", - "HeaderConfirmRecordingCancellation": "Potwierd\u017a Anulowanie Nagrania", - "MessageConfirmRecordingCancellation": "Czy jeste\u015b pewien \u017ce chcesz anulowa\u0107 to nagranie?", - "MessageRecordingCancelled": "Nagranie anulowane.", - "MessageRecordingScheduled": "Nagranie zosta\u0142o zaplanowane.", - "HeaderConfirmSeriesCancellation": "Potwierd\u017a Anulowanie Serialu", - "MessageConfirmSeriesCancellation": "Czy na pewno chcesz anulowa\u0107 ten serial?", - "MessageSeriesCancelled": "Serial anulowany.", - "HeaderConfirmRecordingDeletion": "Potwierd\u017a Usuni\u0119cie Nagrania", - "MessageConfirmRecordingDeletion": "Czy jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 to nagranie?", - "MessageRecordingDeleted": "Nagranie usuni\u0119te.", - "ButonCancelRecording": "Anuluj Nagranieq", - "MessageRecordingSaved": "Nagranie zapisane", - "OptionSunday": "Niedziela", - "OptionMonday": "Poniedzia\u0142ek", - "OptionTuesday": "Wtorek", - "OptionWednesday": "\u015aroda", - "OptionThursday": "Czwartek", - "OptionFriday": "Pi\u0105tek", - "OptionSaturday": "Sobota", - "OptionEveryday": "Ka\u017cdego dnia", - "OptionWeekend": "Weekendy", - "OptionWeekday": "Dni Tygodnia", - "HeaderConfirmDeletion": "Potwierd\u017a usuni\u0119cie", - "MessageConfirmPathSubstitutionDeletion": "Jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 t\u0105 podmienion\u0105 \u015bcie\u017ck\u0119?", - "LiveTvUpdateAvailable": "(Dost\u0119pna aktualizacja)", - "LabelVersionUpToDate": "Aktualny!", - "ButtonResetTuner": "Resetuj tuner", - "HeaderResetTuner": "Resetuj Tuner", - "MessageConfirmResetTuner": "Czy jeste\u015b pewien \u017ce chcesz zresetowa\u0107 ten tuner? Ka\u017cde aktywny odtwarzacz lub nagranie zostanie przerwane.", - "ButtonCancelSeries": "Anuluj Serial", - "HeaderSeriesRecordings": "Nagrania Seriali", - "LabelAnytime": "O ka\u017cdym czasie", - "StatusRecording": "Nagrania", - "StatusWatching": "Ogl\u0105dane", - "StatusRecordingProgram": "Nagrania {0}", - "StatusWatchingProgram": "Ogl\u0105dane {0}", - "HeaderSplitMedia": "Rozdziel Media", - "MessageConfirmSplitMedia": "Czy jeste\u015b pewien \u017ce chcesz rozdzieli\u0107 \u017ar\u00f3d\u0142a medi\u00f3w na oddzielne pozycje?", - "HeaderError": "B\u0142\u0105d", - "MessageChromecastConnectionError": "Tw\u00f3j odbiornik Chromecast nie jest wstanie pod\u0142\u0105czy\u0107 si\u0119 do serwera Emby. Prosz\u0119 sprawd\u017a jego po\u0142\u0105czenie i spr\u00f3buj ponownie.", - "MessagePleaseSelectOneItem": "Prosz\u0119 wybierz przynajmniej jedn\u0105 pozycje.", - "MessagePleaseSelectTwoItems": "Prosz\u0119 wybierz przynajmniej dwie pozycje.", - "MessageTheSelectedItemsWillBeGrouped": "Wybrane filmy b\u0119d\u0105 pogrupowane w jedn\u0105 virtualn\u0105 pozycj\u0119.\nAplikacje Emby b\u0119d\u0105 automatycznie wybiera\u0107 kt\u00f3r\u0105 wersj\u0119 odtwarza\u0107 na podstawie urz\u0105dzenia i wydajno\u015bci sieci. Czy jeste\u015b pewien \u017ce chcesz kontynuowa\u0107?", - "HeaderResume": "Wzn\u00f3w", - "HeaderMyViews": "Moje Widoki", - "HeaderLibraryFolders": "Foldery Medi\u00f3w", - "HeaderLatestMedia": "Ostatnie Media", - "ButtonMoreItems": "Wi\u0119cej...", - "ButtonMore": "Wi\u0119cej", - "HeaderFavoriteMovies": "Ulubione Filmy", - "HeaderFavoriteShows": "Ulubione Seriale", - "HeaderFavoriteEpisodes": "Ulubione Odcinki", - "HeaderFavoriteGames": "Ulubione Gry", - "HeaderRatingsDownloads": "Ocenia \/ Pobrania", - "HeaderConfirmProfileDeletion": "Potwierd\u017a Usuni\u0119cie Profilu", - "MessageConfirmProfileDeletion": "Jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 ten profil?", - "HeaderSelectServerCachePath": "Wybierz \u015acie\u017ck\u0119 Cache Serwera", - "HeaderSelectTranscodingPath": "Wybierz \u015acie\u017ck\u0119 Tymczasowa Transkodowania", - "HeaderSelectImagesByNamePath": "Wybierz Obrazy Wed\u0142ug Nazwy \u015acie\u017cki:", - "HeaderSelectMetadataPath": "Wybierz \u015acie\u017ck\u0119 Metadanych", - "HeaderSelectServerCachePathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 dla plik\u00f3w cache serwera. Folder musi by\u0107 zapisywany.", - "HeaderSelectTranscodingPathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 dla plik\u00f3w tymczasowych transkodowania. Folder musi by\u0107 zapisywany.", - "HeaderSelectImagesByNamePathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 do twoich pozycji poprzez nazw\u0119 folderu. Folder musi by\u0107 zapisywany.", - "HeaderSelectMetadataPathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 w kt\u00f3rej chcesz przechowywa\u0107 metadane. Folder musi by\u0107 zapisywany.", - "HeaderSelectChannelDownloadPath": "Wybierz \u015acie\u017ck\u0119 Pobierania Kana\u0142\u00f3w", - "HeaderSelectChannelDownloadPathHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 do u\u017cycia dla zapisywania plik\u00f3w cache kana\u0142\u00f3w. Folder musi by\u0107 zapisywany.", - "OptionNewCollection": "Nowy...", - "ButtonAdd": "Dodaj", - "ButtonRemove": "Usu\u0144", - "LabelChapterDownloaders": "Podbieracze rozdzia\u0142\u00f3w:", - "LabelChapterDownloadersHelp": "W\u0142\u0105cz i okre\u015bl swoje preferowane podbieracze rozdzia\u0142\u00f3w w kolejno\u015bci priorytetu. Ni\u017cszy priorytet b\u0119dzie u\u017cyty do wype\u0142nienia brakuj\u0105cych informacji.", - "HeaderFavoriteAlbums": "Ulubione Albumy", - "HeaderLatestChannelMedia": "Ostatnie Pozycje Kana\u0142\u00f3w", - "ButtonOrganizeFile": "Organizuj Pliki", - "ButtonDeleteFile": "Usu\u0144 plik", - "HeaderOrganizeFile": "Organizuj pliki", - "HeaderDeleteFile": "Usu\u0144 plik", - "StatusSkipped": "Pomini\u0119to", - "StatusFailed": "B\u0142\u0105d", - "StatusSuccess": "Sukces", - "MessageFileWillBeDeleted": "Nast\u0119puj\u0105cy plik zostanie usuni\u0119ty:", - "MessageSureYouWishToProceed": "Czy na pewno chcesz kontynuowa\u0107?", - "MessageDuplicatesWillBeDeleted": "Dodatkowo, usuni\u0119te zostan\u0105 nast\u0119puj\u0105ce duplikaty:", - "MessageFollowingFileWillBeMovedFrom": "Plik zostanie przeniesiony z:", - "MessageDestinationTo": "do:", - "HeaderSelectWatchFolder": "Wska\u017c obserwowany folder:", - "HeaderSelectWatchFolderHelp": "Przegl\u0105daj lub wprowad\u017a \u015bcie\u017ck\u0119 do obserwowanego folderu. Musisz posiadac tam prawa zapisu.", - "OrganizePatternResult": "Wynik: {0}", - "AutoOrganizeError": "Bl\u0105d przy organizacji pliku", - "FileOrganizeManually": "Organizuj plik", - "ErrorOrganizingFileWithErrorCode": "Wyst\u0105pi\u0142 b\u0142\u0105d przy organizacji pliku. Kod b\u0142\u0119du: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Zamknij", - "MessageConfirmRestart": "Czy na pewno chcesz uruchomi\u0107 serwer Emby ponownie?", - "MessageConfirmShutdown": "Czy na pewno chcesz ca\u0142kowicie wy\u0142\u0105czy\u0107 serwer Emby?", - "ButtonUpdateNow": "Aktualizuj Teraz", - "ValueItemCount": "{0} pozycja", - "ValueItemCountPlural": "{0} pozycji", - "NewVersionOfSomethingAvailable": "Nowa wersja {0} jest dost\u0119pna!", - "VersionXIsAvailableForDownload": "Wersja {0} jest dost\u0119pna do \u015bci\u0105gni\u0119cia.", - "LabelVersionNumber": "Wersja {0}", - "LabelPlayMethodTranscoding": "Transkodowanie", - "LabelPlayMethodDirectStream": "Streaming bezpo\u015bredni", - "LabelPlayMethodDirectPlay": "Odtwarzanie bezpo\u015brednie", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Dost\u0119p lokalny: {0}", - "LabelRemoteAccessUrl": "Dost\u0119p zdalny: {0}", - "LabelRunningOnPort": "Pracuje na porcie http {0}.", - "LabelRunningOnPorts": "Pracuje na porcie http {0} oraz na porcie https {1}.", - "HeaderLatestFromChannel": "Najnowsze w {0}", - "LabelUnknownLanaguage": "Nieznany j\u0119zyk", - "HeaderCurrentSubtitles": "Aktualne napisy", - "MessageDownloadQueued": "\u015aci\u0105ganie zosta\u0142o zakolejkowane.", - "MessageAreYouSureDeleteSubtitles": "Jeste\u015b pewien \u017ce chcesz usun\u0105\u0107 ten plik z napisami?", - "ButtonRemoteControl": "Zdalne sterowanie", - "HeaderLatestTvRecordings": "Najnowsze nagrania", - "ButtonOk": "Ok", - "ButtonCancel": "Anuluj", - "ButtonRefresh": "Od\u015bwie\u017c", - "LabelCurrentPath": "Aktualna \u015bcie\u017cka:", - "HeaderSelectMediaPath": "Wybierz \u015bcie\u017ck\u0119 medi\u00f3w", - "HeaderSelectPath": "Wybierz \u015bcie\u017ck\u0119", - "ButtonNetwork": "Sie\u0107", - "MessageDirectoryPickerInstruction": "\u015acie\u017cki sieciowe mog\u0105 by\u0107 wpisane r\u0119cznie w wypadku niewykrycia wszystkich urz\u0105dze\u0144 przez przycisk \"Sie\u0107\". Na przyk\u0142ad: {0} lub {1}.", - "MessageDirectoryPickerBSDInstruction": "W wypadku BSD, nale\u017cy skonfigurowa\u0107 oprogramowanie FreeNAS aby umo\u017cliwi\u0107 serwerowi Emby dost\u0119p do danych.", - "MessageDirectoryPickerLinuxInstruction": "Dla Linuxa, musisz przyzna\u0107 systemowemu u\u017cytkownikowi Emby przynajmniej prawa odczytu dla magazyn\u00f3w pami\u0119ci.", - "HeaderMenu": "Menu", - "ButtonOpen": "Otw\u00f3rz", - "ButtonOpenInNewTab": "Otw\u00f3rz w nowej zak\u0142adce", - "ButtonShuffle": "Losowo", - "ButtonInstantMix": "Natychmiastowy mix", - "ButtonResume": "Wzn\u00f3w", - "HeaderScenes": "Sceny", - "HeaderAudioTracks": "\u015acie\u017cki Audio", - "HeaderLibraries": "Biblioteki", - "HeaderSubtitles": "Napisy", - "HeaderVideoQuality": "Jako\u015b\u0107 Wideo", - "MessageErrorPlayingVideo": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas odtwarzania wideo.", - "MessageEnsureOpenTuner": "Prosz\u0119 upewnij si\u0119 \u017ce otwarty tuner jest dost\u0119pny.", - "ButtonHome": "Dom", - "ButtonDashboard": "Panel G\u0142\u00f3wny", - "ButtonReports": "Raporty", - "ButtonMetadataManager": "Manager metadanych", - "HeaderTime": "Czas", - "HeaderName": "Nazwa", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Artysta albumu", - "HeaderArtist": "Artysta", - "LabelAddedOnDate": "Dodano {0}", - "ButtonStart": "Start", - "HeaderChannels": "Kana\u0142y", - "HeaderMediaFolders": "Foldery Medi\u00f3w", - "HeaderBlockItemsWithNoRating": "Blokuj zawarto\u015b\u0107 bez informacji o ratingu:", - "OptionBlockOthers": "Inne", - "OptionBlockTvShows": "Seriale", - "OptionBlockTrailers": "Zwiastuny", - "OptionBlockMusic": "Muzyka", - "OptionBlockMovies": "Filmy", - "OptionBlockBooks": "Ksi\u0105\u017cki", - "OptionBlockGames": "Gry", - "OptionBlockLiveTvPrograms": "Programy TV Na \u017bywo", - "OptionBlockLiveTvChannels": "Kana\u0142y TV Na \u017bywo", - "OptionBlockChannelContent": "Zawarto\u015b\u0107 Kana\u0142\u00f3w Internetowych", - "ButtonRevoke": "Odwo\u0142aj", - "MessageConfirmRevokeApiKey": "Czy jeste\u015b pewien \u017ce chcesz odwo\u0142a\u0107 klucz api? Po\u0142\u0105czenia aplikacji z Serwerem Emby zostan\u0105 przerwane.", - "HeaderConfirmRevokeApiKey": "Odwo\u0142aj Klucz Api", - "ValueContainer": "Kontener: {0}", - "ValueAudioCodec": "Kodek Audio: {0}", - "ValueVideoCodec": "Kodek Wideo: {0}", - "ValueCodec": "Kodek: {0}", - "ValueConditions": "Warunki: {0}", - "LabelAll": "Wszystkie", - "HeaderDeleteImage": "Usu\u0144 Obraz", - "MessageFileNotFound": "Nie znaleziono pliku.", - "MessageFileReadError": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas odczytywania pliku.", - "ButtonNextPage": "Nast\u0119pna Strona", - "ButtonPreviousPage": "Poprzednia Strona", - "ButtonMoveLeft": "Przesu\u0144 w lewo", - "ButtonMoveRight": "Przesu\u0144 w prawo", - "ButtonBrowseOnlineImages": "Przegl\u0105daj obrazy online", - "HeaderDeleteItem": "Usu\u0144 pozycje", - "ConfirmDeleteItem": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?", - "HeaderDeleteItems": "Usu\u0144 pliki", - "ConfirmDeleteItems": "Usuni\u0119cie tej pozycji usunie j\u0105 zar\u00f3wno z systemu plik\u00f3w jak i z biblioteki medi\u00f3w. Czy chcesz kontynuowa\u0107?", - "MessagePleaseEnterNameOrId": "Prosz\u0119 wprowad\u017a nazw\u0119 lub zewn\u0119trzne Id.", - "MessageValueNotCorrect": "Wprowadzona warto\u015b\u0107 nie jest prawid\u0142owa. Spr\u00f3buj ponownie.", - "MessageItemSaved": "Obiekt zapisany.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Prosz\u0119 zaakceptowa\u0107 warunki us\u0142ugi przed kontynuowaniem", - "OptionEnded": "Zako\u0144czony", - "OptionContinuing": "Dalej wy\u015bwietlane", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Ustawienia", - "ButtonUninstall": "Odinstaluj", - "HeaderEnabledFields": "Odblokuj pola", - "HeaderEnabledFieldsHelp": "Odznacz pole aby zablokowa\u0107 i zapobiec zmianie danych.", - "HeaderLiveTV": "Telewizja na \u017cywo", - "MissingLocalTrailer": "Brakuje trailera lokalnego.", - "MissingPrimaryImage": "Brakuje podstawowego obrazu.", - "MissingBackdropImage": "Brakuje obrazu t\u0142a.", - "MissingLogoImage": "Brakuje logo.", - "MissingEpisode": "Brakuje epizodu.", - "OptionScreenshots": "Zrzuty ekranu", - "OptionBackdrops": "T\u0142a tematyczne", - "OptionImages": "Obrazki", - "OptionKeywords": "S\u0142owa kluczowe", - "OptionTags": "Tagi", - "OptionStudios": "Studia", - "OptionName": "Nazwa", - "OptionOverview": "Podgl\u0105d", - "OptionGenres": "Gatunek", - "OptionParentalRating": "Ocena rodzicielska", - "OptionPeople": "Ludzie", - "OptionRuntime": "D\u0142ugo\u015b\u0107 filmu", - "OptionProductionLocations": "Lokalizacja produkcji", - "OptionBirthLocation": "Miejsce urodzenia", - "LabelAllChannels": "Wszystkie kana\u0142y", - "LabelLiveProgram": "NA \u017bYWO", - "LabelNewProgram": "NOWE", - "LabelPremiereProgram": "PREMIERA", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Zmie\u0144 typ zawarto\u015bci", - "HeaderChangeFolderTypeHelp": "Aby zmieni\u0107 typ, usu\u0144 bibliotek\u0119 a potem dodaj j\u0105 okre\u015blaj\u0105c nowy typ.", - "HeaderAlert": "Powiadomienie", - "MessagePleaseRestart": "Prosz\u0119 zresetowa\u0107 aby uko\u0144czy\u0107 aktualizacj\u0119.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Ukryj", - "MessageSettingsSaved": "Ustawienia zapisane.", - "ButtonSignOut": "Wyloguj si\u0119", - "ButtonMyProfile": "M\u00f3j profil", - "ButtonMyPreferences": "Moje preferencje", - "MessageBrowserDoesNotSupportWebSockets": "Ta przegl\u0105darka nie wspiera gniazd WWW. Dla lepszych wra\u017ce\u0144 wypr\u00f3buj nowsz\u0105, jak np: Chrome, Firefox, IE10+, Safari (iOS) lub Opera.", - "LabelInstallingPackage": "Instalowanie {0}", - "LabelPackageInstallCompleted": "Instalacja {0} zako\u0144czona.", - "LabelPackageInstallFailed": "Instalacja {0} nieudana.", - "LabelPackageInstallCancelled": "Instalacja {0} anulowana.", - "TabServer": "Serwer", - "TabUsers": "U\u017cytkownicy", - "TabLibrary": "Biblioteka", - "TabMetadata": "Metadane", - "TabDLNA": "DLNA", - "TabLiveTV": "TV Na \u017bywo", - "TabAutoOrganize": "Auto-Organizuj", - "TabPlugins": "Wtyczki", - "TabAdvanced": "Zaawansowane", - "TabHelp": "Pomoc", - "TabScheduledTasks": "Zaplanowane Zadania", - "ButtonFullscreen": "Pe\u0142ny ekran", - "ButtonAudioTracks": "\u015acie\u017cki Audio", - "ButtonSubtitles": "Napisy", - "ButtonScenes": "Sceny", - "ButtonQuality": "Jako\u015b\u0107", - "HeaderNotifications": "Powiadomienia", - "HeaderSelectPlayer": "Wybierz Odtworzacz", - "ButtonSelect": "Wybierz", - "ButtonNew": "Nowe", - "MessageInternetExplorerWebm": "Dla najlepszych rezultat\u00f3w z internet Explorer prosz\u0119 zainstaluj wtyczk\u0119 WebM playback.", - "HeaderVideoError": "B\u0142\u0105d Wideo", - "ButtonAddToPlaylist": "Dodaj do Playlisty", - "HeaderAddToPlaylist": "Dodaj do Playlisty", - "LabelName": "Imi\u0119:", - "ButtonSubmit": "Zatwierd\u017a", - "LabelSelectPlaylist": "Playlista:", - "OptionNewPlaylist": "Nowa playlista...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Widok", - "ButtonViewSeriesRecording": "Ogl\u0105daj nagrania seriali", - "ValueOriginalAirDate": "data pierwszej transmisji: {0}", - "ButtonRemoveFromPlaylist": "Usu\u0144 z playlisty", - "HeaderSpecials": "Specjalne", - "HeaderTrailers": "Zwiastuny", - "HeaderAudio": "Audio", - "HeaderResolution": "Rozdzielczo\u015b\u0107", - "HeaderVideo": "Wideo", - "HeaderRuntime": "D\u0142ugo\u015b\u0107 filmu", - "HeaderCommunityRating": "Ocena spo\u0142eczno\u015bci", - "HeaderPasswordReset": "Zresetuj has\u0142o", - "HeaderParentalRating": "Ocena rodzicielska", - "HeaderReleaseDate": "Data wydania", - "HeaderDateAdded": "Data dodania", - "HeaderSeries": "Seriale", - "HeaderSeason": "Sezon", - "HeaderSeasonNumber": "Numer sezonu", - "HeaderNetwork": "Sie\u0107", - "HeaderYear": "Rok", - "HeaderGameSystem": "Systemy Gier Wideo", - "HeaderPlayers": "Odtwarzacze:", - "HeaderEmbeddedImage": "Osadzony obraz", - "HeaderTrack": "\u015acie\u017cka", - "HeaderDisc": "P\u0142yta", - "OptionMovies": "Filmy", - "OptionCollections": "Kolekcje", - "OptionSeries": "Seriale", - "OptionSeasons": "Sezony", - "OptionEpisodes": "Odcinki", - "OptionGames": "Gry", - "OptionGameSystems": "Systemy Gier Wideo", - "OptionMusicArtists": "Arty\u015bci muzyczni", - "OptionMusicAlbums": "Albumy muzyczne", - "OptionMusicVideos": "Teledyski", - "OptionSongs": "Utwory", - "OptionHomeVideos": "Filmy domowe", - "OptionBooks": "Ksi\u0105\u017cki", - "OptionAdultVideos": "Filmy dla doros\u0142ych", - "ButtonUp": "G\u00f3ra", - "ButtonDown": "D\u00f3\u0142", - "LabelMetadataReaders": "Czytnik metadanych:", - "LabelMetadataReadersHelp": "Okre\u015bl sw\u00f3j priorytet dla \u017ar\u00f3de\u0142 metadanych. Pierwszy znaleziony plik b\u0119dzie odczytany.", - "LabelMetadataDownloaders": "Podbieracze metadanych:", - "LabelMetadataDownloadersHelp": "W\u0142\u0105cz i okre\u015bl priorytet preferowanych podbieraczy metadanych. Ni\u017cszy priorytet b\u0119dzie u\u017cyty do wype\u0142nienia brakuj\u0105cych informacji.", - "LabelMetadataSavers": "Zapisywacze metadanych:", - "LabelMetadataSaversHelp": "Wybierz formaty plik\u00f3w u\u017cywane do zapisywania metadanych.", - "LabelImageFetchers": "Pobieraj obrazy z:", - "LabelImageFetchersHelp": "W\u0142\u0105cz i uporz\u0105dkuj preferowane \u017ar\u00f3d\u0142a obraz\u00f3w wed\u0142ug ich priorytetu.", - "ButtonQueueAllFromHere": "Kolejkuj wszystko z tej lokalizacji", - "ButtonPlayAllFromHere": "Odtwarzaj wszystko z tej lokalizacji", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identyfikuj obiekt", - "PersonTypePerson": "Osoba", - "LabelTitleDisplayOrder": "Kolejno\u015b\u0107 wy\u015bwietlania:", - "OptionSortName": "Kr\u00f3tka nazwa:", - "OptionReleaseDate": "Data wydania", - "LabelSeasonNumber": "Numer sezonu:", - "LabelDiscNumber": "Numer dysku", - "LabelParentNumber": "Numer nadrz\u0119dny", - "LabelEpisodeNumber": "Numer odcinka:", - "LabelTrackNumber": "Numer utworu:", - "LabelNumber": "Numer:", - "LabelReleaseDate": "Data wydania:", - "LabelEndDate": "Data zako\u0144czenia:", - "LabelYear": "Rok:", - "LabelDateOfBirth": "Data urodzenia:", - "LabelBirthYear": "Rok urodzenia:", - "LabelBirthDate": "Data urodzenia:", - "LabelDeathDate": "Data \u015bmierci:", - "HeaderRemoveMediaLocation": "Usu\u0144 lokalizacj\u0119 medi\u00f3w", - "MessageConfirmRemoveMediaLocation": "Czy na pewno chcesz usun\u0105\u0107 t\u0119 lokacj\u0119?", - "HeaderRenameMediaFolder": "Zmie\u0144 nazw\u0119 folderu z mediami", - "LabelNewName": "Nowa nazwa:", - "HeaderAddMediaFolder": "Dodaj folder z mediami", - "HeaderAddMediaFolderHelp": "Nazwa (Filmy, Muzyka, TV, itp.):", - "HeaderRemoveMediaFolder": "Usu\u0144 folder z mediami", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "Nast\u0119puj\u0105ce lokalizacje medi\u00f3w zostan\u0105 usuni\u0119te z bibliioteki:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Czy na pewno chcesz usun\u0105\u0107 ten folder z biblioteki?", - "ButtonRename": "Zmie\u0144 nazw\u0119", - "ButtonChangeContentType": "Zmie\u0144 typ zawarto\u015bci", - "HeaderMediaLocations": "Lokalizacja medi\u00f3w", - "LabelContentTypeValue": "Typ zawarto\u015bci: {0}", - "LabelPathSubstitutionHelp": "Opcjonalnie: Zast\u0105pienie \u015bcie\u017cek mapuje lokalizacj\u0119 biblioteki do udzia\u0142\u00f3w sieciowych, kt\u00f3re klienci mog\u0105 u\u017cy\u0107 aby odtwarza\u0107 media bezpo\u015brednio.", - "FolderTypeUnset": "Nieokre\u015blone (zawarto\u015b\u0107 mieszana)", - "FolderTypeMovies": "Filmy", - "FolderTypeMusic": "Muzyka", - "FolderTypeAdultVideos": "Filmy dla doros\u0142ych", - "FolderTypePhotos": "Zdj\u0119cia", - "FolderTypeMusicVideos": "Teledyski", - "FolderTypeHomeVideos": "Filmy domowe", - "FolderTypeGames": "Gry", - "FolderTypeBooks": "Ksi\u0105\u017cki", - "FolderTypeTvShows": "TV", - "TabMovies": "Filmy", - "TabSeries": "Seriale", - "TabEpisodes": "Odcinki", - "TabTrailers": "Zwiastuny", - "TabGames": "Gry", - "TabAlbums": "Albumy", - "TabSongs": "Utwory", - "TabMusicVideos": "Teledyski", - "BirthPlaceValue": "Miejsce urodzenia: {0}", - "DeathDateValue": "Zmar\u0142y: {0}", - "BirthDateValue": "Urodzony: {0}", - "HeaderLatestReviews": "Ostatnie reenzje", - "HeaderPluginInstallation": "Instalacja wtyczki", - "MessageAlreadyInstalled": "Ta wersja jest ju\u017c zainstalowana", - "ValueReviewCount": "{0} Recenzji", - "MessageYouHaveVersionInstalled": "Masz aktualnie zainstalowan\u0105 wersj\u0119 {0}.", - "MessageTrialExpired": "Zako\u0144czy\u0142 si\u0119 okres pr\u00f3bny dla tej opcji", - "MessageTrialWillExpireIn": "Okres pr\u00f3bny dla tej opcji wyga\u015bnie za {0} dni.", - "MessageInstallPluginFromApp": "Wtyczka musi by\u0107 zainstalowana bezpo\u015brednio z aplikacji w kt\u00f3rej ma by\u0107 u\u017cywana.", - "ValuePriceUSD": "Cena: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "Jeste\u015b zarejestrowany jako u\u017cytkownik tej opcji i b\u0119dziesz m\u00f3g\u0142 kontynuowa\u0107 jej u\u017cywanie z aktywn\u0105 subskrypcj\u0105 Emby Premiere.", - "MessageChangeRecurringPlanConfirm": "Po zako\u0144czonej transakcji nale\u017cy anulowa\u0107 poprzednie powtarzaj\u0105ce si\u0119 donacje z konta PayPal. Dzi\u0119kujemy za wsparcie Emby.", - "ButtonDelete": "Skasuj", - "HeaderEmbyAccountAdded": "Dodano Konto Emby", - "MessageEmbyAccountAdded": "Konto Emby zosta\u0142o dodane dla tego u\u017cytkownika.", - "MessagePendingEmbyAccountAdded": "Konto Emby zosta\u0142o dodane dla tego u\u017cytkownika. Zostanie wys\u0142any email do w\u0142a\u015bciciela konta. Zaproszenie musi zosta\u0107 potwierdzone poprzez klikni\u0119cie linku w emailu.", - "HeaderEmbyAccountRemoved": "Konto Emby Usuni\u0119te", - "MessageEmbyAccontRemoved": "Konto Emby zosta\u0142o usuni\u0119te dla tego u\u017cytkownika.", - "TooltipLinkedToEmbyConnect": "Po\u0142\u0105czono z Emby Connect", - "HeaderUnrated": "Nieokre\u015blone", - "ValueDiscNumber": "P\u0142yta {0}", - "HeaderUnknownDate": "Nieznana Data", - "HeaderUnknownYear": "Nieznany Rok", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Odtwarzaj zewn\u0119trznym odtwarzaczem", - "HeaderSelectExternalPlayer": "Wybierz zewn\u0119trzny Odtwarzacz", - "HeaderExternalPlayerPlayback": "Odtwarzanie na zewn\u0119trznym Odtwarzaczu", - "ButtonImDone": "Sko\u0144czy\u0142em", - "OptionWatched": "Obej\u017cane", - "OptionUnwatched": "Nie obej\u017cane", - "ExternalPlayerPlaystateOptionsHelp": "Okre\u015bl jak chcesz wznawia\u0107 to wideo nast\u0119pnym razem.", - "LabelMarkAs": "Oznacz jako:", - "OptionInProgress": "W trakcie", - "LabelResumePoint": "Punkt wznawiania:", - "ValueOneMovie": "1 film", - "ValueMovieCount": "{0} filmy", - "ValueOneTrailer": "1 zwiastun", - "ValueTrailerCount": "{0} zwiastuny", - "ValueOneSeries": "1 serial", - "ValueSeriesCount": "{0} seriale", - "ValueOneEpisode": "1 odcinek", - "ValueEpisodeCount": "{0} odcinki", - "ValueOneGame": "1 gra", - "ValueGameCount": "{0} gry", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albumy", - "ValueOneSong": "1 utw\u00f3r", - "ValueSongCount": "{0} utwory", - "ValueOneMusicVideo": "1 teledysk", - "ValueMusicVideoCount": "{0} teledyski", - "HeaderOffline": "Offline", - "HeaderUnaired": "Nie transmitowany", - "HeaderMissing": "Brakuj\u0105ce", - "ButtonWebsite": "Strona WWW", - "TooltipFavorite": "Ulubione", - "TooltipLike": "Lubie", - "TooltipDislike": "Nie Lubie", - "TooltipPlayed": "Odtworzone", - "ValueSeriesYearToPresent": "{0}-Obecnych", - "ValueAwards": "Nagrody: {0}", - "ValueBudget": "Bud\u017cet: {0}", - "ValueRevenue": "Zysk: {0}", - "ValuePremiered": "Premiera {0}", - "ValuePremieres": "Premiery {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studia: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Specjalny - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Linki: {0}", - "HeaderPeople": "Ludzie", - "HeaderCastAndCrew": "Obsada Aktorska & Inni", - "ValueArtist": "Artysta: {0}", - "ValueArtists": "Arty\u015bci: {0}", - "HeaderTags": "Tagi", - "MediaInfoCameraMake": "Marka aparatu", - "MediaInfoCameraModel": "Model aparatu", - "MediaInfoAltitude": "Wysoko\u015b\u0107", - "MediaInfoAperture": "Przys\u0142ona", - "MediaInfoExposureTime": "Czas ekspozycji", - "MediaInfoFocalLength": "Ogniskowa", - "MediaInfoOrientation": "Orientacja", - "MediaInfoIsoSpeedRating": "Czu\u0142o\u015b\u0107 ISO", - "MediaInfoLatitude": "Szeroko\u015b\u0107 geo.", - "MediaInfoLongitude": "D\u0142ugo\u015b\u0107 geo.", - "MediaInfoShutterSpeed": "Pr\u0119dko\u015b\u0107 migawki", - "MediaInfoSoftware": "Oprogramowanie", - "HeaderIfYouLikeCheckTheseOut": "Je\u015bli lubisz {0}, sprawd\u017a to...", - "HeaderPlotKeywords": "S\u0142owa Kluczowe Fabu\u0142y", - "HeaderMovies": "Filmy", - "HeaderAlbums": "Albumy", - "HeaderGames": "Gry", - "HeaderBooks": "Ksi\u0105\u017cki", - "HeaderEpisodes": "Odcinki", - "HeaderSeasons": "Sezony", - "HeaderTracks": "Utwory", - "HeaderItems": "Pozycje", - "HeaderOtherItems": "Inne pozycje", - "ButtonFullReview": "Pe\u0142na recenzja", - "ValueAsRole": "jako {0}", - "ValueGuestStar": "Go\u015b\u0107 specjalny", - "MediaInfoSize": "Rozmiar", - "MediaInfoPath": "\u015acie\u017cka", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Kontener", - "MediaInfoDefault": "Domy\u015blnie", - "MediaInfoForced": "Wymuszony", - "MediaInfoExternal": "Zewn\u0119trzny", - "MediaInfoTimestamp": "Znacznik czasu", - "MediaInfoPixelFormat": "Format pixeli", - "MediaInfoBitDepth": "G\u0142\u0119bia bitowa", - "MediaInfoSampleRate": "Pr\u00f3bkowanie", - "MediaInfoBitrate": "Przep\u0142ywno\u015b\u0107", - "MediaInfoChannels": "Kana\u0142y", - "MediaInfoLayout": "Wygl\u0105d", - "MediaInfoLanguage": "J\u0119zyk", - "MediaInfoCodec": "Kodek", - "MediaInfoCodecTag": "Tag kodeku", - "MediaInfoProfile": "Profil", - "MediaInfoLevel": "Poziom", - "MediaInfoAspectRatio": "Stosunek", - "MediaInfoResolution": "Rozdzielczo\u015b\u0107", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Wideo", - "MediaInfoStreamTypeSubtitle": "Napisy", - "MediaInfoStreamTypeEmbeddedImage": "Osadzony obraz", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Odtwarzanie", - "TabNotifications": "Powiadomienia", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Okre\u015bl w\u0142asn\u0105 \u015bcie\u017ck\u0119 intro", - "HeaderRateAndReview": "Oceny i Recenzje", - "HeaderThankYou": "Dzi\u0119kuje", - "MessageThankYouForYourReview": "Dzi\u0119kuje za recenzje", - "LabelYourRating": "Twoja ocena:", - "LabelFullReview": "Pe\u0142na recenzja:", - "LabelShortRatingDescription": "Kr\u00f3tkie podsumowanie oceny:", - "OptionIRecommendThisItem": "Polecam t\u0105 pozycje", - "WebClientTourContent": "Obejrzyj swoje niedawno dodane media, nast\u0119pne odcinki i wi\u0119cej. Zielone k\u00f3\u0142ka oznaczaj\u0105 jak wiele nie odtworzonych pozycji zosta\u0142o.", - "WebClientTourMovies": "Odtwarzaj filmy, zwiastuny i wiele wi\u0119cej z ka\u017cdego urz\u0105dzeni i przegl\u0105darki", - "WebClientTourMouseOver": "zatrzymaj mysz nad plakatem aby uzyska\u0107 szybk\u0105 informacj\u0119", - "WebClientTourTapHold": "Naci\u015bnij i przytrzymaj lub kliknij prawym dla menu kontekstowego", - "WebClientTourMetadataManager": "Kliknij edytuj aby otworzy\u0107 managera metadanych", - "WebClientTourPlaylists": "\u0141atwo tw\u00f3rz playlisty i natychmiastowe mix-y i odtwarzaj je na dowolnym urz\u0105dzeniu", - "WebClientTourCollections": "Tw\u00f3rz kolekcje film\u00f3w i grupuj je w box set-y", - "WebClientTourUserPreferences1": "Preferencje u\u017cytkownika pozwalaj\u0105 ci na dostosowywanie sposobu w jaki biblioteka prezentowana jest na wszystkich aplikacjach Emby", - "WebClientTourUserPreferences2": "Konfiguruj swoje ustawienia j\u0119zyka dla audio i napis\u00f3w dla wszystkich swoich aplikacji Emby", - "WebClientTourUserPreferences3": "Dostosuj stron\u0119 g\u0142\u00f3wn\u0105 klienta web do swoich upodoba\u0144", - "WebClientTourUserPreferences4": "Konfiguruj t\u0142a, tematy muzyczne i zewn\u0119trzne odtwarzacze", - "WebClientTourMobile1": "Ten klient web dzia\u0142a wspaniale na smartfonach i tabletach...", - "WebClientTourMobile2": "i \u0142atwo kontroluje inne urz\u0105dzenia i aplikacje Emby", - "WebClientTourMySync": "Synchronizuj swoje osobiste media do twoich urz\u0105dze\u0144 dla ogl\u0105dania offline.", - "MessageEnjoyYourStay": "Mi\u0142ego pobytu", - "DashboardTourDashboard": "Panel g\u0142\u00f3wny serwera pozwala ci na monitorowanie twojego serwera i u\u017cytkownik\u00f3w. Zawsze b\u0119dziesz wiedzia\u0142 co kto robi i gdzie si\u0119 znajduje.", - "DashboardTourHelp": "Pomoc w aplikacji dostarcza \u0142atwe guziki do otwierania stron wiki powi\u0105zanych z zawarto\u015bci\u0105 strony.", - "DashboardTourUsers": "\u0141atwo tw\u00f3rz konta u\u017cytkownik\u00f3w dla swoich przyjaci\u00f3\u0142 i rodziny, ka\u017cdy ze swoimi uprawnieniami, dost\u0119pem do biblioteki, ochron\u0105 rodzicielsk\u0105 i wi\u0119cej.", - "DashboardTourCinemaMode": "Tryb kina wnosi do\u015bwiadczenie kinowe prosto do twojego salonu z mo\u017cliwo\u015bci\u0105 odtwarzania zwiastun\u00f3w i w\u0142asnego intra przed g\u0142\u00f3wn\u0105 tre\u015bci\u0105.", - "DashboardTourChapters": "W\u0142\u0105cz generowanie obraz\u00f3w rozdzia\u0142\u00f3w dla twoich wideo dla \u0142adniejszej prezentacji podczas przegl\u0105dania.", - "DashboardTourSubtitles": "Automatycznie pobieraj napisy dla twoich wideo w dowolnym j\u0119zyku.", - "DashboardTourPlugins": "Zainstaluj wtyczki takie jak przegl\u0105darka kana\u0142\u00f3w internetowych, TV na \u017cywo, skanery metadanych i wiele wi\u0119cej.", - "DashboardTourNotifications": "Automatycznie wysy\u0142aj powiadomienia o zdarzeniach na serwerze do swoich urz\u0105dze\u0144 mobilnym, maila i wi\u0119cej.", - "DashboardTourScheduledTasks": "\u0141awo zarz\u0105dzaj d\u0142ugo trwaj\u0105cymi operacjami za pomoc\u0105 zaplanowanych zada\u0144. Decyduj kiedy s\u0105 uruchamiane i jak cz\u0119sto.", - "DashboardTourMobile": "Panel G\u0142\u00f3wny Emby dzia\u0142a \u015bwietnie na smartfonach i tabletach. Zarz\u0105dzaj swoim serwerem ze swojej d\u0142oni kiedykolwiek, gdziekolwiek.", - "DashboardTourSync": "Synchronizuj swoje osobiste media z swoimi urz\u0105dzeniami do ogl\u0105dania offline.", - "MessageRefreshQueued": "Od\u015bwie\u017cenie w kolejce", - "TabDevices": "Urz\u0105dzenia", - "TabExtras": "Dodatki", - "HeaderUploadImage": "Wy\u015blij obrazek", - "DeviceLastUsedByUserName": "Ostatnio u\u017cyte przez {0}", - "HeaderDeleteDevice": "Usu\u0144 urz\u0105dzenie", - "DeleteDeviceConfirmation": "Czy na pewno chcesz usun\u0105\u0107 to urz\u0105dzenie? Zostanie dodane ponownie po ponownym zalogowaniu si\u0119 na nim.", - "LabelEnableCameraUploadFor": "Odblokuj przesy\u0142anie z aparatu dla:", - "HeaderSelectUploadPath": "Wybierz \u015bcieszk\u0119 wysy\u0142ania", - "LabelEnableCameraUploadForHelp": "Przesy\u0142anie nast\u0105pi automatycznie w tle po zalogowaniu si\u0119do Emby.", - "ErrorMessageStartHourGreaterThanEnd": "Czas ko\u0144cowy musi by\u0107 wi\u0119kszy ni\u017c czas pocz\u0105tkowy.", - "ButtonLibraryAccess": "Dost\u0119p do biblioteki", - "ButtonParentalControl": "Ochrona Rodzicielska", - "HeaderInvitationSent": "Zaproszenie wys\u0142ane", - "MessageInvitationSentToUser": "Wiadomo\u015b\u0107 z pro\u017ab\u0105 o akceptacj\u0119 zaproszenia udost\u0119pniania zosta\u0142a wys\u0142ana do {0}.", - "MessageInvitationSentToNewUser": "Wiadomo\u015b\u0107 z pro\u017ab\u0105 o stworzenie konta Emby zosta\u0142a wys\u0142ana do {0}.", - "HeaderConnectionFailure": "B\u0142\u0105d po\u0142\u0105czenia", - "MessageUnableToConnectToServer": "Nie jeste\u015bmy w tej chwili w stanie po\u0142\u0105czy\u0107 si\u0119 z wybranym serwerem. Prosz\u0119 upewni\u0107 si\u0119, \u017ce dzia\u0142a i spr\u00f3bowa\u0107 ponownie.", - "ButtonSelectServer": "Wybierz serwer", - "MessagePluginConfigurationRequiresLocalAccess": "Aby skonfigurowa\u0107 ten plugin zaloguj si\u0119 bezpo\u015brednio do lokalnego serwera.", - "MessageLoggedOutParentalControl": "Dost\u0119p jest chwilowo zablokowany. Prosz\u0119 spr\u00f3bowa\u0107 p\u00f3\u017aniej.", - "DefaultErrorMessage": "Wyst\u0105pi\u0142 bl\u0105d podczas przetwarzania twojego rz\u0105dania. Prosz\u0119 spr\u00f3bowa\u0107 ponownie po\u017aniej.", - "ButtonAccept": "Akceptuj", - "ButtonReject": "Odrzu\u0107", - "HeaderForgotPassword": "Zapomnia\u0142e\u015b has\u0142o", - "MessageContactAdminToResetPassword": "Skontaktuj si\u0119 z administratorem systemu aby zresetowa\u0107 has\u0142o.", - "MessageForgotPasswordInNetworkRequired": "Spr\u00f3buj ponownie zainicjowa\u0107 reset has\u0142a, tym razem u\u017cywaj\u0105c swojej sieci domowej.", - "MessageForgotPasswordFileCreated": "Plik zawieraj\u0105cy instrukcje z dalszymi krokami zosta\u0142 utworzony na serwerze:", - "MessageForgotPasswordFileExpiration": "Numer PIN wyga\u015bnie za {0}.", - "MessageInvalidForgotPasswordPin": "Nieprawid\u0142owy lub wygas\u0142y PIN. Prosz\u0119 spr\u00f3bowa\u0107 ponownie.", - "MessagePasswordResetForUsers": "Has\u0142a nast\u0119puj\u0105cych u\u017cytkownik\u00f3w zosta\u0142y uzuni\u0119te. Aby si\u0119 zalogowa\u0107 prosz\u0119 u\u017cy\u0107 pustego has\u0142a.", - "HeaderInviteGuest": "Zapro\u015b go\u015bcia", - "ButtonLinkMyEmbyAccount": "Po\u0142\u0105cz moje konto teraz", - "MessageConnectAccountRequiredToInviteGuest": "Aby zaprasza\u0107 go\u015bci, musisz najpierw po\u0142\u0105czy\u0107 swoje konto Emby z tym serwerem.", - "ButtonSync": "Sync", - "SyncMedia": "Synchronizuj media", - "HeaderCancelSyncJob": "Anuluj synchronizacj\u0119", - "CancelSyncJobConfirmation": "Anulowanie synchronizacji spowoduje usuni\u0119cie medi\u00f3w z urz\u0105dzenia podczas kolejnej synchronizacji. Czy jeste\u015b pewien, \u017ce chcesz kontynuowa\u0107?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Wybierz urz\u0105dzenie do synchronizacji", - "MessageSyncJobCreated": "Utworzono zadanie synchronizacji.", - "LabelSyncTo": "Synchronizuj do:", - "LabelSyncJobName": "Nazwa zadania synchronizacji", - "LabelQuality": "Jako\u015b\u0107:", - "HeaderSettings": "Ustawienia", - "OptionAutomaticallySyncNewContent": "Automatycznie synchronizuj now\u0105 zawarto\u015b\u0107", - "OptionAutomaticallySyncNewContentHelp": "Nowododana zawarto\u015b\u0107 zostanie automatycznie zsynchronizowana z urz\u0105dzeniem.", - "OptionSyncUnwatchedVideosOnly": "Synchronizuj tylko nieobejrzane filmy", - "OptionSyncUnwatchedVideosOnlyHelp": "Tylko nieobejrzane filmy zostan\u0105 zsynchronizowane a obejrzane b\u0119d\u0105 sukcesywnie usuwane z urz\u0105dzenia.", - "LabelItemLimit": "Limit pozycji:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Zakolejkowano", - "SyncJobItemStatusConverting": "Konwertuj\u0119", - "SyncJobItemStatusTransferring": "Przenosz\u0119", - "SyncJobItemStatusSynced": "Zsynchronizowano", - "SyncJobItemStatusFailed": "B\u0142\u0105d", - "SyncJobItemStatusRemovedFromDevice": "Usu\u0144 z urz\u0105dzenia", - "SyncJobItemStatusCancelled": "Anulowano", - "LabelProfile": "Profil:", - "LabelBitrateMbps": "Przep\u0142ywno\u015b\u0107 (Mbps):", - "EmbyIntroDownloadMessage": "Aby pobra\u0107 i zainstalowa\u0107 serwer Emby odwied\u017a {0}.", - "ButtonNewServer": "Nowy serwer", - "ButtonSignInWithConnect": "Zaloguj si\u0119 z Emby Connect", - "HeaderNewServer": "Nowy Serwer", - "MyDevice": "Moje urz\u0105dzenie", - "ButtonRemote": "Zdalny", - "TabInfo": "Info", - "TabCast": "Obsada", - "TabScenes": "Sceny", - "HeaderUnlockApp": "Odblokuj aplikacj\u0119", - "HeaderUnlockSync": "Odblokuj synchronizacj\u0119 Emby", - "MessageUnlockAppWithPurchaseOrSupporter": "Odblokuj t\u0119 funkcj\u0119 ma\u0142\u0105, jednorazow\u0105 op\u0142at\u0105, albo wykupuj\u0105c\u0105c subskrypcj\u0119 Emby Premiere.", - "MessageUnlockAppWithSupporter": "Odblokuj t\u0119 funkcj\u0119 poprzez subskrypcj\u0119 Emby Premiere.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Serwis p\u0142atno\u015bci jest chwilowo niedost\u0119pny. Prosz\u0119 spr\u00f3bowa\u0107 p\u00f3\u017aniej.", - "MessagePleaseSignInLocalNetwork": "Przed kontynuowaniem upewnij si\u0119, \u017ce jeste\u015b po\u0142\u0105czony do sieci lokalnej przez Wifi lub kabel LAN.", - "ButtonUnlockWithPurchase": "Odblokuj zakupem", - "ButtonUnlockPrice": "Odblokuj {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "W\u0142\u0105cz pe\u0142en ekran", - "ButtonServer": "Serwer", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Biblioteka", - "HeaderMedia": "Media", - "ButtonInbox": "Skrzynka przychodz\u0105ca", - "HeaderAdvanced": "Zaawansowane", - "HeaderGroupVersions": "Wersja grupy", - "HeaderSaySomethingLike": "Powiedz co\u015b jak...", - "ButtonTryAgain": "Spr\u00f3buj ponownie", - "HeaderYouSaid": "Powiedzia\u0142e\u015b...", - "MessageWeDidntRecognizeCommand": "Przepraszamy, nie rozpoznali\u015bmy tej komendy.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "Nic nie znaleziono.", - "ButtonManageServer": "Zarz\u0105dzaj Serwerem", - "ButtonEditSubtitles": "Edytuj napisy", - "ButtonPreferences": "Preferencje", - "ButtonViewArtist": "Zobacz artyst\u00f3w", - "ButtonViewAlbum": "Zobacz album", - "ButtonEditImages": "Edytuj obrazy", - "ErrorMessagePasswordNotMatchConfirm": "Has\u0142o i potwierdzenie has\u0142a musz\u0105 by\u0107 takie same.", - "ErrorMessageUsernameInUse": "Nazwa u\u017cytkownika jest aktualnie zaj\u0119ta. Wybierz inna nazw\u0119 i spr\u00f3buj ponownie.", - "ErrorMessageEmailInUse": "Adres e-mail jest ju\u017c aktualnie w u\u017cyciu. Wprowad\u017a nowy adres e-mail i spr\u00f3buj ponownie lub u\u017cyj opcji przywracania has\u0142a.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Udost\u0119pnij", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Udost\u0119pnij", - "HeaderConfirm": "Potwierd\u017a", - "ButtonAdvancedRefresh": "Zaawansowane Od\u015bwie\u017canie", - "MessageConfirmDeleteTunerDevice": "Czy na pewno chcesz usun\u0105\u0107 to urz\u0105dzenie?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Usu\u0144 operatora", - "HeaderAddProvider": "Dodaj operatora", - "ErrorAddingTunerDevice": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawania dekodera telewizyjnego. Upewnij si\u0119, \u017ce masz do niego dost\u0119p i spr\u00f3buj ponownie.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Wypr\u00f3buj Emby Premiere", - "ButtonBecomeSupporter": "Kup Emby Premiere", - "ButtonClosePlayVideo": "Zamknij i odtwarzaj moje media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Synchronizacja rozpocz\u0119ta", - "OptionPoster": "Plakat", - "OptionPosterCard": "Plakat", - "OptionTimeline": "O\u015b czasu", - "OptionList": "Lista", - "OptionThumb": "Miniatura", - "OptionThumbCard": "Miniatura", - "OptionBanner": "Baner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Najlepsze pluginy", - "ButtonRecord": "Nagrywaj", - "ButtonOther": "Inne", - "HeaderSortBy": "Sortuj wed\u0142ug:", - "HeaderSortOrder": "Kolejno\u015b\u0107 sortowania:", - "OptionAscending": "Rosn\u0105co", - "OptionDescending": "Malej\u0105co", - "OptionNameSort": "Nazwa", - "OptionTvdbRating": "Rating Tvdb", - "OptionPremiereDate": "Data premiery", - "OptionImdbRating": "Ocena IMDb", - "OptionDatePlayed": "Data odtworzenia", - "OptionDateAdded": "Data dodania", - "OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144", - "ButtonDisconnect": "Roz\u0142\u0105czony", - "OptionAlbumArtist": "Artysta albumu", - "OptionArtist": "Artysta", - "OptionAlbum": "Album", - "OptionTrackName": "Nazwa utworu", - "OptionCommunityRating": "Ocena spo\u0142eczno\u015bci", - "ButtonSort": "Sortuj", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Domy\u015blny", - "ButtonFilter": "Filtr", - "OptionCriticRating": "Ocena krytyk\u00f3w", - "OptionVideoBitrate": "Bitrate Wideo", - "OptionMetascore": "Metawynik", - "OptionRevenue": "Doch\u00f3d", - "OptionBudget": "Bud\u017cet", - "ForAdditionalLiveTvOptions": "Dla wi\u0119kszej liczby dostawc\u00f3w telewizji, kliknij Zewn\u0119trzne Us\u0142ugi aby zobaczyc pozosta\u0142e opcje.", - "ButtonGuide": "Przewodnik", - "ButtonRecordedTv": "Nagrana telewizja", - "HeaderDisconnectFromPlayer": "Od\u0142\u0105czono od odtwarzacza", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Tak", - "ButtonNo": "Nie", - "ButtonRestorePreviousPurchase": "Przywr\u00f3\u0107 zakup", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "Dla Ciebie", - "ButtonLibrary": "Biblioteka", - "ButtonSearch": "Szukaj", - "ButtonNowPlaying": "Teraz odtwarzane", - "ButtonViewNewApp": "Zobacz now\u0105 aplikacj\u0119", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Nast\u0119pny", - "HeaderLatestMovies": "Ostatnie filmy", - "HeaderLatestEpisodes": "Ostanie odcinki", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "Adres e-mail", - "TextPleaseEnterYourEmailAddressForSubscription": "Prosz\u0119 wprowadzi\u0107 sw\u00f3j adres e-mail.", - "LoginDisclaimer": "Emby jest zaprojektowane tak, aby pomaga\u0107 w zarz\u0105dzaniu bibliotek\u0105 domow\u0105 - filmami, muzyk\u0105 czy zdj\u0119ciami. Zapoznaj si\u0119 z zasadami u\u017cytkowania. U\u017cywanie oprogramowania Emby wymaga pe\u0142nego zaakceptowania zasad.", - "TermsOfUse": "Zasady u\u017cytkowania", - "HeaderTryMultiSelect": "Wypr\u00f3buj multi-zaznaczanie", - "TryMultiSelectMessage": "Aby edytowa\u0107 kilka rzeczy naraz, po prostu kliknij i przytrzymaj jak\u0105kolwiek miniaturk\u0119 i zaznacz obiekty kt\u00f3rymi chesz zarz\u0105dza\u0107. To proste!", - "NumLocationsValue": "{0} folder\u00f3w", - "ButtonAddMediaLibrary": "Dodaj media do biblioteki", - "ButtonManageFolders": "Zarz\u0105dzaj folderami", - "HeaderTryDragAndDrop": "Wypr\u00f3buj Podnie\u015b i Upu\u015b\u0107", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Wypr\u00f3buj Microsoft Edge", - "MessageTryMicrosoftEdge": "Dla wi\u0119kszego komportu na Windows 10 wypr\u00f3buj now\u0105 przegl\u0105dark\u0119 Microsoft Edge.", - "HeaderTryModernBrowser": "Wypr\u00f3buj nowoczesn\u0105 przegl\u0105dark\u0119 www", - "MessageTryModernBrowser": "Dla lepszego u\u017cytkowania na systemie Windows, wypr\u00f3buj nowoczesne przegl\u0105darki jak Google Chrome, Firefox czy Opera.", - "ErrorAddingListingsToSchedulesDirect": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawanie sk\u0142adu do twojego konta Schedules Direct. Schedules Direct pozwala na limitowana ilo\u015b\u0107 sk\u0142ad\u00f3w na konto. Mo\u017ce by\u0107 wymagane zalogowanie si\u0119 na stron\u0119 Schedules Direct i usuni\u0119cie innych sk\u0142ad\u00f3w aby kontunuowa\u0107.", - "PleaseAddAtLeastOneFolder": "Prosz\u0119 dodaj przynajmniej jeden folder do tej listy poprzez klikni\u0119cie guzika Dodaj", - "ErrorAddingMediaPathToVirtualFolder": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas dodawania \u015bcie\u017cki z mediami. Prosz\u0119 upewnij si\u0119 \u017ce podana \u015bcie\u017cka jest prawid\u0142owa oraz czy Serwer Emby posiada dost\u0119p do lokalizacji.", - "ErrorRemovingEmbyConnectAccount": "Wyst\u0105pi\u0142 b\u0142\u0105d podczas usuwania konta Emby Connect. Prosz\u0119 upewnij si\u0119 \u017ce posiadasz aktywne po\u0142\u0105czenie z internetem i spr\u00f3buj ponownie.", - "ErrorAddingEmbyConnectAccount1": "There was an error adding the Emby Connect account. Have you created an Emby account? Sign up at {0}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Ulubieni arty\u015bci", - "HeaderFavoriteSongs": "Ulubione utwory", - "HeaderConfirmPluginInstallation": "Potwierd\u017a instalacj\u0119 pluginu", - "PleaseConfirmPluginInstallation": "Kliknij OK aby potwierdzi\u0107, i\u017c zapozna\u0142e\u015b si\u0119 z powy\u017cszym i chcesz zainstalowa\u0107 plugin.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Odtw\u00f3rz jedn\u0105 minut\u0119", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Tryb kinowy", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Lokalne od\u015bwierzenie", - "ButtonAddMissingData": "Dodaj tylko brakuj\u0105ce informacje", - "ButtonFullRefresh": "Pe\u0142ne od\u015bwierzenie", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/pt-BR.json b/dashboard-ui/strings/javascript/pt-BR.json deleted file mode 100644 index c0ab622510..0000000000 --- a/dashboard-ui/strings/javascript/pt-BR.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Ajustes salvos.", - "AddUser": "Adicionar Usu\u00e1rio", - "Users": "Usu\u00e1rios", - "Delete": "Excluir", - "Administrator": "Administrador", - "Password": "Senha", - "DeleteImage": "Excluir Imagem", - "MessageThankYouForSupporting": "Obrigado por colaborar com o Emby.", - "MessagePleaseSupportProject": "Por favor, colabore com o Emby.", - "DeleteImageConfirmation": "Deseja realmente excluir esta imagem?", - "FileReadCancelled": "A leitura do arquivo foi cancelada.", - "FileNotFound": "Arquivo n\u00e3o encontrado.", - "FileReadError": "Ocorreu um erro ao ler o arquivo.", - "DeleteUser": "Excluir Usu\u00e1rio", - "DeleteUserConfirmation": "Deseja realmente excluir este usu\u00e1rio?", - "PasswordResetHeader": "Redefinir Senha", - "PasswordResetComplete": "A senha foi redefinida.", - "PinCodeResetComplete": "O c\u00f3digo pin foi redefinido.", - "PasswordResetConfirmation": "Deseja realmente redefinir a senha?", - "PinCodeResetConfirmation": "Deseja realmente redefinir o c\u00f3digo pin?", - "HeaderPinCodeReset": "Redefinir C\u00f3digo Pin", - "PasswordSaved": "Senha salva.", - "PasswordMatchError": "A senha e a confirma\u00e7\u00e3o da senha devem ser iguais.", - "OptionRelease": "Vers\u00e3o Oficial", - "OptionBeta": "Beta", - "OptionDev": "Dev (Inst\u00e1vel)", - "UninstallPluginHeader": "Desinstalar Plugin", - "UninstallPluginConfirmation": "Deseja realmente desinstalar {0}?", - "NoPluginConfigurationMessage": "Este plugin n\u00e3o precisa ser configurado.", - "NoPluginsInstalledMessage": "N\u00e3o existem plugins instalados.", - "BrowsePluginCatalogMessage": "Explore nosso cat\u00e1logo de plugins para ver os dispon\u00edveis.", - "HeaderNewApiKey": "Nova Chave da Api", - "LabelAppName": "Nome do app", - "LabelAppNameExample": "Exemplo: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Conceda permiss\u00e3o \u00e0 aplica\u00e7\u00e3o de se comunicar com o Servidor Emby.", - "MessageKeyEmailedTo": "Chave enviada para {0}.", - "MessageKeysLinked": "Chaves unificadas.", - "HeaderConfirmation": "Confirma\u00e7\u00e3o", - "MessageKeyUpdated": "Obrigado. Sua chave do Emby Premiere foi atualizada.", - "MessageKeyRemoved": "Obrigado. Sua chave do Emby Premiere foi removida.", - "HeaderSupportTheTeam": "Colabore com o Time do Emby", - "TextEnjoyBonusFeatures": "Aproveite Funcionalidades Extras", - "TitleLiveTV": "TV ao Vivo", - "ButtonCancelSyncJob": "Cancelar Sincroniza\u00e7\u00e3o", - "HeaderAddTag": "Adicionar Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Selecionar visualiza\u00e7\u00e3o", - "TitleSync": "Sinc", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Selecionar Data", - "ServerUpdateNeeded": "Este Servidor Emby precisa ser atualizado. Para fazer download da vers\u00e3o mais recente, por favor visite {0}", - "ButtonIdentify": "Identificar", - "HeaderIdentifyItem": "Identificar Item", - "LabelRecurringDonationCanBeCancelledHelp": "Doa\u00e7\u00f5es recorrentes podem ser canceladas a qualquer momento dentro da conta do PayPal.", - "LabelFromHelp": "Exemplo: {0} (no servidor)", - "HeaderMyMedia": "Minha M\u00eddia", - "ButtonRemoveFromCollection": "Remover da Cole\u00e7\u00e3o", - "LabelAutomaticUpdateLevel": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica:", - "LabelAutomaticUpdateLevelForPlugins": "N\u00edvel de atualiza\u00e7\u00e3o autom\u00e1tica para plugins:", - "TitleNotifications": "Notifica\u00e7\u00f5es", - "ErrorLaunchingChromecast": "Ocorreu um erro ao iniciar o chromecast. Por favor verifique se seu dispositivo est\u00e1 conectado \u00e0 sua rede sem fio.", - "MessageErrorLoadingSupporterInfo": "Ocorreu um erro ao carregar a informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.", - "MessageLinkYourSupporterKey": "Associe sua chave do Emby Premiere com at\u00e9 {0} membros do Emby Connect para aproveitar o acesso gr\u00e1tis aos seguintes apps:", - "HeaderConfirmRemoveUser": "Remover Usu\u00e1rio", - "MessageConfirmRemoveConnectSupporter": "Deseja realmente remover os benef\u00edcios do Emby Premiere deste usu\u00e1rio?", - "ValueTimeLimitSingleHour": "Limite de tempo: 1 hora", - "ValueTimeLimitMultiHour": "Limite de tempo: {0} horas", - "HeaderUsers": "Usu\u00e1rios", - "PluginCategoryGeneral": "Geral", - "PluginCategoryContentProvider": "Provedores de Conte\u00fado", - "PluginCategoryScreenSaver": "Protetores de Tela", - "PluginCategoryTheme": "Temas", - "PluginCategorySync": "Sincroniza\u00e7\u00e3o", - "PluginCategorySocialIntegration": "Redes Sociais", - "PluginCategoryNotifications": "Notifica\u00e7\u00f5es", - "PluginCategoryMetadata": "Metadados", - "PluginCategoryLiveTV": "TV ao Vivo", - "PluginCategoryChannel": "Canais", - "HeaderSearch": "Busca", - "ValueDateCreated": "Data da cria\u00e7\u00e3o: {0}", - "LabelArtist": "Artista", - "LabelMovie": "Filme", - "LabelMusicVideo": "V\u00eddeo Musical", - "LabelEpisode": "Epis\u00f3dio", - "LabelSeries": "S\u00e9ries", - "LabelStopping": "Parando", - "LabelCancelled": "(cancelado)", - "LabelFailed": "(falhou)", - "ButtonHelp": "Ajuda", - "ButtonSave": "Salvar", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Enfileirado", - "SyncJobStatusConverting": "Convertendo", - "SyncJobStatusFailed": "Falhou", - "SyncJobStatusCancelled": "Cancelado", - "SyncJobStatusCompleted": "Sincronizado", - "SyncJobStatusReadyToTransfer": "Pronto para Transferir", - "SyncJobStatusTransferring": "Transferindo", - "SyncJobStatusCompletedWithError": "Sincronizado com erros", - "SyncJobItemStatusReadyToTransfer": "Pronto para Transferir", - "LabelCollection": "Cole\u00e7\u00e3o", - "HeaderAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o", - "HeaderNewCollection": "Nova Cole\u00e7\u00e3o", - "NewCollectionNameExample": "Exemplo: Cole\u00e7\u00e3o Star Wars", - "OptionSearchForInternetMetadata": "Buscar artwork e metadados na internet", - "LabelSelectCollection": "Selecione cole\u00e7\u00e3o:", - "HeaderDevices": "Dispositivos", - "ButtonScheduledTasks": "Tarefas Agendadas", - "MessageItemsAdded": "Itens adicionados", - "ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o", - "HeaderSelectCertificatePath": "Selecione o Caminho do Certificado", - "ConfirmMessageScheduledTaskButton": "Esta opera\u00e7\u00e3o normalmente \u00e9 executada automaticamente como uma tarefa agendada e n\u00e3o \u00e9 necess\u00e1ria nenhuma intera\u00e7\u00e3o manual. Para configurar a tarefa agendada, veja:", - "HeaderSupporterBenefit": "Um subscri\u00e7\u00e3o ativa do Emby Premiere fornece benef\u00edcios adicionais como acesso \u00e0 sincroniza\u00e7\u00e3o, plugins premium, conte\u00fado de canais da internet e mais. {0}Saiba mais{1}.", - "LabelSyncNoTargetsHelp": "Parece que voc\u00ea n\u00e3o possui nenhuma app que suporta sincroniza\u00e7\u00e3o.", - "HeaderWelcomeToProjectServerDashboard": "Bem vindo ao Painel do Servidor Emby", - "HeaderWelcomeToProjectWebClient": "Bem vindo ao Emby", - "ButtonTakeTheTour": "Fa\u00e7a o tour", - "HeaderWelcomeBack": "Bem-vindo novamente!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Fa\u00e7a o tour para ver as novidades", - "MessageNoSyncJobsFound": "Nenhuma tarefa de sincroniza\u00e7\u00e3o encontrada. Crie uma tarefa de sincroniza\u00e7\u00e3o usando os bot\u00f5es Sincroniza\u00e7\u00e3o encontrados na interface web.", - "HeaderLibraryAccess": "Acesso \u00e0 Biblioteca", - "HeaderChannelAccess": "Acesso ao Canal", - "HeaderDeviceAccess": "Acesso ao Dispositivo", - "HeaderSelectDevices": "Selecionar Dispositivos", - "ButtonCancelItem": "Cancelar item", - "ButtonQueueForRetry": "Enfileirar para tentar novamente", - "ButtonReenable": "Reativar", - "ButtonLearnMore": "Saiba mais", - "SyncJobItemStatusSyncedMarkForRemoval": "Marcado para remo\u00e7\u00e3o", - "LabelAbortedByServerShutdown": "(Abortada pelo desligamento do servidor)", - "LabelScheduledTaskLastRan": "\u00daltima execu\u00e7\u00e3o {0}, demorando {1}.", - "HeaderDeleteTaskTrigger": "Excluir Disparador da Tarefa", - "MessageDeleteTaskTrigger": "Deseja realmente excluir este disparador de tarefa?", - "MessageNoPluginsInstalled": "Voc\u00ea n\u00e3o possui plugins instalados.", - "MessageNoPluginsDueToAppStore": "Para gerenciar plugins, por favor use o app Emby web.", - "LabelVersionInstalled": "{0} instalado", - "LabelNumberReviews": "{0} Avalia\u00e7\u00f5es", - "LabelFree": "Gr\u00e1tis", - "HeaderTo": "Para", - "HeaderPlaybackError": "Erro na Reprodu\u00e7\u00e3o", - "MessagePlaybackErrorNotAllowed": "Voc\u00ea n\u00e3o est\u00e1 autorizado a reproduzir este conte\u00fado. Por favor, entre em contato com o administrador do sistema para mais detalhes.", - "MessagePlaybackErrorNoCompatibleStream": "N\u00e3o existem streams compat\u00edveis. Por favor, tente novamente mais tarde ou contate o administrador do sistema para mais detalhes.", - "MessagePlaybackErrorRateLimitExceeded": "Seu limite da taxa de reprodu\u00e7\u00e3o foi excedido. Por favor, entre em contato com o administrador do sistema para mais detalhes.", - "MessagePlaybackErrorPlaceHolder": "O conte\u00fado escolhido n\u00e3o \u00e9 reproduz\u00edvel neste dispositivo.", - "HeaderSelectAudio": "Selecione \u00c1udio", - "HeaderSelectSubtitles": "Selecione Legendas", - "ButtonMarkForRemoval": "Remover do dispositivo", - "ButtonUnmarkForRemoval": "Cancelar remo\u00e7\u00e3o do dispositivo", - "LabelDefaultStream": "(Padr\u00e3o)", - "LabelForcedStream": "(For\u00e7ada)", - "LabelDefaultForcedStream": "(Padr\u00e3o\/For\u00e7ada)", - "LabelUnknownLanguage": "Idioma desconhecido", - "MessageConfirmSyncJobItemCancellation": "Deseja realmente cancelar este item?", - "ButtonMute": "Mudo", - "ButtonUnmute": "Remover Mudo", - "ButtonStop": "Parar", - "ButtonNextTrack": "Pr\u00f3xima Faixa", - "ButtonPause": "Pausar", - "ButtonPlay": "Reproduzir", - "ButtonEdit": "Editar", - "ButtonQueue": "Adicionar \u00e0 fila", - "ButtonPlayTrailer": "Reproduzir trailer", - "ButtonPlaylist": "Lista de reprodu\u00e7\u00e3o", - "ButtonPreviousTrack": "Faixa Anterior", - "LabelEnabled": "Ativada", - "LabelDisabled": "Desativada", - "ButtonMoreInformation": "Mais informa\u00e7\u00f5es", - "LabelNoUnreadNotifications": "Nenhuma notifica\u00e7\u00e3o sem ler.", - "ButtonViewNotifications": "Ver notifica\u00e7\u00f5es", - "ButtonMarkTheseRead": "Marcar como lida", - "ButtonClose": "Fechar", - "LabelAllPlaysSentToPlayer": "Todas as reprodu\u00e7\u00f5es ser\u00e3o enviadas para o reprodutor selecionado.", - "MessageInvalidUser": "Nome de usu\u00e1rio ou senha inv\u00e1lidos. Por favor, tente novamente.", - "HeaderLoginFailure": "Falha no Login", - "HeaderAllRecordings": "Todas as Grava\u00e7\u00f5es", - "RecommendationBecauseYouLike": "Porque voc\u00ea gosta de {0}", - "RecommendationBecauseYouWatched": "Porque voc\u00ea assistiu {0}", - "RecommendationDirectedBy": "Dirigido por {0}", - "RecommendationStarring": "Estrelando {0}", - "HeaderConfirmRecordingCancellation": "Confirmar Cancelamento da Grava\u00e7\u00e3o", - "MessageConfirmRecordingCancellation": "Deseja realmente cancelar esta grava\u00e7\u00e3o?", - "MessageRecordingCancelled": "Grava\u00e7\u00e3o cancelada.", - "MessageRecordingScheduled": "Grava\u00e7\u00e3o agendada.", - "HeaderConfirmSeriesCancellation": "Confirmar Cancelamento da S\u00e9rie", - "MessageConfirmSeriesCancellation": "Deseja realmente cancelar esta s\u00e9rie?", - "MessageSeriesCancelled": "S\u00e9rie cancelada.", - "HeaderConfirmRecordingDeletion": "Confirmar Exclus\u00e3o da Grava\u00e7\u00e3o", - "MessageConfirmRecordingDeletion": "Deseja realmente excluir esta grava\u00e7\u00e3o?", - "MessageRecordingDeleted": "Grava\u00e7\u00e3o exclu\u00edda.", - "ButonCancelRecording": "Cancelar Grava\u00e7\u00e3o", - "MessageRecordingSaved": "Grava\u00e7\u00e3o salva.", - "OptionSunday": "Domingo", - "OptionMonday": "Segunda-feira", - "OptionTuesday": "Ter\u00e7a-feira", - "OptionWednesday": "Quarta-feira", - "OptionThursday": "Quinta-feira", - "OptionFriday": "Sexta-feira", - "OptionSaturday": "S\u00e1bado", - "OptionEveryday": "Todos os dias", - "OptionWeekend": "Fins-de-semana", - "OptionWeekday": "Dias da semana", - "HeaderConfirmDeletion": "Confirmar Exclus\u00e3o", - "MessageConfirmPathSubstitutionDeletion": "Deseja realmente excluir esta substitui\u00e7\u00e3o de caminho?", - "LiveTvUpdateAvailable": "(Atualiza\u00e7\u00e3o dispon\u00edvel)", - "LabelVersionUpToDate": "Atualizado!", - "ButtonResetTuner": "Reiniciar sintonizador", - "HeaderResetTuner": "Reiniciar Sintonizador", - "MessageConfirmResetTuner": "Deseja realmente reiniciar este sintonizador? Qualquer reprodutor ativo ser\u00e1 abruptamente parado.", - "ButtonCancelSeries": "Cancelar S\u00e9rie", - "HeaderSeriesRecordings": "Grava\u00e7\u00f5es de S\u00e9ries", - "LabelAnytime": "Qualquer hora", - "StatusRecording": "Gravando", - "StatusWatching": "Assistindo", - "StatusRecordingProgram": "Gravando {0}", - "StatusWatchingProgram": "Assistindo {0}", - "HeaderSplitMedia": "Separar M\u00eddia", - "MessageConfirmSplitMedia": "Deseja realmente dividir as fontes de m\u00eddia em itens separados?", - "HeaderError": "Erro", - "MessageChromecastConnectionError": "Seu receptor Chromecast n\u00e3o pode se conectar com seu Servidor Emby. Por favor, verifique suas conex\u00f5es e tente novamente.", - "MessagePleaseSelectOneItem": "Por favor selecione pelo menos um item.", - "MessagePleaseSelectTwoItems": "Por favor selecione pelo menos dois itens.", - "MessageTheSelectedItemsWillBeGrouped": "Os v\u00eddeos selecionados ser\u00e3o agrupados dentro de um item virtual. Os apps do Emby escolher\u00e3o automaticamente qual vers\u00e3o ser\u00e1 reproduzida com base na performance do dispositivo e da rede. Deseja realmente continuar?", - "HeaderResume": "Retomar", - "HeaderMyViews": "Minhas Visualiza\u00e7\u00f5es", - "HeaderLibraryFolders": "Pastas de M\u00eddias", - "HeaderLatestMedia": "M\u00eddias Recentes", - "ButtonMoreItems": "Mais...", - "ButtonMore": "Mais", - "HeaderFavoriteMovies": "Filmes Favoritos", - "HeaderFavoriteShows": "S\u00e9ries Favoritas", - "HeaderFavoriteEpisodes": "Epis\u00f3dios Favoritos", - "HeaderFavoriteGames": "Jogos Favoritos", - "HeaderRatingsDownloads": "Avalia\u00e7\u00e3o \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirmar Exclus\u00e3o do Perfil", - "MessageConfirmProfileDeletion": "Deseja realmente excluir este perfil?", - "HeaderSelectServerCachePath": "Selecione o Caminho do Cache do Servidor", - "HeaderSelectTranscodingPath": "Selecione o Caminho Tempor\u00e1rio da Transcodifica\u00e7\u00e3o", - "HeaderSelectImagesByNamePath": "Selecione o Caminho da Images By Name", - "HeaderSelectMetadataPath": "Selecione o Caminho dos Metadados", - "HeaderSelectServerCachePathHelp": "Localize ou digite o caminho para armazenar os arquivos de cache do servidor. A pasta deve permitir grava\u00e7\u00e3o.", - "HeaderSelectTranscodingPathHelp": "Localize ou digite o caminho para usar para arquivos tempor\u00e1rios de transcodifica\u00e7\u00e3o. A pasta deve ser grav\u00e1vel.", - "HeaderSelectImagesByNamePathHelp": "Localize ou digite o caminho de sua pasta de itens por nome. A pasta deve ser grav\u00e1vel.", - "HeaderSelectMetadataPathHelp": "Localize ou digite o caminho que voc\u00ea gostaria de armazenar os metadados. A pasta deve ser grav\u00e1vel.", - "HeaderSelectChannelDownloadPath": "Selecione o Caminho para Download do Canal.", - "HeaderSelectChannelDownloadPathHelp": "Localize ou digite o caminho a ser usado para armazenamento de arquivos de cache do canal. A pasta deve permitir escrita.", - "OptionNewCollection": "Nova...", - "ButtonAdd": "Adicionar", - "ButtonRemove": "Remover", - "LabelChapterDownloaders": "Downloaders de cap\u00edtulos:", - "LabelChapterDownloadersHelp": "Habilite e classifique seus downloaders de cap\u00edtulos preferidos em ordem de prioridade. Downloaders de menor prioridade s\u00f3 ser\u00e3o usados para preencher informa\u00e7\u00f5es que ainda n\u00e3o existam.", - "HeaderFavoriteAlbums": "\u00c1lbuns Favoritos", - "HeaderLatestChannelMedia": "Itens de Canais Recentes", - "ButtonOrganizeFile": "Organizar Arquivo", - "ButtonDeleteFile": "Excluir Arquivo", - "HeaderOrganizeFile": "Organizar Arquivo", - "HeaderDeleteFile": "Excluir Arquivo", - "StatusSkipped": "Ignorada", - "StatusFailed": "Com Falha", - "StatusSuccess": "Sucesso", - "MessageFileWillBeDeleted": "Ser\u00e1 exclu\u00eddo o seguinte arquivo:", - "MessageSureYouWishToProceed": "Deseja realmente prosseguir?", - "MessageDuplicatesWillBeDeleted": "Adicionalmente as seguintes c\u00f3pias ser\u00e3o exclu\u00eddas:", - "MessageFollowingFileWillBeMovedFrom": "Os seguintes arquivos ser\u00e3o movidos de:", - "MessageDestinationTo": "para:", - "HeaderSelectWatchFolder": "Escolha Pasta para Monitora\u00e7\u00e3o", - "HeaderSelectWatchFolderHelp": "Localize ou digite o caminho para a sua pasta de monitora\u00e7\u00e3o. A pasta deve permitir escrita.", - "OrganizePatternResult": "Resultado: {0}", - "AutoOrganizeError": "Erro ao Organizar o Arquivo", - "FileOrganizeManually": "Organizar Arquivo", - "ErrorOrganizingFileWithErrorCode": "Ocorreu um erro ao organizar o arquivo. C\u00f3digo do erro: {0}.", - "HeaderRestart": "Reiniciar", - "HeaderShutdown": "Desligar", - "MessageConfirmRestart": "Deseja realmente reiniciar o Servidor Emby?", - "MessageConfirmShutdown": "Deseja realmente desligar o Servidor Emby?", - "ButtonUpdateNow": "Atualizar Agora", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} itens", - "NewVersionOfSomethingAvailable": "Est\u00e1 dispon\u00edvel uma nova vers\u00e3o de {0}!", - "VersionXIsAvailableForDownload": "A vers\u00e3o {0} est\u00e1 dispon\u00edvel para download.", - "LabelVersionNumber": "Vers\u00e3o {0}", - "LabelPlayMethodTranscoding": "Transcodifica\u00e7\u00e3o", - "LabelPlayMethodDirectStream": "Streaming Direto", - "LabelPlayMethodDirectPlay": "Reprodu\u00e7\u00e3o Direta", - "LabelAudioCodec": "\u00c1udio: {0}", - "LabelVideoCodec": "V\u00eddeo: {0}", - "LabelLocalAccessUrl": "Acesso local: {0}", - "LabelRemoteAccessUrl": "Acesso Remoto: {0}", - "LabelRunningOnPort": "Executando na porta http {0}.", - "LabelRunningOnPorts": "Executando na porta http {0} e porta https {1}.", - "HeaderLatestFromChannel": "Mais recentes de {0}", - "LabelUnknownLanaguage": "Idioma desconhecido", - "HeaderCurrentSubtitles": "Legendas Atuais", - "MessageDownloadQueued": "O download foi enfileirado.", - "MessageAreYouSureDeleteSubtitles": "Deseja realmente excluir este arquivo de legendas?", - "ButtonRemoteControl": "Controle Remoto", - "HeaderLatestTvRecordings": "\u00daltimas Grava\u00e7\u00f5es", - "ButtonOk": "Ok", - "ButtonCancel": "Cancelar", - "ButtonRefresh": "Atualizar", - "LabelCurrentPath": "Caminho atual:", - "HeaderSelectMediaPath": "Selecionar o Caminho da M\u00eddia", - "HeaderSelectPath": "Selecione o Caminho", - "ButtonNetwork": "Rede", - "MessageDirectoryPickerInstruction": "Os caminhos da rede podem ser digitados manualmente caso o bot\u00e3o de Rede n\u00e3o consiga localizar seus dispositivos. Por exemplo, {0} ou {1}.", - "MessageDirectoryPickerBSDInstruction": "Para BSD, voc\u00ea precisar\u00e1 configurar o storage dentro de seu Jail do FreeNAS para permitir que o Emby tenha acesso a ele.", - "MessageDirectoryPickerLinuxInstruction": "Para Linux, voc\u00ea deve permitir que o usu\u00e1rio de sistema do Emby tenha ao menos acesso de leitura no storage.", - "HeaderMenu": "Menu", - "ButtonOpen": "Abrir", - "ButtonOpenInNewTab": "Abrir em uma nova aba", - "ButtonShuffle": "Aleat\u00f3rio", - "ButtonInstantMix": "Mix inst\u00e2ntaneo", - "ButtonResume": "Retomar", - "HeaderScenes": "Cenas", - "HeaderAudioTracks": "Faixas de Audio", - "HeaderLibraries": "Bibliotecas", - "HeaderSubtitles": "Legendas", - "HeaderVideoQuality": "Qualidade do V\u00eddeo", - "MessageErrorPlayingVideo": "Houve um erro na reprodu\u00e7\u00e3o do v\u00eddeo.", - "MessageEnsureOpenTuner": "Por favor, cetifique-se que existe um sintonizador aberto.", - "ButtonHome": "In\u00edcio", - "ButtonDashboard": "Painel", - "ButtonReports": "Relat\u00f3rios", - "ButtonMetadataManager": "Gerenciador de Metadados", - "HeaderTime": "Tempo", - "HeaderName": "Nome", - "HeaderAlbum": "\u00c1lbum", - "HeaderAlbumArtist": "Artista do \u00c1lbum", - "HeaderArtist": "Artista", - "LabelAddedOnDate": "Adicionado {0}", - "ButtonStart": "Iniciar", - "HeaderChannels": "Canais", - "HeaderMediaFolders": "Pastas de M\u00eddia", - "HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o:", - "OptionBlockOthers": "Outros", - "OptionBlockTvShows": "S\u00e9ries de TV", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "M\u00fasica", - "OptionBlockMovies": "Filmes", - "OptionBlockBooks": "Livros", - "OptionBlockGames": "Jogos", - "OptionBlockLiveTvPrograms": "Programas de TV ao vivo", - "OptionBlockLiveTvChannels": "Canais de TV ao vivo", - "OptionBlockChannelContent": "Conte\u00fado do Canal de Internet", - "ButtonRevoke": "Revogar", - "MessageConfirmRevokeApiKey": "Deseja realmente revogar esta chave de api? A conex\u00e3o da aplica\u00e7\u00e3o com o Servidor Emby ser\u00e1 abruptamente encerrada.", - "HeaderConfirmRevokeApiKey": "Revogar Chave da Api", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Codec de \u00c1udio: {0}", - "ValueVideoCodec": "Codec de V\u00eddeo: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Condi\u00e7\u00f5es: {0}", - "LabelAll": "Todos", - "HeaderDeleteImage": "Excluir Imagem", - "MessageFileNotFound": "Arquivo n\u00e3o encontrado.", - "MessageFileReadError": "Ocorreu um erro ao ler este arquivo.", - "ButtonNextPage": "Pr\u00f3xima P\u00e1gina", - "ButtonPreviousPage": "P\u00e1gina Anterior", - "ButtonMoveLeft": "Mover \u00e0 esquerda", - "ButtonMoveRight": "Mover \u00e0 direita", - "ButtonBrowseOnlineImages": "Procurar imagens online", - "HeaderDeleteItem": "Excluir item", - "ConfirmDeleteItem": "Excluir este item o excluir\u00e1 do sistema de arquivos e tamb\u00e9m da biblioteca de m\u00eddias. Deseja realmente continuar?", - "HeaderDeleteItems": "Excluir Itens", - "ConfirmDeleteItems": "Ao excluir estes itens voc\u00ea os excluir\u00e1 do sistema de arquivos e de sua biblioteca de m\u00eddias. Deseja realmente continuar?", - "MessagePleaseEnterNameOrId": "Por favor, digite um nome ou Id externo.", - "MessageValueNotCorrect": "O valor digitado n\u00e3o est\u00e1 correto. Por favor, tente novamente.", - "MessageItemSaved": "Item salvo.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Por favor, aceite os termos de servi\u00e7o antes de continuar.", - "OptionEnded": "Finalizada", - "OptionContinuing": "Em Exibi\u00e7\u00e3o", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Ajustes", - "ButtonUninstall": "Desinstalar", - "HeaderEnabledFields": "Campos Ativados", - "HeaderEnabledFieldsHelp": "Desmarque um campo para bloque\u00e1-lo e evitar que seus dados sejam alterados.", - "HeaderLiveTV": "TV ao Vivo", - "MissingLocalTrailer": "Faltando trailer local.", - "MissingPrimaryImage": "Faltando imagem da capa.", - "MissingBackdropImage": "Faltando imagem de fundo.", - "MissingLogoImage": "Faltando imagem do logo.", - "MissingEpisode": "Faltando epis\u00f3dio.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Imagens de Fundo", - "OptionImages": "Imagens", - "OptionKeywords": "Palavras-chave", - "OptionTags": "Tags", - "OptionStudios": "Est\u00fadios", - "OptionName": "Nome", - "OptionOverview": "Descri\u00e7\u00e3o", - "OptionGenres": "G\u00eaneros", - "OptionParentalRating": "Classifica\u00e7\u00e3o Parental", - "OptionPeople": "Pessoas", - "OptionRuntime": "Dura\u00e7\u00e3o", - "OptionProductionLocations": "Locais de Produ\u00e7\u00e3o", - "OptionBirthLocation": "Local de Nascimento", - "LabelAllChannels": "Todos os canais", - "LabelLiveProgram": "AO VIVO", - "LabelNewProgram": "NOVO", - "LabelPremiereProgram": "ESTR\u00c9IA", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Alterar Tipo do Conte\u00fado", - "HeaderChangeFolderTypeHelp": "Para alterar o tipo, por favor remova e reconstrua a biblioteca com o novo tipo.", - "HeaderAlert": "Alerta", - "MessagePleaseRestart": "Por favor, reinicie para finalizar a atualiza\u00e7\u00e3o.", - "ButtonRestart": "Reiniciar", - "MessagePleaseRefreshPage": "Por favor, atualize esta p\u00e1gina para receber novas atualiza\u00e7\u00f5es do servidor Emby.", - "ButtonHide": "Ocultar", - "MessageSettingsSaved": "Ajustes salvos.", - "ButtonSignOut": "Sair", - "ButtonMyProfile": "Meu Perfil", - "ButtonMyPreferences": "Minhas Prefer\u00eancias", - "MessageBrowserDoesNotSupportWebSockets": "Este navegador n\u00e3o suporta web sockets. Para uma melhor experi\u00eancia, tente um navegador mais atual como o Chrome, Firefox, IE10+, Safari (iOS) ou Opera.", - "LabelInstallingPackage": "Instalando {0}", - "LabelPackageInstallCompleted": "Instala\u00e7\u00e3o de {0} conclu\u00edda.", - "LabelPackageInstallFailed": "Instala\u00e7\u00e3o de {0} falhou.", - "LabelPackageInstallCancelled": "Instala\u00e7\u00e3o de {0} cancelada.", - "TabServer": "Servidor", - "TabUsers": "Usu\u00e1rios", - "TabLibrary": "Biblioteca", - "TabMetadata": "Metadados", - "TabDLNA": "DLNA", - "TabLiveTV": "TV ao Vivo", - "TabAutoOrganize": "Auto-Organizar", - "TabPlugins": "Plugins", - "TabAdvanced": "Avan\u00e7ado", - "TabHelp": "Ajuda", - "TabScheduledTasks": "Tarefas Agendadas", - "ButtonFullscreen": "Tela Cheia", - "ButtonAudioTracks": "Faixas de \u00c1udio", - "ButtonSubtitles": "Legendas", - "ButtonScenes": "Cenas", - "ButtonQuality": "Qualidade", - "HeaderNotifications": "Avisos", - "HeaderSelectPlayer": "Selecione onde Reproduzir", - "ButtonSelect": "Selecionar", - "ButtonNew": "Novo", - "MessageInternetExplorerWebm": "Para melhores resultados com o Internet Explorer, por favor instale o plugin de reprodu\u00e7\u00e3o WebM.", - "HeaderVideoError": "Erro de V\u00eddeo", - "ButtonAddToPlaylist": "Adicionar \u00e0 lista de reprodu\u00e7\u00e3o", - "HeaderAddToPlaylist": "Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o", - "LabelName": "Nome:", - "ButtonSubmit": "Enviar", - "LabelSelectPlaylist": "Lista de Reprodu\u00e7\u00e3o:", - "OptionNewPlaylist": "Nova lista de reprodu\u00e7\u00e3o", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Visualizar", - "ButtonViewSeriesRecording": "Visualizar grava\u00e7\u00e3o de s\u00e9ries", - "ValueOriginalAirDate": "Data original de exibi\u00e7\u00e3o: {0}", - "ButtonRemoveFromPlaylist": "Remover da lista de reprodu\u00e7\u00e3o", - "HeaderSpecials": "Especiais", - "HeaderTrailers": "Trailers", - "HeaderAudio": "\u00c1udio", - "HeaderResolution": "Resolu\u00e7\u00e3o", - "HeaderVideo": "V\u00eddeo", - "HeaderRuntime": "Dura\u00e7\u00e3o", - "HeaderCommunityRating": "Avalia\u00e7\u00e3o da Comunidade", - "HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha", - "HeaderParentalRating": "Classifica\u00e7\u00e3o parental", - "HeaderReleaseDate": "Data de lan\u00e7amento", - "HeaderDateAdded": "Data da adi\u00e7\u00e3o", - "HeaderSeries": "S\u00e9rie", - "HeaderSeason": "Temporada", - "HeaderSeasonNumber": "N\u00famero da temporada", - "HeaderNetwork": "Rede de TV", - "HeaderYear": "Ano", - "HeaderGameSystem": "Sistema do jogo", - "HeaderPlayers": "Jogadores", - "HeaderEmbeddedImage": "Imagem incorporada", - "HeaderTrack": "Faixa", - "HeaderDisc": "Disco", - "OptionMovies": "Filmes", - "OptionCollections": "Cole\u00e7\u00f5es", - "OptionSeries": "S\u00e9ries", - "OptionSeasons": "Temporadas", - "OptionEpisodes": "Epis\u00f3dios", - "OptionGames": "Jogos", - "OptionGameSystems": "Sistemas de jogos", - "OptionMusicArtists": "Artistas da M\u00fasica", - "OptionMusicAlbums": "\u00c1lbuns de m\u00fasica", - "OptionMusicVideos": "V\u00eddeos Musicais", - "OptionSongs": "M\u00fasicas", - "OptionHomeVideos": "V\u00eddeos caseiros", - "OptionBooks": "Livros", - "OptionAdultVideos": "V\u00eddeos adultos", - "ButtonUp": "Subir", - "ButtonDown": "Descer", - "LabelMetadataReaders": "Leitores de metadados:", - "LabelMetadataReadersHelp": "Classifique por ordem de prioridade suas fontes de metadados locais preferidas. O primeiro arquivo encontrado ser\u00e1 lido.", - "LabelMetadataDownloaders": "Downloaders de metadados:", - "LabelMetadataDownloadersHelp": "Ative e classifique por ordem de prioridade seus downloaders de metadados preferidos. Downloaders com prioridade mais baixa s\u00f3 ser\u00e3o usados para baixar informa\u00e7\u00f5es que ainda n\u00e3o existam.", - "LabelMetadataSavers": "Gravadores de metadados:", - "LabelMetadataSaversHelp": "Escolha os formatos de arquivos nos quais deseja gravar seus metadados.", - "LabelImageFetchers": "Buscadores de imagem:", - "LabelImageFetchersHelp": "Ative e classifique por ordem de prioridade seus buscadores de imagem preferidos.", - "ButtonQueueAllFromHere": "Enfileirar todas a partir daqui", - "ButtonPlayAllFromHere": "Reproduzir todas a partir daqui", - "LabelDynamicExternalId": "Id de {0}:", - "HeaderIdentify": "Identificar Item", - "PersonTypePerson": "Pessoa", - "LabelTitleDisplayOrder": "Ordem de exibi\u00e7\u00e3o do t\u00edtulo: ", - "OptionSortName": "Nome para ordena\u00e7\u00e3o", - "OptionReleaseDate": "Data de lan\u00e7amento", - "LabelSeasonNumber": "N\u00famero da temporada:", - "LabelDiscNumber": "N\u00famero do disco", - "LabelParentNumber": "N\u00famero do superior", - "LabelEpisodeNumber": "N\u00famero do epis\u00f3dio:", - "LabelTrackNumber": "N\u00famero da faixa:", - "LabelNumber": "N\u00famero:", - "LabelReleaseDate": "Data do lan\u00e7amento:", - "LabelEndDate": "Data final:", - "LabelYear": "Ano:", - "LabelDateOfBirth": "Data de nascimento:", - "LabelBirthYear": "Ano de nascimento:", - "LabelBirthDate": "Data de nascimento:", - "LabelDeathDate": "Data da morte:", - "HeaderRemoveMediaLocation": "Remover Localiza\u00e7\u00e3o da M\u00eddia", - "MessageConfirmRemoveMediaLocation": "Deseja realmente remover esta localiza\u00e7\u00e3o?", - "HeaderRenameMediaFolder": "Renomear Pasta de M\u00eddia", - "LabelNewName": "Novo nome:", - "HeaderAddMediaFolder": "Adicionar Pasta de M\u00eddia", - "HeaderAddMediaFolderHelp": "Nome (Filmes, M\u00fasica, TV, etc):", - "HeaderRemoveMediaFolder": "Excluir Pasta de M\u00eddia", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "As localiza\u00e7\u00f5es de m\u00eddia abaixo ser\u00e3o exclu\u00eddas de sua biblioteca:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Deseja realmente excluir esta pasta de m\u00eddia?", - "ButtonRename": "Renomear", - "ButtonChangeContentType": "Alterar o tipo de conte\u00fado", - "HeaderMediaLocations": "Localiza\u00e7\u00f5es de M\u00eddia", - "LabelContentTypeValue": "Tipo de conte\u00fado: {0}", - "LabelPathSubstitutionHelp": "Opcional: Substitui\u00e7\u00e3o de caminho pode mapear caminhos do servidor para compartilhamentos de rede de forma a que os clientes possam acessar para reprodu\u00e7\u00e3o direta.", - "FolderTypeUnset": "Indefinido (conte\u00fado misto)", - "FolderTypeMovies": "Filmes", - "FolderTypeMusic": "M\u00fasica", - "FolderTypeAdultVideos": "V\u00eddeos adultos", - "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "V\u00eddeos musicais", - "FolderTypeHomeVideos": "V\u00eddeos caseiros", - "FolderTypeGames": "Jogos", - "FolderTypeBooks": "Livros", - "FolderTypeTvShows": "TV", - "TabMovies": "Filmes", - "TabSeries": "S\u00e9ries", - "TabEpisodes": "Epis\u00f3dios", - "TabTrailers": "Trailers", - "TabGames": "Jogos", - "TabAlbums": "\u00c1lbuns", - "TabSongs": "M\u00fasicas", - "TabMusicVideos": "V\u00eddeos Musicais", - "BirthPlaceValue": "Local de nascimento: {0}", - "DeathDateValue": "Morte: {0}", - "BirthDateValue": "Nascimento: {0}", - "HeaderLatestReviews": "\u00daltimas Avalia\u00e7\u00f5es", - "HeaderPluginInstallation": "Instala\u00e7\u00e3o do plugin", - "MessageAlreadyInstalled": "Esta vers\u00e3o j\u00e1 est\u00e1 instalada.", - "ValueReviewCount": "{0} Avalia\u00e7\u00f5es", - "MessageYouHaveVersionInstalled": "Voc\u00ea possui a vers\u00e3o {0} instalada.", - "MessageTrialExpired": "O per\u00edodo de testes terminou", - "MessageTrialWillExpireIn": "O per\u00edodo de testes expirar\u00e1 em {0} dia(s)", - "MessageInstallPluginFromApp": "Este plugin deve ser instalado de dentro do app em que deseja us\u00e1-lo.", - "ValuePriceUSD": "Pre\u00e7o: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "Voc\u00ea est\u00e1 registrado para este recurso e poder\u00e1 continuar usando-o com uma subscri\u00e7\u00e3o ativa do Emby Premiere.", - "MessageChangeRecurringPlanConfirm": "Depois de completar esta transa\u00e7\u00e3o voc\u00ea precisar\u00e1 cancelar sua doa\u00e7\u00e3o recorrente anterior dentro da conta do PayPal. Obrigado por colaborar com o Emby.", - "ButtonDelete": "Excluir", - "HeaderEmbyAccountAdded": "Conta do Emby Adicionada", - "MessageEmbyAccountAdded": "A conta do Emby foi adicionada para este usu\u00e1rio.", - "MessagePendingEmbyAccountAdded": "A conta do Emby foi adicionada para este usu\u00e1rio. Um email ser\u00e1 enviado para o dono da conta. O convite precisar\u00e1 ser confirmado clicando no link dentro do email.", - "HeaderEmbyAccountRemoved": "Conta do Emby Removida", - "MessageEmbyAccontRemoved": "A conta do Emby foi removida para este usu\u00e1rio.", - "TooltipLinkedToEmbyConnect": "Associada ao Emby Connect", - "HeaderUnrated": "N\u00e3o-classificado", - "ValueDiscNumber": "Disco {0}", - "HeaderUnknownDate": "Data Desconhecida", - "HeaderUnknownYear": "Ano Desconhecido", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Reproduzir com reprodutor externo", - "HeaderSelectExternalPlayer": "Selecionar Reprodutor Externo", - "HeaderExternalPlayerPlayback": "Reprodu\u00e7\u00e3o em Reprodutor Externo", - "ButtonImDone": "Pronto", - "OptionWatched": "Assistido", - "OptionUnwatched": "N\u00e3o-assistido", - "ExternalPlayerPlaystateOptionsHelp": "Defina como gostaria de retomar a reprodu\u00e7\u00e3o deste v\u00eddeo na pr\u00f3xima vez.", - "LabelMarkAs": "Marcar como:", - "OptionInProgress": "Em Reprodu\u00e7\u00e3o", - "LabelResumePoint": "Ponto para retomar:", - "ValueOneMovie": "1 filme", - "ValueMovieCount": "{0} filmes", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 s\u00e9rie", - "ValueSeriesCount": "{0} s\u00e9ries", - "ValueOneEpisode": "1 epis\u00f3dio", - "ValueEpisodeCount": "{0} epis\u00f3dios", - "ValueOneGame": "1 jogo", - "ValueGameCount": "{0} jogos", - "ValueOneAlbum": "1 \u00e1lbum", - "ValueAlbumCount": "{0} \u00e1lbuns", - "ValueOneSong": "1 m\u00fasica", - "ValueSongCount": "{0} m\u00fasicas", - "ValueOneMusicVideo": "1 v\u00eddeo musical", - "ValueMusicVideoCount": "{0} v\u00eddeos musicais", - "HeaderOffline": "Sem acesso", - "HeaderUnaired": "N\u00e3o-Exibido", - "HeaderMissing": "Ausente", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorito", - "TooltipLike": "Curti", - "TooltipDislike": "N\u00e3o curti", - "TooltipPlayed": "Reproduzido", - "ValueSeriesYearToPresent": "{0}-Presente", - "ValueAwards": "Pr\u00eamios: {0}", - "ValueBudget": "Or\u00e7amento: {0}", - "ValueRevenue": "Faturamento: {0}", - "ValuePremiered": "Estr\u00e9ia {0}", - "ValuePremieres": "Estr\u00e9ia {0}", - "ValueStudio": "Est\u00fadio: {0}", - "ValueStudios": "Est\u00fadios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Especial - {0}", - "LabelLimit": "Limite:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "Pessoas", - "HeaderCastAndCrew": "Elenco & Equipe", - "ValueArtist": "Artista: {0}", - "ValueArtists": "Artistas: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Fabricante da c\u00e2mera", - "MediaInfoCameraModel": "Modelo da c\u00e2mera", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Abertura", - "MediaInfoExposureTime": "Tempo de exposi\u00e7\u00e3o", - "MediaInfoFocalLength": "Tamanho do foco", - "MediaInfoOrientation": "Orienta\u00e7\u00e3o", - "MediaInfoIsoSpeedRating": "Velocidade Iso", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Velocidade do obturador", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "Se voc\u00ea gosta de {0}, veja isto...", - "HeaderPlotKeywords": "Palavras-chave da Trama", - "HeaderMovies": "Filmes", - "HeaderAlbums": "\u00c1lbuns", - "HeaderGames": "Jogos", - "HeaderBooks": "Livros", - "HeaderEpisodes": "Epis\u00f3dios", - "HeaderSeasons": "Temporadas", - "HeaderTracks": "Faixas", - "HeaderItems": "Itens", - "HeaderOtherItems": "Outros Itens", - "ButtonFullReview": "Avalia\u00e7\u00e3o completa", - "ValueAsRole": "como {0}", - "ValueGuestStar": "Ator convidado", - "MediaInfoSize": "Tamanho", - "MediaInfoPath": "Caminho", - "MediaInfoFile": "Arquivo", - "MediaInfoFormat": "Formato", - "MediaInfoContainer": "Recipiente", - "MediaInfoDefault": "Padr\u00e3o", - "MediaInfoForced": "For\u00e7ada", - "MediaInfoExternal": "Externa", - "MediaInfoTimestamp": "Data e hora", - "MediaInfoPixelFormat": "Formato do pixel", - "MediaInfoBitDepth": "Bit da imagem", - "MediaInfoSampleRate": "Taxa da amostra", - "MediaInfoBitrate": "Taxa", - "MediaInfoChannels": "Canais", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Idioma", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Tag do Codec", - "MediaInfoProfile": "Perfil", - "MediaInfoLevel": "N\u00edvel", - "MediaInfoAspectRatio": "Propor\u00e7\u00e3o da imagem", - "MediaInfoResolution": "Resolu\u00e7\u00e3o", - "MediaInfoAnamorphic": "Anam\u00f3rfico", - "MediaInfoInterlaced": "Entrela\u00e7ado", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "\u00c1udio", - "MediaInfoStreamTypeData": "Dados", - "MediaInfoStreamTypeVideo": "V\u00eddeo", - "MediaInfoStreamTypeSubtitle": "Legenda", - "MediaInfoStreamTypeEmbeddedImage": "Imagem Incorporada", - "MediaInfoRefFrames": "Quadros de refer\u00eancia", - "TabPlayback": "Reprodu\u00e7\u00e3o", - "TabNotifications": "Notifica\u00e7\u00f5es", - "TabExpert": "Avan\u00e7ado", - "HeaderSelectCustomIntrosPath": "Selecionar o Caminho para Introdu\u00e7\u00f5es Personalizadas", - "HeaderRateAndReview": "Avaliar e Comentar", - "HeaderThankYou": "Obrigado", - "MessageThankYouForYourReview": "Obrigado por sua avalia\u00e7\u00e3o", - "LabelYourRating": "Sua avalia\u00e7\u00e3o:", - "LabelFullReview": "Coment\u00e1rio completo:", - "LabelShortRatingDescription": "Resumo da avalia\u00e7\u00e3o:", - "OptionIRecommendThisItem": "Eu recomendo este item", - "WebClientTourContent": "Veja suas m\u00eddias adicionadas recentemente, pr\u00f3ximos epis\u00f3dios e mais. Os c\u00edrculos verdes indicam quantos itens n\u00e3o reproduzidos voc\u00ea tem.", - "WebClientTourMovies": "Reproduza filmes, trailers e mais em qualquer dispositivo com um browser web.", - "WebClientTourMouseOver": "Posicione o mouse sobre qualquer capa para acessar rapidamente informa\u00e7\u00f5es importantes", - "WebClientTourTapHold": "Toque e mantenha ou clique com o bot\u00e3o direito do mouse sobre a capa para um menu contextual", - "WebClientTourMetadataManager": "Clique em editar para abrir o gerenciador de metadados", - "WebClientTourPlaylists": "Crie listas de reprodu\u00e7\u00e3o e mixes instant\u00e2neos e reproduza-os em qualquer dispositivo", - "WebClientTourCollections": "Crie cole\u00e7\u00f5es de filmes para agrupar colet\u00e2neas", - "WebClientTourUserPreferences1": "As prefer\u00eancias do usu\u00e1rio permitem que voc\u00ea personalize a forma como sua biblioteca \u00e9 apresentada em todos os apps do Emby", - "WebClientTourUserPreferences2": "Configure o idioma de seu \u00e1udio e legendas uma \u00fanica vez para todos os apps do Emby", - "WebClientTourUserPreferences3": "Defina a p\u00e1gina de in\u00edcio do cliente web, do seu gosto", - "WebClientTourUserPreferences4": "Configure imagens de fundo, m\u00fasicas-tema e reprodutores externos", - "WebClientTourMobile1": "O cliente web funciona perfeitamente em smartphones e tablets...", - "WebClientTourMobile2": "e controle facilmente outros dispositivos e apps do Emby", - "WebClientTourMySync": "Sincronize sua m\u00eddia pessoal para seus dispositivos para assistir off-line.", - "MessageEnjoyYourStay": "Divirta-se", - "DashboardTourDashboard": "O painel do servidor permite monitorar seu servidor e seus usu\u00e1rios. Voc\u00ea sempre poder\u00e1 saber quem est\u00e1 fazendo o qu\u00ea e onde est\u00e3o.", - "DashboardTourHelp": "A ajuda dentro do app fornece bot\u00f5es para abrir p\u00e1ginas wiki relacionadas ao conte\u00fado na tela.", - "DashboardTourUsers": "Crie facilmente contas de usu\u00e1rios para seus amigos e fam\u00edlia, cada um com sua permiss\u00e3o, acesso \u00e0 biblioteca, controle parental e mais.", - "DashboardTourCinemaMode": "O modo cinema traz a experi\u00eancia do cinema para sua sala, permitindo reproduzir trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.", - "DashboardTourChapters": "Ative a gera\u00e7\u00e3o de imagem dos cap\u00edtulos de seus v\u00eddeos para ter uma apresenta\u00e7\u00e3o mais prazeirosa.", - "DashboardTourSubtitles": "Fa\u00e7a download de legendas para os seus v\u00eddeos, em qualquer idioma, automaticamente.", - "DashboardTourPlugins": "Instale plugins, como os canais de v\u00eddeo de internet, tv ao vivo, rastreadores de metadados e mais.", - "DashboardTourNotifications": "Envie, automaticamente, notifica\u00e7\u00f5es de eventos do servidor para seus dispositivos m\u00f3veis, email e mais.", - "DashboardTourScheduledTasks": "Gerencie facilmente opera\u00e7\u00f5es longas com tarefas agendadas. Decida quando executar e com que frequ\u00eancia.", - "DashboardTourMobile": "O painel do Servidor Emby funciona perfeitamente em smartphones e tablets. Gerencie seu servidor da palma de sua m\u00e3o a qualquer hora, em qualquer lugar.", - "DashboardTourSync": "Sincronize sua m\u00eddia pessoal para seus dispositivos para assistir off-line.", - "MessageRefreshQueued": "Atualiza\u00e7\u00e3o iniciada", - "TabDevices": "Dispositivos", - "TabExtras": "Extras", - "HeaderUploadImage": "Fazer Upload da Imagem", - "DeviceLastUsedByUserName": "Utilizado por \u00faltimo por {0}", - "HeaderDeleteDevice": "Excluir Dispositivo", - "DeleteDeviceConfirmation": "Deseja realmente excluir este dispositivo? Ele reaparecer\u00e1 da pr\u00f3xima vez que um usu\u00e1rio utiliz\u00e1-lo.", - "LabelEnableCameraUploadFor": "Habilitar upload da c\u00e2mera para:", - "HeaderSelectUploadPath": "Selecionar o Caminho para Upload", - "LabelEnableCameraUploadForHelp": "Os uploads ocorrer\u00e3o automaticamente em segundo plano quando entrar no Emby.", - "ErrorMessageStartHourGreaterThanEnd": "A hora final deve ser maior que a hora inicial.", - "ButtonLibraryAccess": "Acesso \u00e0 biblioteca", - "ButtonParentalControl": "Controle Parental", - "HeaderInvitationSent": "Convite Enviado", - "MessageInvitationSentToUser": "Um email foi enviado para {0}, convidando para aceitar seu convite de compartilhamento.", - "MessageInvitationSentToNewUser": "Um email foi enviado para {0} convidando para registrar-se no Emby.", - "HeaderConnectionFailure": "Falha na Conex\u00e3o", - "MessageUnableToConnectToServer": "N\u00e3o foi poss\u00edvel conectar ao servidor selecionado. Por favor, certifique-se que esteja sendo executado e tente novamente.", - "ButtonSelectServer": "Selecionar Servidor", - "MessagePluginConfigurationRequiresLocalAccess": "Para configurar este plugin, por favor entre em seu servidor local diretamente.", - "MessageLoggedOutParentalControl": "O acesso est\u00e1 atualmente restrito. Por favor, tente mais tarde.", - "DefaultErrorMessage": "Ocorreu um erro ao processar o pedido. Por favor, tente novamente mais tarde.", - "ButtonAccept": "Aceitar", - "ButtonReject": "Rejeitar", - "HeaderForgotPassword": "Esqueci a Senha", - "MessageContactAdminToResetPassword": "Por favor, contate o administrador do sistema para redefinir sua senha.", - "MessageForgotPasswordInNetworkRequired": "Por favor, tente novamente dentro da rede de sua casa para iniciar o processo para redefinir a senha.", - "MessageForgotPasswordFileCreated": "O seguinte arquivo foi criado no seu servidor e cont\u00e9m instru\u00e7\u00f5es de como proceder:", - "MessageForgotPasswordFileExpiration": "O c\u00f3digo para redefini\u00e7\u00e3o expirar\u00e1 \u00e0s {0}.", - "MessageInvalidForgotPasswordPin": "Foi digitado um c\u00f3digo inv\u00e1lido ou expirado. Por favor, tente novamente.", - "MessagePasswordResetForUsers": "As senhas foram removidas dos seguintes usu\u00e1rios. Para entrar, acesse com uma senha em branco", - "HeaderInviteGuest": "Convidar Usu\u00e1rio", - "ButtonLinkMyEmbyAccount": "Associar minha conta agora", - "MessageConnectAccountRequiredToInviteGuest": "Para convidar pessoas voc\u00ea precisa primeiro associar sua conta do Emby a este servidor.", - "ButtonSync": "Sincronizar", - "SyncMedia": "Sincronizar M\u00eddia", - "HeaderCancelSyncJob": "Cancelar Sincroniza\u00e7\u00e3o", - "CancelSyncJobConfirmation": "Cancelar a tarefa de sincroniza\u00e7\u00e3o remover\u00e1 m\u00eddias sincronizadas do dispositivo durante o pr\u00f3ximo processo de sincroniza\u00e7\u00e3o. Deseja realmente proceder?", - "TabSync": "Sincroniza\u00e7\u00e3o", - "MessagePleaseSelectDeviceToSyncTo": "Por favor, selecione um dispositivo para sincronizar.", - "MessageSyncJobCreated": "Tarefa de sincroniza\u00e7\u00e3o criada.", - "LabelSyncTo": "Sincronizar para:", - "LabelSyncJobName": "Nome da tarefa de sincroniza\u00e7\u00e3o:", - "LabelQuality": "Qualidade:", - "HeaderSettings": "Ajustes", - "OptionAutomaticallySyncNewContent": "Sincronizar novo conte\u00fado automaticamente", - "OptionAutomaticallySyncNewContentHelp": "Novo conte\u00fado adicionado ser\u00e1 automaticamente sincronizado com o dispositivo.", - "OptionSyncUnwatchedVideosOnly": "Sincronizar apenas v\u00eddeos n\u00e3o assistidos", - "OptionSyncUnwatchedVideosOnlyHelp": "Apenas v\u00eddeos n\u00e3o assistidos ser\u00e3o sincronizados, e os v\u00eddeos ser\u00e3o removidos do dispositivo assim que forem assistidos.", - "LabelItemLimit": "Limite de itens:", - "LabelItemLimitHelp": "Opcional. Defina o n\u00famero limite de itens que ser\u00e3o sincronizados.", - "MessageBookPluginRequired": "Requer a instala\u00e7\u00e3o do plugin Bookshelf", - "MessageGamePluginRequired": "Requer a instala\u00e7\u00e3o do plugin GameBrowser", - "MessageUnsetContentHelp": "O conte\u00fado ser\u00e1 exibido em pastas simples. Para melhor resultado, use o gerenciador de metadados para definir os tipos de conte\u00fado das sub-pastas.", - "SyncJobItemStatusQueued": "Enfileirado", - "SyncJobItemStatusConverting": "Convertendo", - "SyncJobItemStatusTransferring": "Transferindo", - "SyncJobItemStatusSynced": "Sincronizado", - "SyncJobItemStatusFailed": "Falhou", - "SyncJobItemStatusRemovedFromDevice": "Removido do dispositivo", - "SyncJobItemStatusCancelled": "Cancelado", - "LabelProfile": "Perfil:", - "LabelBitrateMbps": "Taxa (Mbps):", - "EmbyIntroDownloadMessage": "Para fazer o download e instalar o Servidor Emby visite {0}.", - "ButtonNewServer": "Novo Servidor", - "ButtonSignInWithConnect": "Entrar no Emby Connect", - "HeaderNewServer": "Novo Servidor", - "MyDevice": "Meu Dispositivo", - "ButtonRemote": "Remoto", - "TabInfo": "Info", - "TabCast": "Elenco", - "TabScenes": "Cenas", - "HeaderUnlockApp": "Desbloquear App", - "HeaderUnlockSync": "Destravar a Sincroniza\u00e7\u00e3o do Emby", - "MessageUnlockAppWithPurchaseOrSupporter": "Desbloqueie este recurso com uma pequena compra \u00fanica ou com uma subscri\u00e7\u00e3o ativa do Emby Premiere.", - "MessageUnlockAppWithSupporter": "Desbloqueie este recurso com uma subscri\u00e7\u00e3o ativa do Emby Premiere.", - "MessageToValidateSupporter": "Se voc\u00ea possui uma subscri\u00e7\u00e3o ativa do Emby Premiere, basta entrar no app usando sua conex\u00e3o Wifi em sua rede dom\u00e9stica.", - "MessagePaymentServicesUnavailable": "Servi\u00e7os de pagamento est\u00e3o indispon\u00edveis no momento. Por favor, tente novamente mais tarde.", - "MessagePleaseSignInLocalNetwork": "Antes de continuar, por favor assegure-se que esteja conectado \u00e0 sua rede local usando Wifi ou uma conex\u00e3o de rede.", - "ButtonUnlockWithPurchase": "Desbloquear com Compra", - "ButtonUnlockPrice": "Desbloquear {0}", - "MessageLiveTvGuideRequiresUnlock": "O Guia de TV ao Vivo est\u00e1 atualmente limitado a {0} canais. Clique no bot\u00e3o desbloquear para saber como aproveitar a experi\u00eancia completa.", - "OptionEnableFullscreen": "Ativar Tela Cheia", - "ButtonServer": "Servidor", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Biblioteca", - "HeaderMedia": "M\u00eddia", - "ButtonInbox": "Caixa de Entrada", - "HeaderAdvanced": "Avan\u00e7ado", - "HeaderGroupVersions": "Agrupar Vers\u00f5es", - "HeaderSaySomethingLike": "Diga Alguma Coisa Como...", - "ButtonTryAgain": "Tente Novamente", - "HeaderYouSaid": "Voc\u00ea Disse...", - "MessageWeDidntRecognizeCommand": "Desculpe, n\u00e3o reconhecemos este comando.", - "MessageIfYouBlockedVoice": "Se voc\u00ea negou o acesso de voz ao app, voc\u00ea necessitar\u00e1 reconfigurar antes de tentar novamente.", - "MessageNoItemsFound": "Nenhum item encontrado.", - "ButtonManageServer": "Gerenciar Servidor", - "ButtonEditSubtitles": "Editar legendas", - "ButtonPreferences": "Prefer\u00eancias", - "ButtonViewArtist": "Ver artista", - "ButtonViewAlbum": "Ver \u00e1lbum", - "ButtonEditImages": "Editar imagens", - "ErrorMessagePasswordNotMatchConfirm": "A senha e a confirma\u00e7\u00e3o de senha devem ser iguais.", - "ErrorMessageUsernameInUse": "O nome do usu\u00e1rio j\u00e1 est\u00e1 em uso. Por favor, escolha um novo nome e tente novamente.", - "ErrorMessageEmailInUse": "O endere\u00e7o de email j\u00e1 est\u00e1 em uso. Por favor, digite um novo endere\u00e7o de email e tente novamente ou use o recurso de senha esquecida.", - "MessageThankYouForConnectSignUp": "Obrigado por inscrever-se no Emby Connect. Um email ser\u00e1 enviado para seu endere\u00e7o com as instru\u00e7\u00f5es para confirmar sua nova conta. Por favor, confirme a conta e ent\u00e3o volte aqui para entrar.", - "HeaderShare": "Compartilhar", - "ButtonShareHelp": "Compartilhe uma p\u00e1gina web contendo informa\u00e7\u00f5es de m\u00eddia com uma m\u00eddia social. Os arquivos de m\u00eddia nunca ser\u00e3o compartilhados publicamente.", - "ButtonShare": "Compartilhar", - "HeaderConfirm": "Confirmar", - "ButtonAdvancedRefresh": "Atualiza\u00e7\u00e3o Avan\u00e7ada", - "MessageConfirmDeleteTunerDevice": "Deseja realmente excluir este dispositivo?", - "MessageConfirmDeleteGuideProvider": "Deseja realmente excluir este provedor do guia?", - "HeaderDeleteProvider": "Excluir Provedor", - "HeaderAddProvider": "Adicionar Provedor", - "ErrorAddingTunerDevice": "Ocorreu um erro ao adicionar o sintonizador. Por favor, certifique-se que esteja acess\u00edvel e tente novamente.", - "ErrorSavingTvProvider": "Ocorreu um erro ao salvar o provedor de TV. Por favor, certifique-se que esteja acess\u00edvel e tente novamente.", - "ErrorGettingTvLineups": "Ocorreu um erro ao fazer download da programa\u00e7\u00e3o da tv. Por favor, certifique-se que sua informa\u00e7\u00e3o esteja correta e tente novamente.", - "MessageCreateAccountAt": "Criar uma conta em {0}", - "ErrorPleaseSelectLineup": "Por favor selecione a programa\u00e7\u00e3o e tente novamente. Se n\u00e3o houver programa\u00e7\u00f5es dispon\u00edveis, verifique se o seu nome de usu\u00e1rio, senha e c\u00f3digo postal est\u00e3o corretos.", - "HeaderTryEmbyPremiere": "Experimente o Emby Premiere", - "ButtonBecomeSupporter": "Obter Emby Premiere", - "ButtonClosePlayVideo": "Fechar e reproduzir minha m\u00eddia", - "MessageDidYouKnowCinemaMode": "Voc\u00ea sabia que com o Emby Premiere voc\u00ea pode enriquecer sua experi\u00eancia com recursos como o CInema Mode?", - "MessageDidYouKnowCinemaMode2": "O Cinema Mode possibilita que voc\u00ea tenha uma experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme principal.", - "OptionEnableDisplayMirroring": "Ativar espelhamento da tela", - "HeaderSyncRequiresSupporterMembership": "A Sincroniza\u00e7\u00e3o requer uma subscri\u00e7\u00e3o ativa do Emby Premiere.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "A Sincroniza\u00e7\u00e3o requer a conex\u00e3o com um Servidor Emby com uma subscric\u00e3o ativa do Emby Premiere.", - "ErrorValidatingSupporterInfo": "Ocorreu um erro ao validar sua informa\u00e7\u00e3o do Emby Premiere. Por favor, tente novamente mais tarde.", - "HeaderSync": "Sincroniza\u00e7\u00e3o", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sincroniza\u00e7\u00e3o iniciada", - "OptionPoster": "Capa", - "OptionPosterCard": "Cart\u00e3o da capa", - "OptionTimeline": "Linha do tempo", - "OptionList": "Lista", - "OptionThumb": "\u00cdcone", - "OptionThumbCard": "Cart\u00e3o do \u00edcone", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "Nenhuma imagem para apresenta\u00e7\u00e3o foi encontrada.", - "OptionPhotoSlideshow": "Apresenta\u00e7\u00e3o de Fotos", - "OptionBackdropSlideshow": "Apresenta\u00e7\u00e3o de Imagens de Fundo", - "HeaderTopPlugins": "Plugins Mais Usados", - "ButtonRecord": "Gravar", - "ButtonOther": "Outro", - "HeaderSortBy": "Ordenar Por", - "HeaderSortOrder": "Forma para Ordenar", - "OptionAscending": "Crescente", - "OptionDescending": "Decrescente", - "OptionNameSort": "Nome", - "OptionTvdbRating": "Avalia\u00e7\u00e3o Tvdb", - "OptionPremiereDate": "Data da Estr\u00e9ia", - "OptionImdbRating": "Avalia\u00e7\u00e3o IMDb", - "OptionDatePlayed": "Data da Reprodu\u00e7\u00e3o", - "OptionDateAdded": "Data da Adi\u00e7\u00e3o", - "OptionPlayCount": "N\u00famero Reprodu\u00e7\u00f5es", - "ButtonDisconnect": "Desconectar", - "OptionAlbumArtist": "Artista do \u00c1lbum", - "OptionArtist": "Artista", - "OptionAlbum": "\u00c1lbum", - "OptionTrackName": "Nome da Faixa", - "OptionCommunityRating": "Avalia\u00e7\u00e3o da Comunidade", - "ButtonSort": "Ordenar", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Padr\u00e3o", - "ButtonFilter": "Filtro", - "OptionCriticRating": "Avalia\u00e7\u00e3o da Cr\u00edtica", - "OptionVideoBitrate": "Taxa do V\u00eddeo", - "OptionMetascore": "Metascore", - "OptionRevenue": "Faturamento", - "OptionBudget": "Or\u00e7amento", - "ForAdditionalLiveTvOptions": "Para provedores de TV ao Vivo adicionais, clique na guia Servi\u00e7os Externos para ver as op\u00e7\u00f5es dispon\u00edveis.", - "ButtonGuide": "Guia", - "ButtonRecordedTv": "TV Gravada", - "HeaderDisconnectFromPlayer": "Desconectar do Reprodutor", - "ConfirmEndPlayerSession": "Voc\u00ea deseja fechar o Emby no dispositivo?", - "ButtonYes": "Sim", - "ButtonNo": "N\u00e3o", - "ButtonRestorePreviousPurchase": "Restaurar Compra", - "AlreadyPaid": "J\u00e1 Est\u00e1 Pago?", - "AlreadyPaidHelp1": "Se j\u00e1 pagou anteriormente para instalar uma vers\u00e3o antiga do Media Browser para Android, n\u00e3o ser\u00e1 necess\u00e1rio pagar novamente para ativar este app. Clique OK para enviar-nos um email para {0} e n\u00f3s ativaremos para voc\u00ea.", - "AlreadyPaidHelp2": "Obteve o Emby Premiere? Apenas cancele este texto, entre no app dentro da sua rede WI-FI dom\u00e9stica e o app ser\u00e1 desbloqueado automaticamente.", - "ButtonForYou": "Para Voc\u00ea", - "ButtonLibrary": "Biblioteca", - "ButtonSearch": "Busca", - "ButtonNowPlaying": "Reproduzindo Agora", - "ButtonViewNewApp": "Ver novo app", - "HeaderEmbyForAndroidHasMoved": "Emby para Android mudou!", - "MessageEmbyForAndroidHasMoved": "O Emby para Android mudou para um novo local na app store. Por favor, confira o novo app. Voc\u00ea pode seguir usando este app at\u00e9 quando quiser.", - "HeaderNextUp": "Pr\u00f3ximo", - "HeaderLatestMovies": "Filmes Recentes", - "HeaderLatestEpisodes": "Epis\u00f3dios Recentes", - "EmbyPremiereMonthly": "Emby Premiere Mensal", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Mensal {0}", - "HeaderEmailAddress": "Endere\u00e7o de E-mail", - "TextPleaseEnterYourEmailAddressForSubscription": "Por favor, digite seu endere\u00e7o de e-mail.", - "LoginDisclaimer": "Emby est\u00e1 desenhado para ajud\u00e1-lo a gerenciar sua biblioteca de m\u00eddia pessoal, como v\u00eddeos caseiros ou fotos. Por favor, leia nossos termos de uso. O uso de qualquer software Emby constitui a aceita\u00e7\u00e3o desses termos.", - "TermsOfUse": "Termos de uso", - "HeaderTryMultiSelect": "Experimentar a Sele\u00e7\u00e3o M\u00faltipla", - "TryMultiSelectMessage": "Para editar itens m\u00faltiplos de m\u00eddia, basta clicar e segurar qualquer capa e selecionar os itens que gostaria de gerenciar. Experimente!", - "NumLocationsValue": "{0} pastas", - "ButtonAddMediaLibrary": "Adicionar Biblioteca de M\u00eddia", - "ButtonManageFolders": "Gerenciar pastas", - "HeaderTryDragAndDrop": "Experimentar Arrastar e Soltar", - "TryDragAndDropMessage": "Para reordenar itens de uma lista de reprodu\u00e7\u00e3o, basta arrastar e soltar. experimente!", - "HeaderTryMicrosoftEdge": "Experimentar Microsoft Edge", - "MessageTryMicrosoftEdge": "Para uma melhor experi\u00eancia no Windows 10, experimente o novo Navegador Microsoft Edge.", - "HeaderTryModernBrowser": "Experimente um Navegador Web Moderno", - "MessageTryModernBrowser": "Para uma melhor experi\u00eancia no Windows, tente um navegador web moderno como o Google Chrome, Firefox ou Opera.", - "ErrorAddingListingsToSchedulesDirect": "Ocorreu um erro ao adicionar a programa\u00e7\u00e3o \u00e0 sua conta da Schedules Direct. A Schedules Direct permite apenas um n\u00famero limitado de programa\u00e7\u00f5es por conta. Talvez seja necess\u00e1rio que voc\u00ea entre no website da Schedules Direct e remova outras listas de sua conta antes de prosseguir.", - "PleaseAddAtLeastOneFolder": "Por favor, adicione ao menos uma pasta a esta biblioteca, clicando no bot\u00e3o Adicionar.", - "ErrorAddingMediaPathToVirtualFolder": "Ocorreu um erro ao adicionar o caminho da m\u00eddia. Por favor, assegure-se que o caminho \u00e9 valido e que o processo do Emby Server tenha acesso a essa localiza\u00e7\u00e3o.", - "ErrorRemovingEmbyConnectAccount": "Ocorreu um erro ao remover a conta do Emby Connect. Por favor, assegure-se que possui uma conex\u00e3o de internet ativa e tente novamente.", - "ErrorAddingEmbyConnectAccount1": "Ocorreu um erro ao adicionar a conta do Emby Connect. Voc\u00ea j\u00e1 criou uma conta Emby? Registre-se em {0}.", - "ErrorAddingEmbyConnectAccount2": "Por favor, certifique-se que a conta Emby foi ativada seguindo as instru\u00e7\u00f5es do e-mail enviado ap\u00f3s a cria\u00e7\u00e3o da conta. Se n\u00e3o recebeu o e-mail, por favor envie um e-mail para {0} a partir do endere\u00e7o de e-mail usado na conta Emby.", - "HeaderFavoriteArtists": "Artistas Favoritos", - "HeaderFavoriteSongs": "M\u00fasicas Favoritas", - "HeaderConfirmPluginInstallation": "Confirmar a Instala\u00e7\u00e3o do Plugin", - "PleaseConfirmPluginInstallation": "Por favor, clique em OK para confirmar que voc\u00ea leu e deseja prosseguir com a instala\u00e7\u00e3o do plugin.", - "MessagePluginInstallDisclaimer": "Plugins feitos por membros da comunidade Emby s\u00e3o uma grande forma de melhorar sua experi\u00eancia Emby com funcionalidades e benef\u00edcios adicionais. Antes de instalar, por favor certifique-se de conhecer os efeitos que podem causar no seu Servidor Emby, tais como, rastreamentos da biblioreca mais longos, processamento adicional e diminui\u00e7\u00e3o na estabilidade do sistema.", - "ButtonPlayOneMinute": "Reproduzir um minuto", - "ThankYouForTryingEnjoyOneMinute": "Por favor, aproveite a reprodu\u00e7\u00e3o de um minuto. Obrigado por experimentar o Emby.", - "HeaderTryPlayback": "Experimente a Reprodu\u00e7\u00e3o", - "HeaderBenefitsEmbyPremiere": "Benef\u00edcios do Emby Premiere", - "MobileSyncFeatureDescription": "Sincronize sua m\u00eddia para seus smart phones e tablets para ter um acesso f\u00e1cil offline.", - "CoverArtFeatureDescription": "Cover Art cria capas divertidas e outros tratamentos para ajud\u00e1-lo a personalizar suas imagens.", - "HeaderMobileSync": "Sincroniza\u00e7\u00e3o M\u00f3vel", - "HeaderCloudSync": "Sincroniza\u00e7\u00e3o Cloud", - "CloudSyncFeatureDescription": "Sincronize sua m\u00eddia para a nuvem para fazer um backup, arquivamento e convers\u00e3o de forma f\u00e1cil", - "HeaderFreeApps": "Apps Emby gratuitos", - "FreeAppsFeatureDescription": "Aproveite o acesso gratuito para selecionar os apps Emby para seu dispositivos.", - "HeaderCinemaMode": "Modo Cinema", - "CinemaModeFeatureDescription": "Cinema Mode oferece uma verdadeira experi\u00eancia de cinema com trailers e introdu\u00e7\u00f5es personalizadas antes do filme.", - "CoverArt": "Covert Art", - "ButtonOff": "Desligado", - "TitleHardwareAcceleration": "Acelera\u00e7\u00e3o de Hardware", - "HardwareAccelerationWarning": "Ativar a acelera\u00e7\u00e3o de hardware pode causar instabilidade em alguns casos. Se tiver dificuldades para reproduzir v\u00eddeos depois de ativar isto, ser\u00e1 necess\u00e1rio retornar a op\u00e7\u00e3o para Auto.", - "HeaderSelectCodecIntrosPath": "Selecionar o Caminho dos Codecs das Introdu\u00e7\u00f5es", - "ButtonLocalRefresh": "Atualiza\u00e7\u00e3o local", - "ButtonAddMissingData": "Adicionar apenas dados que faltam", - "ButtonFullRefresh": "Atualiza\u00e7\u00e3o completa", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/pt-PT.json b/dashboard-ui/strings/javascript/pt-PT.json deleted file mode 100644 index b96f8095a7..0000000000 --- a/dashboard-ui/strings/javascript/pt-PT.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Configura\u00e7\u00f5es guardadas.", - "AddUser": "Adicionar Utilizador", - "Users": "Utilizadores", - "Delete": "Apagar", - "Administrator": "Administrador", - "Password": "Senha", - "DeleteImage": "Apagar Imagem", - "MessageThankYouForSupporting": "Obrigado por suportar o Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Tem a certeza que deseja apagar a imagem?", - "FileReadCancelled": "A leitura do ficheiro foi cancelada.", - "FileNotFound": "Ficheiro n\u00e3o encontrado.", - "FileReadError": "Ocorreu um erro ao ler o ficheiro.", - "DeleteUser": "Apagar Utilizador", - "DeleteUserConfirmation": "Tem a certeza que deseja apagar este utilizador?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "A senha foi redefinida.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Tem a certeza que deseja redefinir a senha?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Senha guardada.", - "PasswordMatchError": "A senha e a confirma\u00e7\u00e3o da senha devem coincidir.", - "OptionRelease": "Lan\u00e7amento Oficial", - "OptionBeta": "Beta", - "OptionDev": "Dev (Inst\u00e1vel)", - "UninstallPluginHeader": "Desinstalar extens\u00e3o", - "UninstallPluginConfirmation": "Tem a certeza que deseja desinstalar {0}?", - "NoPluginConfigurationMessage": "Esta extens\u00e3o n\u00e3o \u00e9 configur\u00e1vel.", - "NoPluginsInstalledMessage": "N\u00e3o tem extens\u00f5es instaladas.", - "BrowsePluginCatalogMessage": "Navegue o nosso cat\u00e1logo de extens\u00f5es, para ver as extens\u00f5es dispon\u00edveis.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Suporte a Equipa do Emby", - "TextEnjoyBonusFeatures": "Aproveite os Extras", - "TitleLiveTV": "TV ao Vivo", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sincronizar", - "OptionAutomatic": "Autom\u00e1tico", - "HeaderSelectDate": "Selecionar Data", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Doa\u00e7\u00f5es recorrentes podem ser canceladas a qualquer momento dentro da sua conta do PayPal.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Utilizadores", - "PluginCategoryGeneral": "Geral", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Temas", - "PluginCategorySync": "Sincroniza\u00e7\u00e3o", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadados", - "PluginCategoryLiveTV": "TV ao Vivo", - "PluginCategoryChannel": "Canais", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Ajuda", - "ButtonSave": "Guardar", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Em lista de espera", - "SyncJobStatusConverting": "A Converter", - "SyncJobStatusFailed": "Falhou", - "SyncJobStatusCancelled": "Cancelado", - "SyncJobStatusCompleted": "Sincronizado", - "SyncJobStatusReadyToTransfer": "Pronto para Transferir", - "SyncJobStatusTransferring": "A Transferir", - "SyncJobStatusCompletedWithError": "Sincronizado com erros", - "SyncJobItemStatusReadyToTransfer": "Pronto para Transferir", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o", - "HeaderNewCollection": "Nova Cole\u00e7\u00e3o", - "NewCollectionNameExample": "Exemplo: Cole\u00e7\u00e3o Guerra das Estrelas", - "OptionSearchForInternetMetadata": "Procurar na internet por imagens e metadados", - "LabelSelectCollection": "Selecione a cole\u00e7\u00e3o:", - "HeaderDevices": "Dispositivos", - "ButtonScheduledTasks": "Tarefas agendadas", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Fa\u00e7a o tour", - "HeaderWelcomeBack": "Bem-vindo!", - "TitlePlugins": "Extens\u00f5es", - "ButtonTakeTheTourToSeeWhatsNew": "Fa\u00e7a o tour para ver as novidades", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marcado para remo\u00e7\u00e3o", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "Para", - "HeaderPlaybackError": "Erro na Reprodu\u00e7\u00e3o", - "MessagePlaybackErrorNotAllowed": "N\u00e3o est\u00e1 autorizado a reproduzir este conte\u00fado. Por favor, contacte o administrador do sistema para mais detalhes.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Parar", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pausar", - "ButtonPlay": "Reproduzir", - "ButtonEdit": "Editar", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "Todas as Grava\u00e7\u00f5es", - "RecommendationBecauseYouLike": "Porque gosta de {0}", - "RecommendationBecauseYouWatched": "Porque viu {0}", - "RecommendationDirectedBy": "Realizado por {0}", - "RecommendationStarring": "{0} como protagonista", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Domingo", - "OptionMonday": "Segunda", - "OptionTuesday": "Ter\u00e7a", - "OptionWednesday": "Quarta", - "OptionThursday": "Quinta", - "OptionFriday": "Sexta", - "OptionSaturday": "S\u00e1bado", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resumir", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Pastas multim\u00e9dia", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Adicionar", - "ButtonRemove": "Remover", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "\u00daltimos Itens de Canais", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Reiniciar", - "HeaderShutdown": "Encerrar", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Atualizar Agora", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Mais recentes de {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancelar", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Cenas", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "In\u00edcio", - "ButtonDashboard": "Painel Principal", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Nome", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Canais", - "HeaderMediaFolders": "Pastas Multim\u00e9dia", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Terminado", - "OptionContinuing": "A Continuar", - "OptionOff": "Desligado", - "OptionOn": "Ligado", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "TV ao Vivo", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Classifica\u00e7\u00e3o Parental", - "OptionPeople": "People", - "OptionRuntime": "Dura\u00e7\u00e3o", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Reiniciar", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Servidor", - "TabUsers": "Utilizadores", - "TabLibrary": "Biblioteca", - "TabMetadata": "Metadados", - "TabDLNA": "DLNA", - "TabLiveTV": "TV ao Vivo", - "TabAutoOrganize": "Organiza\u00e7\u00e3o Autom\u00e1tica", - "TabPlugins": "Extens\u00f5es", - "TabAdvanced": "Avan\u00e7ado", - "TabHelp": "Help", - "TabScheduledTasks": "Tarefas Agendadas", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Legendas", - "ButtonScenes": "Cenas", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifica\u00e7\u00f5es", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Selecionar", - "ButtonNew": "Novo", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Nome:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Visualizar", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "\u00c1udio", - "HeaderResolution": "Resolution", - "HeaderVideo": "V\u00eddeo", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Filmes", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Epis\u00f3dios", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Filmes", - "FolderTypeMusic": "M\u00fasica", - "FolderTypeAdultVideos": "V\u00eddeos adultos", - "FolderTypePhotos": "Fotos", - "FolderTypeMusicVideos": "V\u00eddeos musicais", - "FolderTypeHomeVideos": "V\u00eddeos caseiros", - "FolderTypeGames": "Jogos", - "FolderTypeBooks": "Livros", - "FolderTypeTvShows": "TV", - "TabMovies": "Filmes", - "TabSeries": "S\u00e9ries", - "TabEpisodes": "Epis\u00f3dios", - "TabTrailers": "Trailers", - "TabGames": "Jogos", - "TabAlbums": "\u00c1lbuns", - "TabSongs": "M\u00fasicas", - "TabMusicVideos": "Videos Musicais", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Remover", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Reprodu\u00e7\u00e3o", - "TabNotifications": "Notifica\u00e7\u00f5es", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "O Painel Principal do servidor permite monitorizar o seu servidor e os seus utilizadores. Poder\u00e1 sempre saber onde est\u00e3o e o que est\u00e3o a fazer.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "O modo cinema traz a experi\u00eancia do cinema para a sua sala, possibilitando reproduzir trailers e introdu\u00e7\u00f5es personalizadas antes da longa-metragem.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Dispositivos", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sincronizar", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sincroniza\u00e7\u00e3o", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Falhou", - "SyncJobItemStatusRemovedFromDevice": "Removido do dispositivo", - "SyncJobItemStatusCancelled": "Cancelado", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Avan\u00e7ado", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sincroniza\u00e7\u00e3o", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Linha de tempo", - "OptionList": "List", - "OptionThumb": "Miniatura", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Gravar", - "ButtonOther": "Other", - "HeaderSortBy": "Organizar por:", - "HeaderSortOrder": "Ordem de organiza\u00e7\u00e3o:", - "OptionAscending": "Ascendente", - "OptionDescending": "Descendente", - "OptionNameSort": "Nome", - "OptionTvdbRating": "Classifica\u00e7\u00e3o no Tvdb", - "OptionPremiereDate": "Data de Estreia", - "OptionImdbRating": "Classifica\u00e7\u00e3o no IMDb", - "OptionDatePlayed": "Data de reprodu\u00e7\u00e3o", - "OptionDateAdded": "Data de adi\u00e7\u00e3o", - "OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Artista do \u00c1lbum", - "OptionArtist": "Artista", - "OptionAlbum": "\u00c1lbum", - "OptionTrackName": "Nome da pista", - "OptionCommunityRating": "Classifica\u00e7\u00e3o da Comunidade", - "ButtonSort": "Organizar", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filtro", - "OptionCriticRating": "Classifica\u00e7\u00e3o dos cr\u00edticos", - "OptionVideoBitrate": "Qualidade do v\u00eddeo", - "OptionMetascore": "Metascore", - "OptionRevenue": "Receita", - "OptionBudget": "Or\u00e7amento", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Procurar", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "A Seguir", - "HeaderLatestMovies": "\u00daltimos Filmes", - "HeaderLatestEpisodes": "\u00daltimos Epis\u00f3dios", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Modo Cinema", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/ro.json b/dashboard-ui/strings/javascript/ro.json deleted file mode 100644 index 942d7a8351..0000000000 --- a/dashboard-ui/strings/javascript/ro.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Bucura\u021bi-v\u0103 de caracteristicile Bonus", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Dona\u021biile recurente pot fi anulate \u00een orice moment din contul dvs. PayPal.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notificari", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Utilizatori", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Ajutor", - "ButtonSave": "Salveaza", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Adauga la colectie", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Exemplu: Star Wars Collection", - "OptionSearchForInternetMetadata": "C\u0103utare pe internet pentru postere \u0219i metadate", - "LabelSelectCollection": "Selecteaza colectia:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Fa turul", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugin-uri", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Accesul Dispozitivelor", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Duminica", - "OptionMonday": "Luni", - "OptionTuesday": "Marti", - "OptionWednesday": "Miercuri", - "OptionThursday": "Joi", - "OptionFriday": "Vineri", - "OptionSaturday": "Sambata", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Reluare", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Anuleaza", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "S-a sfarsit", - "OptionContinuing": "Continua", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Rating Parental", - "OptionPeople": "People", - "OptionRuntime": "Timp Rulare", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadate", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Avansat", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "Nou", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Nume:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Muzica", - "HeaderResolution": "Resolution", - "HeaderVideo": "Filme", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Filme", - "FolderTypeMusic": "Muzica", - "FolderTypeAdultVideos": "Filme Porno", - "FolderTypePhotos": "Fotografii", - "FolderTypeMusicVideos": "Videoclipuri", - "FolderTypeHomeVideos": "Video Personale", - "FolderTypeGames": "Jocuri", - "FolderTypeBooks": "Carti", - "FolderTypeTvShows": "Seriale TV", - "TabMovies": "Filme", - "TabSeries": "Series", - "TabEpisodes": "Episoade", - "TabTrailers": "Trailere", - "TabGames": "Games", - "TabAlbums": "Albume", - "TabSongs": "Cantece", - "TabMusicVideos": "Videoclipuri", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notificari", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sincronizeaza", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Baner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sorteaza dupa:", - "HeaderSortOrder": "Ordine Sortare:", - "OptionAscending": "Crescator", - "OptionDescending": "Descrescator", - "OptionNameSort": "Nume", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Data Premierei", - "OptionImdbRating": "Rating IMDb", - "OptionDatePlayed": "Data Rulare", - "OptionDateAdded": "Data Adaugare", - "OptionPlayCount": "Contorizari rulari", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Nume melodie", - "OptionCommunityRating": "Rating Comunitate", - "ButtonSort": "Sorteaza", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filtreaza", - "OptionCriticRating": "Rating Critic", - "OptionVideoBitrate": "Bitrate Video", - "OptionMetascore": "Metascore", - "OptionRevenue": "Incasari", - "OptionBudget": "Buget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Urmeaza", - "HeaderLatestMovies": "Cele mai noi Filme", - "HeaderLatestEpisodes": "Cele mai noi Episoade", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/ru.json b/dashboard-ui/strings/javascript/ru.json deleted file mode 100644 index 2a878b685d..0000000000 --- a/dashboard-ui/strings/javascript/ru.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.", - "AddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", - "Users": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", - "Delete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c", - "Administrator": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440", - "Password": "\u041f\u0430\u0440\u043e\u043b\u044c", - "DeleteImage": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043e\u043a", - "MessageThankYouForSupporting": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Emby", - "MessagePleaseSupportProject": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 Emby", - "DeleteImageConfirmation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0440\u0438\u0441\u0443\u043d\u043e\u043a?", - "FileReadCancelled": "\u0427\u0442\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430 \u0431\u044b\u043b\u043e \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e.", - "FileNotFound": "\u0424\u0430\u0439\u043b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d.", - "FileReadError": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0447\u0442\u0435\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430.", - "DeleteUser": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", - "DeleteUserConfirmation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f?", - "PasswordResetHeader": "\u0421\u0431\u0440\u043e\u0441 \u043f\u0430\u0440\u043e\u043b\u044f", - "PasswordResetComplete": "\u041f\u0430\u0440\u043e\u043b\u044c \u0431\u044b\u043b \u0441\u0431\u0440\u043e\u0448\u0435\u043d.", - "PinCodeResetComplete": "PIN-\u043a\u043e\u0434 \u0431\u044b\u043b \u0441\u0431\u0440\u043e\u0448\u0435\u043d.", - "PasswordResetConfirmation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c?", - "PinCodeResetConfirmation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043e\u0441\u0438\u0442\u044c PIN-\u043a\u043e\u0434?", - "HeaderPinCodeReset": "\u0421\u0431\u0440\u043e\u0441 PIN-\u043a\u043e\u0434\u0430", - "PasswordSaved": "\u041f\u0430\u0440\u043e\u043b\u044c \u0431\u044b\u043b \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.", - "PasswordMatchError": "\u041f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0442\u044c", - "OptionRelease": "\u041e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0439 \u0432\u044b\u043f\u0443\u0441\u043a", - "OptionBeta": "\u0411\u0435\u0442\u0430-\u0432\u0435\u0440\u0441\u0438\u044f", - "OptionDev": "\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u0447\u043d\u0430\u044f (\u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u0430\u044f)", - "UninstallPluginHeader": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430", - "UninstallPluginConfirmation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c {0}?", - "NoPluginConfigurationMessage": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u0435 \u043d\u0435\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a.", - "NoPluginsInstalledMessage": "\u041d\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u0433\u0438\u043d\u0430.", - "BrowsePluginCatalogMessage": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u0438\u043c\u0435\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u043c\u0438.", - "HeaderNewApiKey": "\u041d\u043e\u0432\u044b\u0439 API-\u043a\u043b\u044e\u0447", - "LabelAppName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "LabelAppNameExample": "\u041f\u0440\u0438\u043c\u0435\u0440: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e \u043f\u0440\u0430\u0432\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u043a Emby Server.", - "MessageKeyEmailedTo": "\u041a\u043b\u044e\u0447 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d \u043d\u0430 {0}.", - "MessageKeysLinked": "\u041a\u043b\u044e\u0447\u0438 \u0441\u0432\u044f\u0437\u0430\u043d\u044b.", - "HeaderConfirmation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435", - "MessageKeyUpdated": "\u0412\u0430\u0448 \u043a\u043b\u044e\u0447 Emby Premiere \u0431\u044b\u043b \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d.", - "MessageKeyRemoved": "\u0412\u0430\u0448 \u043a\u043b\u044e\u0447 Emby Premiere \u0431\u044b\u043b \u0438\u0437\u044a\u044f\u0442.", - "HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby", - "TextEnjoyBonusFeatures": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0438\u0442\u0435 \u0431\u043e\u043d\u0443\u0441\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b", - "TitleLiveTV": "\u042d\u0444\u0438\u0440", - "ButtonCancelSyncJob": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e", - "HeaderAddTag": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0435\u0433\u0430", - "LabelTag": "\u0422\u0435\u0433:", - "ButtonSelectView": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435", - "TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", - "OptionAutomatic": "\u0410\u0432\u0442\u043e", - "HeaderSelectDate": "\u0412\u044b\u0431\u043e\u0440 \u0434\u0430\u0442\u044b", - "ServerUpdateNeeded": "\u0414\u0430\u043d\u043d\u044b\u0439 Emby Server \u043d\u0443\u0436\u0434\u0430\u0435\u0442\u0441\u044f \u0432 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0438. \u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u044e\u044e \u0432\u0435\u0440\u0441\u0438\u044e, \u043f\u043e\u0441\u0435\u0442\u0438\u0442\u0435 {0}", - "ButtonIdentify": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0442\u044c", - "HeaderIdentifyItem": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430", - "LabelRecurringDonationCanBeCancelledHelp": "\u0420\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u044b\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0447\u0435\u0440\u0435\u0437 \u0432\u0430\u0448\u0443 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c PayPal.", - "LabelFromHelp": "\u041f\u0440\u0438\u043c\u0435\u0440: {0} (\u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435)", - "HeaderMyMedia": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "ButtonRemoveFromCollection": "\u0418\u0437\u044a\u044f\u0442\u044c \u0438\u0437 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", - "LabelAutomaticUpdateLevel": "\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f:", - "LabelAutomaticUpdateLevelForPlugins": "\u0421\u0442\u0435\u043f\u0435\u043d\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432:", - "TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", - "ErrorLaunchingChromecast": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u043f\u0443\u0441\u043a\u0435 Chromecast. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043e \u043a \u0431\u0435\u0441\u043f\u0440\u043e\u0432\u043e\u0434\u043d\u043e\u0439 \u0441\u0435\u0442\u0438.", - "MessageErrorLoadingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 Emby Premiere. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", - "MessageLinkYourSupporterKey": "\u0421\u0432\u044f\u0436\u0438\u0442\u0435 \u0432\u0430\u0448 \u043a\u043b\u044e\u0447 Emby Premiere \u0441 \u0432\u043f\u043b\u043e\u0442\u044c \u0434\u043e {0} \u0447\u043b\u0435\u043d\u0430\u043c\u0438 Emby Connect, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c \u043a\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u043c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c:", - "HeaderConfirmRemoveUser": "\u0418\u0437\u044a\u044f\u0442\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", - "MessageConfirmRemoveConnectSupporter": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u0437\u044a\u044f\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b Emby Premiere \u0441 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f?", - "ValueTimeLimitSingleHour": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438: 1 \u0447\u0430\u0441", - "ValueTimeLimitMultiHour": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438: {0} \u0447\u0430\u0441(\u0430\/\u043e\u0432)", - "HeaderUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", - "PluginCategoryGeneral": "\u041e\u0431\u0449\u0438\u0435", - "PluginCategoryContentProvider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f", - "PluginCategoryScreenSaver": "\u0425\u0440\u0430\u043d\u0438\u0442\u0435\u043b\u0438 \u044d\u043a\u0440\u0430\u043d\u0430", - "PluginCategoryTheme": "\u0422\u0435\u043c\u044b", - "PluginCategorySync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", - "PluginCategorySocialIntegration": "\u0421\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0435 \u0441\u0435\u0442\u0438", - "PluginCategoryNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", - "PluginCategoryMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "PluginCategoryLiveTV": "\u0422\u0412-\u044d\u0444\u0438\u0440", - "PluginCategoryChannel": "\u041a\u0430\u043d\u0430\u043b\u044b", - "HeaderSearch": "\u041f\u043e\u0438\u0441\u043a", - "ValueDateCreated": "\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f: {0}", - "LabelArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", - "LabelMovie": "\u0424\u0438\u043b\u044c\u043c", - "LabelMusicVideo": "\u041c\u0443\u0437. \u0432\u0438\u0434\u0435\u043e", - "LabelEpisode": "\u042d\u043f\u0438\u0437\u043e\u0434", - "LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b", - "LabelStopping": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430", - "LabelCancelled": "(\u043e\u0442\u043c\u0435\u043d\u0435\u043d\u043e)", - "LabelFailed": "(\u043d\u0435\u0443\u0434\u0430\u0447\u043d\u043e)", - "ButtonHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430...", - "ButtonSave": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c", - "ButtonDownload": "\u0417\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c", - "SyncJobStatusQueued": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u0438", - "SyncJobStatusConverting": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442\u0441\u044f", - "SyncJobStatusFailed": "\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u043e", - "SyncJobStatusCancelled": "\u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e", - "SyncJobStatusCompleted": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043e", - "SyncJobStatusReadyToTransfer": "\u0413\u043e\u0442\u043e\u0432\u043e \u043a \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0443", - "SyncJobStatusTransferring": "\u041f\u0435\u0440\u0435\u043d\u043e\u0441\u0438\u0442\u0441\u044f", - "SyncJobStatusCompletedWithError": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0441 \u043e\u0448\u0438\u0431\u043a\u0430\u043c\u0438", - "SyncJobItemStatusReadyToTransfer": "\u0413\u043e\u0442\u043e\u0432\u043e \u043a \u043f\u0435\u0440\u0435\u043d\u043e\u0441\u0443", - "LabelCollection": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f", - "HeaderAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e", - "HeaderNewCollection": "\u041d\u043e\u0432\u0430\u044f \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f", - "NewCollectionNameExample": "\u041f\u0440\u0438\u043c\u0435\u0440: \u0417\u0432\u0451\u0437\u0434\u043d\u044b\u0435 \u0432\u043e\u0439\u043d\u044b (\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f)", - "OptionSearchForInternetMetadata": "\u0418\u0441\u043a\u0430\u0442\u044c \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0438 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0432 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0435", - "LabelSelectCollection": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e:", - "HeaderDevices": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", - "ButtonScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a...", - "MessageItemsAdded": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b", - "ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e", - "HeaderSelectCertificatePath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443", - "ConfirmMessageScheduledTaskButton": "\u042d\u0442\u043e \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0435 \u043e\u0431\u044b\u0447\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u0430\u043a \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u0437\u0430\u0434\u0430\u0447\u0430 \u0438 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442 \u043b\u044e\u0431\u043e\u0433\u043e \u0443\u0441\u0438\u043b\u0438\u044f \u0432\u0440\u0443\u0447\u043d\u0443\u044e. \u0427\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443, \u0441\u043c.:", - "HeaderSupporterBenefit": "\u0414\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u043f\u0440\u0435\u043c\u0438\u0443\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u044b, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0438 \u043c\u043d\u043e\u0433\u043e\u0435 \u0434\u0440\u0443\u0433\u043e\u0435. {0}\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435{1}.", - "LabelSyncNoTargetsHelp": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e, \u043d\u0435 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e.", - "HeaderWelcomeToProjectServerDashboard": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u0438 Emby Server", - "HeaderWelcomeToProjectWebClient": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby", - "ButtonTakeTheTour": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f", - "HeaderWelcomeBack": "\u0417\u0430\u0445\u043e\u0434\u0438\u0442\u0435 \u0435\u0449\u0451!", - "TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b", - "ButtonTakeTheTourToSeeWhatsNew": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u043d\u043e\u0432\u0430\u0446\u0438\u044f\u043c\u0438", - "MessageNoSyncJobsFound": "\u0417\u0430\u0434\u0430\u043d\u0438\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e. \u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0437\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043a\u043d\u043e\u043f\u043e\u043a \u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u043d\u0430\u0445\u043e\u0434\u044f\u0449\u0438\u0445\u0441\u044f \u043f\u043e \u0432\u0441\u0435\u043c\u0443 \u0432\u0435\u0431-\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443.", - "HeaderLibraryAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435", - "HeaderChannelAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u043a\u0430\u043d\u0430\u043b\u0430\u043c", - "HeaderDeviceAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", - "HeaderSelectDevices": "\u0412\u044b\u0431\u043e\u0440 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", - "ButtonCancelItem": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442", - "ButtonQueueForRetry": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u044c \u0434\u043b\u044f \u043f\u043e\u0432\u0442\u043e\u0440\u0430", - "ButtonReenable": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e", - "ButtonLearnMore": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435", - "SyncJobItemStatusSyncedMarkForRemoval": "\u041e\u0442\u043c\u0435\u0447\u0435\u043d\u043e \u0434\u043b\u044f \u0438\u0437\u044a\u044f\u0442\u0438\u044f", - "LabelAbortedByServerShutdown": "(\u041f\u0440\u0435\u0440\u0432\u0430\u043d\u043e \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u0430)", - "LabelScheduledTaskLastRan": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0437\u0430\u043f\u0443\u0441\u043a \u0431\u044b\u043b {0}, \u0437\u0430\u043d\u044f\u043b {1}.", - "HeaderDeleteTaskTrigger": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0442\u0440\u0438\u0433\u0433\u0435\u0440\u0430 \u0437\u0430\u0434\u0430\u0447\u0438", - "MessageDeleteTaskTrigger": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0442\u0440\u0438\u0433\u0433\u0435\u0440 \u0437\u0430\u0434\u0430\u0447\u0438?", - "MessageNoPluginsInstalled": "\u041d\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432.", - "MessageNoPluginsDueToAppStore": "\u0427\u0442\u043e\u0431\u044b \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u043c\u0438, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0432\u0435\u0431-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 Emby.", - "LabelVersionInstalled": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430: {0}", - "LabelNumberReviews": "\u041e\u0442\u0437\u044b\u0432\u044b: {0}", - "LabelFree": "\u0411\u0435\u0441\u043f\u043b.", - "HeaderTo": "\u041a\u043e\u043d\u0435\u0447\u043d\u043e\u0435", - "HeaderPlaybackError": "\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f", - "MessagePlaybackErrorNotAllowed": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0438\u0439 \u043c\u043e\u043c\u0435\u043d\u0442 \u0432\u044b \u043d\u0435 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f. \u0417\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0441\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u0432\u0430\u0448\u0438\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u043c \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c.", - "MessagePlaybackErrorNoCompatibleStream": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u044b\u0435 \u043f\u043e\u0442\u043e\u043a\u0438 \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435 \u0438\u043b\u0438 \u0437\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u043e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0432\u0430\u0448\u0435\u043c\u0443 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0443.", - "MessagePlaybackErrorRateLimitExceeded": "\u0412\u0430\u0448\u0430 \u043f\u0440\u0435\u0434\u0435\u043b\u044c\u043d\u0430\u044f \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0431\u044b\u043b\u0430 \u043f\u0440\u0435\u0432\u044b\u0448\u0435\u043d\u0430. \u0417\u0430 \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u044f\u043c\u0438 \u0441\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441 \u0432\u0430\u0448\u0438\u043c \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u043c \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c.", - "MessagePlaybackErrorPlaceHolder": "\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e \u0441 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.", - "HeaderSelectAudio": "\u0412\u044b\u0431\u043e\u0440 \u0430\u0443\u0434\u0438\u043e", - "HeaderSelectSubtitles": "\u0412\u044b\u0431\u043e\u0440 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432", - "ButtonMarkForRemoval": "\u0418\u0437\u044a\u044f\u0442\u044c \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", - "ButtonUnmarkForRemoval": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0438\u0437\u044a\u044f\u0442\u0438\u0435 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", - "LabelDefaultStream": "(\u0423\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435)", - "LabelForcedStream": "(\u0424\u043e\u0440\u0441-\u044b\u0435)", - "LabelDefaultForcedStream": "(\u0423\u043c\u043e\u043b\u0447.\/\u0424\u043e\u0440\u0441-\u044b\u0435)", - "LabelUnknownLanguage": "\u041d\u0435\u043e\u043f\u043e\u0437\u043d. \u044f\u0437\u044b\u043a", - "MessageConfirmSyncJobItemCancellation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442?", - "ButtonMute": "\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0432\u0443\u043a", - "ButtonUnmute": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0432\u0443\u043a", - "ButtonStop": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c", - "ButtonNextTrack": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...", - "ButtonPause": "\u041f\u0430\u0443\u0437\u0430", - "ButtonPlay": "\u0412\u043e\u0441\u043f\u0440.", - "ButtonEdit": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c", - "ButtonQueue": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u044c...", - "ButtonPlayTrailer": "\u0412\u043e\u0441\u043f\u0440. \u0442\u0440\u0435\u0439\u043b\u0435\u0440", - "ButtonPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442...", - "ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...", - "LabelEnabled": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u043e", - "LabelDisabled": "\u0412\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u043e", - "ButtonMoreInformation": "\u0414\u043e\u043f. \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f...", - "LabelNoUnreadNotifications": "\u041d\u0435\u0442 \u043d\u0435\u043f\u0440\u043e\u0447\u0442\u0451\u043d\u043d\u044b\u0445 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439.", - "ButtonViewNotifications": "\u0421\u043c. \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", - "ButtonMarkTheseRead": "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043a\u0430\u043a \u043f\u0440\u043e\u0447\u0442\u0451\u043d\u043d\u044b\u0435", - "ButtonClose": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c", - "LabelAllPlaysSentToPlayer": "\u0412\u0441\u0451 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u043d\u0430 \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044c", - "MessageInvalidUser": "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "HeaderLoginFailure": "\u0421\u0431\u043e\u0439 \u0432\u0445\u043e\u0434\u0430", - "HeaderAllRecordings": "\u0412\u0441\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", - "RecommendationBecauseYouLike": "\u0418\u0431\u043e \u0432\u0430\u043c \u043d\u0440\u0430\u0432\u0438\u0442\u0441\u044f \u00ab{0}\u00bb", - "RecommendationBecauseYouWatched": "\u0418\u0431\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043e \u00ab{0}\u00bb", - "RecommendationDirectedBy": "\u0420\u0435\u0436\u0438\u0441\u0441\u0438\u0440\u0443\u0435\u0442 {0}", - "RecommendationStarring": "\u0418\u0433\u0440\u0430\u0435\u0442 {0}", - "HeaderConfirmRecordingCancellation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u044b \u0437\u0430\u043f\u0438\u0441\u0438", - "MessageConfirmRecordingCancellation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c?", - "MessageRecordingCancelled": "\u0417\u0430\u043f\u0438\u0441\u044c \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.", - "MessageRecordingScheduled": "\u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u0430.", - "HeaderConfirmSeriesCancellation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043e\u0442\u043c\u0435\u043d\u044b \u0441\u0435\u0440\u0438\u0438", - "MessageConfirmSeriesCancellation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0438\u0430\u043b?", - "MessageSeriesCancelled": "\u0421\u0435\u0440\u0438\u0430\u043b \u043e\u0442\u043c\u0435\u043d\u0451\u043d.", - "HeaderConfirmRecordingDeletion": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0438", - "MessageConfirmRecordingDeletion": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c?", - "MessageRecordingDeleted": "\u0417\u0430\u043f\u0438\u0441\u044c \u0443\u0434\u0430\u043b\u0435\u043d\u0430.", - "ButonCancelRecording": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c", - "MessageRecordingSaved": "\u0417\u0430\u043f\u0438\u0441\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0430.", - "OptionSunday": "\u0432\u043e\u0441\u043a\u0440\u0435\u0441\u0435\u043d\u044c\u0435", - "OptionMonday": "\u043f\u043e\u043d\u0435\u0434\u0435\u043b\u044c\u043d\u0438\u043a", - "OptionTuesday": "\u0432\u0442\u043e\u0440\u043d\u0438\u043a", - "OptionWednesday": "\u0441\u0440\u0435\u0434\u0430", - "OptionThursday": "\u0447\u0435\u0442\u0432\u0435\u0440\u0433", - "OptionFriday": "\u043f\u044f\u0442\u043d\u0438\u0446\u0430", - "OptionSaturday": "\u0441\u0443\u0431\u0431\u043e\u0442\u0430", - "OptionEveryday": "\u0415\u0436\u0435\u0434\u043d\u0435\u0432\u043d\u043e", - "OptionWeekend": "\u0412\u044b\u0445\u043e\u0434\u043d\u044b\u0435", - "OptionWeekday": "\u0414\u043d\u0438 \u043d\u0435\u0434\u0435\u043b\u0438", - "HeaderConfirmDeletion": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f", - "MessageConfirmPathSubstitutionDeletion": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u043f\u0443\u0442\u0438?", - "LiveTvUpdateAvailable": "(\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435)", - "LabelVersionUpToDate": "\u0410\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d!", - "ButtonResetTuner": "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u0442\u044e\u043d\u0435\u0440", - "HeaderResetTuner": "\u0421\u0431\u0440\u043e\u0441 \u0442\u044e\u043d\u0435\u0440\u0430", - "MessageConfirmResetTuner": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0441\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0442\u044e\u043d\u0435\u0440? \u041b\u044e\u0431\u044b\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0438 \u0438\u043b\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u0440\u0435\u0437\u043a\u043e \u043e\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b.", - "ButtonCancelSeries": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b", - "HeaderSeriesRecordings": "\u0417\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432", - "LabelAnytime": "\u041b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f", - "StatusRecording": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442\u0441\u044f", - "StatusWatching": "\u041f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u0442\u0441\u044f", - "StatusRecordingProgram": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0435\u0442\u0441\u044f {0}", - "StatusWatchingProgram": "\u041f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u0442\u0441\u044f {0}", - "HeaderSplitMedia": "\u0420\u0430\u0437\u0431\u0438\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0440\u043e\u0437\u044c", - "MessageConfirmSplitMedia": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0440\u0430\u0437\u0431\u0438\u0442\u044c \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043f\u043e \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u043c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430\u043c?", - "HeaderError": "\u041e\u0448\u0438\u0431\u043a\u0430", - "MessageChromecastConnectionError": "\u041f\u0440\u0438\u0435\u043c\u043d\u0438\u043a Chromecast \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a Emby Server. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0438\u0445 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "MessagePleaseSelectOneItem": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0445\u043e\u0442\u044f \u0431\u044b \u043e\u0434\u0438\u043d \u044d\u043b\u0435\u043c\u0435\u043d\u0442.", - "MessagePleaseSelectTwoItems": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0445\u043e\u0442\u044f \u0431\u044b \u0434\u0432\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430.", - "MessageTheSelectedItemsWillBeGrouped": "\u0412\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u0432 \u043e\u0434\u0438\u043d \u0432\u0438\u0440\u0442\u0443\u0430\u043b\u044c\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442. \u0412 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0445 \u0431\u0443\u0434\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c\u0441\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f, \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u043c\u0430\u044f \u043f\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0442\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?", - "HeaderResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435", - "HeaderMyViews": "\u041c\u043e\u0438 \u0430\u0441\u043f\u0435\u043a\u0442\u044b", - "HeaderLibraryFolders": "\u041c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", - "HeaderLatestMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "ButtonMoreItems": "\u0415\u0449\u0451...", - "ButtonMore": "\u0415\u0449\u0451...", - "HeaderFavoriteMovies": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b", - "HeaderFavoriteShows": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0422\u0412-\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b", - "HeaderFavoriteEpisodes": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", - "HeaderFavoriteGames": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0438\u0433\u0440\u044b", - "HeaderRatingsDownloads": "\u041e\u0446\u0435\u043d\u043a\u0430 \/ \u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0438", - "HeaderConfirmProfileDeletion": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b\u044f", - "MessageConfirmProfileDeletion": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c?", - "HeaderSelectServerCachePath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u0434\u043b\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430", - "HeaderSelectTranscodingPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u0434\u043b\u044f \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438", - "HeaderSelectImagesByNamePath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u0434\u043b\u044f \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0447\u0435\u0440\u0435\u0437 \u0438\u043c\u044f", - "HeaderSelectMetadataPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u0434\u043b\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445", - "HeaderSelectServerCachePathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432 \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", - "HeaderSelectTranscodingPathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", - "HeaderSelectImagesByNamePathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0447\u0435\u0440\u0435\u0437 \u0438\u043c\u044f. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", - "HeaderSelectMetadataPathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c, \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0445\u0440\u0430\u043d\u0438\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", - "HeaderSelectChannelDownloadPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", - "HeaderSelectChannelDownloadPathHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u043b\u044f \u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u043e\u0432 \u043a\u044d\u0448\u0430 \u043a\u0430\u043d\u0430\u043b\u043e\u0432. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", - "OptionNewCollection": "\u041d\u043e\u0432\u0430\u044f...", - "ButtonAdd": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c", - "ButtonRemove": "\u0418\u0437\u044a\u044f\u0442\u044c", - "LabelChapterDownloaders": "\u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u0441\u0446\u0435\u043d:", - "LabelChapterDownloadersHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0438 \u0440\u0430\u043d\u0436\u0438\u0440\u0443\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u0441\u0446\u0435\u043d \u0432 \u043f\u043e\u0440\u044f\u0434\u043a\u0435 \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u0430. \u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u043d\u0438\u0437\u043a\u043e\u0433\u043e \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u0430 \u0431\u0443\u0434\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u044e\u0449\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.", - "HeaderFavoriteAlbums": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b", - "HeaderLatestChannelMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432", - "ButtonOrganizeFile": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0442\u044c \u0444\u0430\u0439\u043b", - "ButtonDeleteFile": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0444\u0430\u0439\u043b", - "HeaderOrganizeFile": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430", - "HeaderDeleteFile": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430", - "StatusSkipped": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043e", - "StatusFailed": "\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u043e", - "StatusSuccess": "\u0423\u0441\u043f\u0435\u0448\u043d\u043e", - "MessageFileWillBeDeleted": "\u0411\u0443\u0434\u0435\u0442 \u0443\u0434\u0430\u043b\u0451\u043d \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0444\u0430\u0439\u043b:", - "MessageSureYouWishToProceed": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c?", - "MessageDuplicatesWillBeDeleted": "\u0412 \u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435 \u0431\u0443\u0434\u0443\u0442 \u0443\u0434\u0430\u043b\u0435\u043d\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0434\u0443\u0431\u043b\u0438\u043a\u0430\u0442\u044b:", - "MessageFollowingFileWillBeMovedFrom": "\u0411\u0443\u0434\u0435\u0442 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0451\u043d \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0444\u0430\u0439\u043b \u0441:", - "MessageDestinationTo": "\u043a:", - "HeaderSelectWatchFolder": "\u0412\u044b\u0431\u043e\u0440 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u0435\u043c\u043e\u0439 \u043f\u0430\u043f\u043a\u0438", - "HeaderSelectWatchFolderHelp": "\u041d\u0430\u0439\u0434\u0438\u0442\u0435 \u0438\u043b\u0438 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044f. \u041f\u0430\u043f\u043a\u0430 \u0434\u043e\u043b\u0436\u043d\u0430 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438.", - "OrganizePatternResult": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442: {0}", - "AutoOrganizeError": "\u041e\u0448\u0438\u0431\u043a\u0430 \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u0430", - "FileOrganizeManually": "\u0423\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u0430", - "ErrorOrganizingFileWithErrorCode": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0443\u043f\u043e\u0440\u044f\u0434\u043e\u0447\u0438\u0432\u0430\u043d\u0438\u0438 \u0444\u0430\u0439\u043b\u0430. \u041a\u043e\u0434 \u043e\u0448\u0438\u0431\u043a\u0438: {0}.", - "HeaderRestart": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a", - "HeaderShutdown": "\u0417\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u0435 \u0440\u0430\u0431\u043e\u0442\u044b", - "MessageConfirmRestart": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c Emby Server?", - "MessageConfirmShutdown": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443 Emby Server?", - "ButtonUpdateNow": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e", - "ValueItemCount": "{0} \u044d\u043b\u0435\u043c\u0435\u043d\u0442(\u0430\/\u043e\u0432)", - "ValueItemCountPlural": "{0} \u044d\u043b\u0435\u043c\u0435\u043d\u0442(\u0430\/\u043e\u0432)", - "NewVersionOfSomethingAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f {0}!", - "VersionXIsAvailableForDownload": "\u0412\u0435\u0440\u0441\u0438\u044f {0} \u0441\u0435\u0439\u0447\u0430\u0441 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438.", - "LabelVersionNumber": "\u0412\u0435\u0440\u0441\u0438\u044f {0}", - "LabelPlayMethodTranscoding": "\u041f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u0443\u0435\u0442\u0441\u044f", - "LabelPlayMethodDirectStream": "\u0422\u0440\u0430\u043d\u0441\u043b\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", - "LabelPlayMethodDirectPlay": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f \u043d\u0430\u043f\u0440\u044f\u043c\u0443\u044e", - "LabelAudioCodec": "\u0410\u0443\u0434\u0438\u043e: {0}", - "LabelVideoCodec": "\u0412\u0438\u0434\u0435\u043e: {0}", - "LabelLocalAccessUrl": "\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f: {0}", - "LabelRemoteAccessUrl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f: {0}", - "LabelRunningOnPort": "\u0420\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043d\u0430 HTTP-\u043f\u043e\u0440\u0442\u0443 {0}.", - "LabelRunningOnPorts": "\u0420\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043d\u0430 HTTP-\u043f\u043e\u0440\u0442\u0443 {0} \u0438 HTTPS-\u043f\u043e\u0440\u0442\u0443 {1}.", - "HeaderLatestFromChannel": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 {0}", - "LabelUnknownLanaguage": "\u041d\u0435\u043e\u043f\u043e\u0437\u043d. \u044f\u0437\u044b\u043a", - "HeaderCurrentSubtitles": "\u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b", - "MessageDownloadQueued": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0431\u044b\u043b\u0430 \u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u0432 \u043e\u0447\u0435\u0440\u0435\u0434\u044c.", - "MessageAreYouSureDeleteSubtitles": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b \u0441\u0443\u0431\u0438\u0442\u0440\u043e\u0432?", - "ButtonRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435...", - "HeaderLatestTvRecordings": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438", - "ButtonOk": "\u041e\u041a", - "ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c", - "ButtonRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c", - "LabelCurrentPath": "\u0422\u0435\u043a\u0443\u0449\u0438\u0439 \u043f\u0443\u0442\u044c:", - "HeaderSelectMediaPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", - "HeaderSelectPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438", - "ButtonNetwork": "\u0421\u0435\u0442\u044c...", - "MessageDirectoryPickerInstruction": "\u0421\u0435\u0442\u0435\u0432\u044b\u0435 \u043f\u0443\u0442\u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u0432\u0435\u0441\u0442\u0438 \u0432\u0440\u0443\u0447\u043d\u0443\u044e, \u0432 \u0442\u043e\u043c \u0441\u043b\u0443\u0447\u0430\u0435, \u0435\u0441\u043b\u0438 \u043f\u0440\u0438 \u043d\u0430\u0436\u0430\u0442\u0438\u0438 \u043a\u043d\u043e\u043f\u043a\u0438 \u00ab\u0421\u0435\u0442\u044c\u00bb \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442 \u0441\u0431\u043e\u0439 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432. \u041d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: {0} \u0438\u043b\u0438 {1}.", - "MessageDirectoryPickerBSDInstruction": "\u041a\u0430\u0441\u0430\u0435\u043c\u043e BSD, \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e, \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0435 \u0432 \u0432\u0430\u0448\u0435\u043c FreeNAS Jail \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c Emby \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043a \u043d\u0435\u043c\u0443 \u0434\u043e\u0441\u0442\u0443\u043f.", - "MessageDirectoryPickerLinuxInstruction": "\u0414\u043b\u044f Linux, \u0432\u044b \u0434\u043e\u043b\u0436\u043d\u044b \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e Emby, \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435, \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043b\u044f \u0447\u0442\u0435\u043d\u0438\u044f \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0439 \u0445\u0440\u0430\u043d\u0438\u043b\u0438\u0449\u0430.", - "HeaderMenu": "\u041c\u0435\u043d\u044e", - "ButtonOpen": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c", - "ButtonOpenInNewTab": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u0432 \u043d\u043e\u0432\u043e\u0439 \u0432\u043a\u043b\u0430\u0434\u043a\u0435", - "ButtonShuffle": "\u041f\u0435\u0440\u0435\u043c\u0435\u0448\u0430\u0442\u044c", - "ButtonInstantMix": "\u0410\u0432\u0442\u043e\u043c\u0438\u043a\u0441...", - "ButtonResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c", - "HeaderScenes": "\u0421\u0446\u0435\u043d\u044b", - "HeaderAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438", - "HeaderLibraries": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438", - "HeaderSubtitles": "\u0421\u0443\u0431\u0442.", - "HeaderVideoQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u0438\u0434\u0435\u043e", - "MessageErrorPlayingVideo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e.", - "MessageEnsureOpenTuner": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0442\u044e\u043d\u0435\u0440.", - "ButtonHome": "\u0413\u043b\u0430\u0432\u043d\u043e\u0435...", - "ButtonDashboard": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c...", - "ButtonReports": "\u041e\u0442\u0447\u0451\u0442\u044b...", - "ButtonMetadataManager": "\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445...", - "HeaderTime": "\u0412\u0440\u0435\u043c\u044f", - "HeaderName": "\u0418\u043c\u044f (\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435)", - "HeaderAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", - "HeaderAlbumArtist": "\u0418\u0441\u043f. \u0430\u043b\u044c\u0431\u043e\u043c\u0430", - "HeaderArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", - "LabelAddedOnDate": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e {0}", - "ButtonStart": "\u0417\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c", - "HeaderChannels": "\u041a\u0430\u043d\u0430\u043b\u044b", - "HeaderMediaFolders": "\u041c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", - "HeaderBlockItemsWithNoRating": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0435\u0439 \u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438:", - "OptionBlockOthers": "\u0414\u0440\u0443\u0433\u0438\u0435", - "OptionBlockTvShows": "\u0422\u0412-\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b", - "OptionBlockTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b", - "OptionBlockMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", - "OptionBlockMovies": "\u0424\u0438\u043b\u044c\u043c\u044b", - "OptionBlockBooks": "\u041a\u043d\u0438\u0433\u0438", - "OptionBlockGames": "\u0418\u0433\u0440\u044b", - "OptionBlockLiveTvPrograms": "\u042d\u0444\u0438\u0440\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438", - "OptionBlockLiveTvChannels": "\u042d\u0444\u0438\u0440\u043d\u044b\u0435 \u043a\u0430\u043d\u0430\u043b\u044b", - "OptionBlockChannelContent": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u0430", - "ButtonRevoke": "\u041e\u0442\u043e\u0437\u0432\u0430\u0442\u044c", - "MessageConfirmRevokeApiKey": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043e\u0442\u043e\u0437\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447? \u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043a Emby Server \u0431\u0443\u0434\u0435\u0442 \u0440\u0435\u0437\u043a\u043e \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u043e.", - "HeaderConfirmRevokeApiKey": "\u041e\u0442\u0437\u044b\u0432 API-\u043a\u043b\u044e\u0447\u0430", - "ValueContainer": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440: {0}", - "ValueAudioCodec": "\u0410\u0443\u0434\u0438\u043e \u043a\u043e\u0434\u0435\u043a: {0}", - "ValueVideoCodec": "\u0412\u0438\u0434\u0435\u043e \u043a\u043e\u0434\u0435\u043a: {0}", - "ValueCodec": "\u041a\u043e\u0434\u0435\u043a: {0}", - "ValueConditions": "\u041e\u0431\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430: {0}", - "LabelAll": "\u0412\u0441\u0435", - "HeaderDeleteImage": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u0430", - "MessageFileNotFound": "\u0424\u0430\u0439\u043b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d.", - "MessageFileReadError": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0447\u0442\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430.", - "ButtonNextPage": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430...", - "ButtonPreviousPage": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430...", - "ButtonMoveLeft": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043b\u0435\u0432\u043e", - "ButtonMoveRight": "\u0414\u0432\u0438\u0433\u0430\u0442\u044c \u0432\u043f\u0440\u0430\u0432\u043e", - "ButtonBrowseOnlineImages": "\u0421\u043c. \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0432 \u0441\u0435\u0442\u0438", - "HeaderDeleteItem": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430", - "ConfirmDeleteItem": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?", - "HeaderDeleteItems": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432", - "ConfirmDeleteItems": "\u041f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432, \u043e\u043d \u0443\u0434\u0430\u043b\u0438\u0442\u0441\u044f \u0438 \u0438\u0437 \u0444\u0430\u0439\u043b\u043e\u0432\u043e\u0439 \u0441\u0438\u0441\u0442\u0435\u043c\u044b, \u0438 \u0438\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c?", - "MessagePleaseEnterNameOrId": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0439 ID.", - "MessageValueNotCorrect": "\u0412\u0432\u0435\u0434\u0451\u043d\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043d\u0435 \u0432\u0435\u0440\u043d\u043e. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "MessageItemSaved": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u0451\u043d.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0441\u043e\u0433\u043b\u0430\u0441\u0438\u0435 \u0441 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.", - "OptionEnded": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u043b\u0441\u044f", - "OptionContinuing": "\u041f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0435\u0442\u0441\u044f", - "OptionOff": "\u0412\u044b\u043a\u043b", - "OptionOn": "\u0412\u043a\u043b", - "ButtonSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b...", - "ButtonUninstall": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c", - "HeaderEnabledFields": "\u0412\u043a\u043b\u044e\u0447\u0451\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044f", - "HeaderEnabledFieldsHelp": "\u0421\u043d\u0438\u043c\u0438\u0442\u0435 \u0444\u043b\u0430\u0436\u043e\u043a, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u043b\u0435 \u0438 \u0437\u0430\u0449\u0438\u0442\u0438\u0442\u044c \u0435\u0433\u043e \u0434\u0430\u043d\u043d\u044b\u0435 \u043e\u0442 \u0438\u0437\u043c\u0435\u043d\u043d\u0435\u043d\u0438\u0439.", - "HeaderLiveTV": "\u042d\u0444\u0438\u0440", - "MissingLocalTrailer": "\u041d\u0435\u0442 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430.", - "MissingPrimaryImage": "\u041d\u0435\u0442 \u0433\u043e\u043b\u043e\u0432\u043d\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430.", - "MissingBackdropImage": "\u041d\u0435\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0430 \u0437\u0430\u0434\u043d\u0438\u043a\u0430.", - "MissingLogoImage": "\u041d\u0435\u0442 \u0440\u0438\u0441\u0443\u043d\u043a\u0430 \u043b\u043e\u0433\u043e\u0442\u0438\u043f\u0430.", - "MissingEpisode": "\u041d\u0435\u0442 \u044d\u043f\u0438\u0437\u043e\u0434\u0430.", - "OptionScreenshots": "\u0421\u043d\u0438\u043c\u043a\u0438 \u044d\u043a\u0440\u0430\u043d\u0430", - "OptionBackdrops": "\u0417\u0430\u0434\u043d\u0438\u043a\u0438", - "OptionImages": "\u0420\u0438\u0441\u0443\u043d\u043a\u0438", - "OptionKeywords": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430", - "OptionTags": "\u0422\u0435\u0433\u0438", - "OptionStudios": "\u0421\u0442\u0443\u0434\u0438\u0438", - "OptionName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435", - "OptionOverview": "\u041e\u0431\u0437\u043e\u0440", - "OptionGenres": "\u0416\u0430\u043d\u0440\u044b", - "OptionParentalRating": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", - "OptionPeople": "\u041b\u044e\u0434\u0438", - "OptionRuntime": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c", - "OptionProductionLocations": "\u041c\u0435\u0441\u0442\u0430 \u0441\u044a\u0451\u043c\u043e\u043a", - "OptionBirthLocation": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f", - "LabelAllChannels": "\u0412\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b", - "LabelLiveProgram": "\u042d\u0424\u0418\u0420", - "LabelNewProgram": "\u041d\u041e\u0412\u041e\u0415", - "LabelPremiereProgram": "\u041f\u0420\u0415\u041c\u042c\u0415\u0420\u0410", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "\u0421\u043c\u0435\u043d\u0430 \u0442\u0438\u043f\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f", - "HeaderChangeFolderTypeHelp": "\u0427\u0442\u043e\u0431\u044b \u0441\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0438\u043f, \u0443\u0434\u0430\u043b\u0438\u0442\u0435 \u0438 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443 \u0441 \u043d\u043e\u0432\u044b\u043c \u0442\u0438\u043f\u043e\u043c.", - "HeaderAlert": "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435", - "MessagePleaseRestart": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435.", - "ButtonRestart": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c", - "MessagePleaseRefreshPage": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u043e\u0432\u044b\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442 Emby Server.", - "ButtonHide": "\u0421\u043a\u0440\u044b\u0442\u044c", - "MessageSettingsSaved": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u044b.", - "ButtonSignOut": "\u0412\u044b\u0439\u0442\u0438", - "ButtonMyProfile": "\u041c\u043e\u0439 \u043f\u0440\u043e\u0444\u0438\u043b\u044c...", - "ButtonMyPreferences": "\u041c\u043e\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438...", - "MessageBrowserDoesNotSupportWebSockets": "\u0412 \u0434\u0430\u043d\u043d\u043e\u043c \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435 \u043d\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u043e\u0432. \u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Chrome, Firefox, IE10+, Safari (iOS) \u0438\u043b\u0438 Opera.", - "LabelInstallingPackage": "\u0423\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u0442\u0441\u044f {0}", - "LabelPackageInstallCompleted": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0430.", - "LabelPackageInstallFailed": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430.", - "LabelPackageInstallCancelled": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 {0} \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430.", - "TabServer": "\u0421\u0435\u0440\u0432\u0435\u0440", - "TabUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438", - "TabLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430", - "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "TabDLNA": "DLNA", - "TabLiveTV": "\u042d\u0444\u0438\u0440", - "TabAutoOrganize": "\u0410\u0432\u0442\u043e\u043f\u043e\u0440\u044f\u0434\u043e\u043a", - "TabPlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b", - "TabAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435", - "TabHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430", - "TabScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a", - "ButtonFullscreen": "\u041f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d", - "ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e \u0434\u043e\u0440\u043e\u0436\u043a\u0438", - "ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b...", - "ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...", - "ButtonQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e...", - "HeaderNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", - "HeaderSelectPlayer": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f", - "ButtonSelect": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c", - "ButtonNew": "\u041d\u043e\u0432\u044b\u0439", - "MessageInternetExplorerWebm": "\u0414\u043b\u044f \u043b\u0443\u0447\u0448\u0435\u0433\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0432 Internet Explorer, \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043f\u043b\u0430\u0433\u0438\u043d \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f WebM.", - "HeaderVideoError": "\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0438\u0434\u0435\u043e", - "ButtonAddToPlaylist": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442", - "HeaderAddToPlaylist": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442", - "LabelName": "\u0418\u043c\u044f (\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435):", - "ButtonSubmit": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c", - "LabelSelectPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442:", - "OptionNewPlaylist": "\u041d\u043e\u0432\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442...", - "MessageAddedToPlaylistSuccess": "\u041e\u041a", - "ButtonView": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c", - "ButtonViewSeriesRecording": "\u0421\u043c. \u0437\u0430\u043f\u0438\u0441\u044c \u0441\u0435\u0440\u0438\u0430\u043b\u0430", - "ValueOriginalAirDate": "\u0414\u0430\u0442\u0430 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u0433\u043e \u044d\u0444\u0438\u0440\u0430: {0}", - "ButtonRemoveFromPlaylist": "\u0418\u0437\u044a\u044f\u0442\u044c \u0438\u0437 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u0430", - "HeaderSpecials": "\u0421\u043f\u0435\u0446.", - "HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b.", - "HeaderAudio": "\u0410\u0443\u0434\u0438\u043e", - "HeaderResolution": "\u0420\u0430\u0437\u0440.", - "HeaderVideo": "\u0412\u0438\u0434\u0435\u043e", - "HeaderRuntime": "\u0414\u043b\u0438\u0442.", - "HeaderCommunityRating": "\u041e\u0431\u0449. \u043e\u0446\u0435\u043d\u043a\u0430", - "HeaderPasswordReset": "\u0421\u0431\u0440\u043e\u0441 \u043f\u0430\u0440\u043e\u043b\u044f", - "HeaderParentalRating": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f", - "HeaderReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f.", - "HeaderDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f", - "HeaderSeries": "\u0421\u0435\u0440\u0438\u0430\u043b", - "HeaderSeason": "\u0421\u0435\u0437\u043e\u043d", - "HeaderSeasonNumber": "\u2116 \u0441\u0435\u0437\u043e\u043d\u0430", - "HeaderNetwork": "\u0422\u0435\u043b\u0435\u0441\u0435\u0442\u044c", - "HeaderYear": "\u0413\u043e\u0434", - "HeaderGameSystem": "\u0418\u0433\u0440. \u0441\u0438\u0441\u0442.", - "HeaderPlayers": "\u0418\u0433\u0440\u043e\u043a\u0438", - "HeaderEmbeddedImage": "\u0412\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0439 \u0440\u0438\u0441\u0443\u043d\u043e\u043a", - "HeaderTrack": "\u0414\u043e\u0440-\u043a\u0430", - "HeaderDisc": "\u0414\u0438\u0441\u043a", - "OptionMovies": "\u0424\u0438\u043b\u044c\u043c\u044b", - "OptionCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438", - "OptionSeries": "\u0422\u0412-\u0441\u0435\u0440\u0438\u0430\u043b\u044b", - "OptionSeasons": "\u0422\u0412-\u0441\u0435\u0437\u043e\u043d\u044b", - "OptionEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b", - "OptionGames": "\u0418\u0433\u0440\u044b", - "OptionGameSystems": "\u0418\u0433\u0440\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b", - "OptionMusicArtists": "\u0418\u0441\u043f-\u043b\u0438 \u043c\u0443\u0437\u044b\u043a\u0438", - "OptionMusicAlbums": "\u041c\u0443\u0437-\u044b\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b", - "OptionMusicVideos": "\u041c\u0443\u0437-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", - "OptionSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", - "OptionHomeVideos": "\u0414\u043e\u043c-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e", - "OptionBooks": "\u041a\u043d\u0438\u0433\u0438", - "OptionAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", - "ButtonUp": "\u0412\u0432\u0435\u0440\u0445", - "ButtonDown": "\u0412\u043d\u0438\u0437", - "LabelMetadataReaders": "\u0421\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u0435\u043b\u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:", - "LabelMetadataReadersHelp": "\u0420\u0430\u043d\u0436\u0438\u0440\u0443\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0435 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0432 \u043f\u043e\u0440\u044f\u0434\u043a\u0435 \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u0430. \u0411\u0443\u0434\u0435\u0442 \u0441\u0447\u0438\u0442\u0430\u043d \u043f\u0435\u0440\u0432\u044b\u0439 \u0436\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b.", - "LabelMetadataDownloaders": "\u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:", - "LabelMetadataDownloadersHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0438 \u0440\u0430\u043d\u0436\u0438\u0440\u0443\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0432 \u043f\u043e\u0440\u044f\u0434\u043a\u0435 \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u0430. \u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0438 \u0441 \u043d\u0438\u0437\u043a\u0438\u043c \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u043e\u043c \u0431\u0443\u0434\u0443\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u044e\u0449\u0435\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438.", - "LabelMetadataSavers": "\u0425\u0440\u0430\u043d\u0438\u0442\u0435\u043b\u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:", - "LabelMetadataSaversHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0444\u043e\u0440\u043c\u0430\u0442\u044b \u0444\u0430\u0439\u043b\u043e\u0432, \u043a\u0443\u0434\u0430 \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435.", - "LabelImageFetchers": "\u041e\u0442\u0431\u043e\u0440\u0449\u0438\u043a\u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432:", - "LabelImageFetchersHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0438 \u0440\u0430\u043d\u0436\u0438\u0440\u0443\u0439\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0435 \u043e\u0442\u0431\u043e\u0440\u0449\u0438\u043a\u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432 \u043f\u043e\u0440\u044f\u0434\u043a\u0435 \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u0430.", - "ButtonQueueAllFromHere": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u044c \u0432\u0441\u0435 \u043e\u0442\u0441\u044e\u0434\u0430", - "ButtonPlayAllFromHere": "\u0412\u043e\u0441\u043f\u0440. \u0432\u0441\u0435 \u043e\u0442\u0441\u044e\u0434\u0430", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430", - "PersonTypePerson": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430", - "LabelTitleDisplayOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0439:", - "OptionSortName": "\u0418\u043c\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438", - "OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430", - "LabelSeasonNumber": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430:", - "LabelDiscNumber": "\u041d\u043e\u043c\u0435\u0440 \u0434\u0438\u0441\u043a\u0430", - "LabelParentNumber": "\u0420\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u043d\u043e\u043c\u0435\u0440", - "LabelEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u0430", - "LabelTrackNumber": "\u041d\u043e\u043c\u0435\u0440 \u0434\u043e\u0440\u043e\u0436\u043a\u0438:", - "LabelNumber": "\u041d\u043e\u043c\u0435\u0440:", - "LabelReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430:", - "LabelEndDate": "\u041a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u0434\u0430\u0442\u0430:", - "LabelYear": "\u0413\u043e\u0434:", - "LabelDateOfBirth": "\u0414\u0430\u0442\u0430 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f:", - "LabelBirthYear": "\u0413\u043e\u0434 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f:", - "LabelBirthDate": "\u0414\u0430\u0442\u0430 \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f:", - "LabelDeathDate": "\u0414\u0430\u0442\u0430 \u0441\u043c\u0435\u0440\u0442\u0438:", - "HeaderRemoveMediaLocation": "\u0418\u0437\u044a\u044f\u0442\u0438\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", - "MessageConfirmRemoveMediaLocation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u0437\u044a\u044f\u0442\u044c \u044d\u0442\u043e \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435?", - "HeaderRenameMediaFolder": "\u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", - "LabelNewName": "\u041d\u043e\u0432\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:", - "HeaderAddMediaFolder": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", - "HeaderAddMediaFolderHelp": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 (\u041a\u0438\u043d\u043e, \u041c\u0443\u0437\u044b\u043a\u0430, \u0422\u0412 \u0438 \u0442.\u043f.).", - "HeaderRemoveMediaFolder": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "\u0418\u0437 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u0438\u0437\u044a\u044f\u0442\u044b \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 :", - "MessageAreYouSureYouWishToRemoveMediaFolder": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0438\u0437\u044a\u044f\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0443?", - "ButtonRename": "\u041f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u0442\u044c", - "ButtonChangeContentType": "\u0421\u043c\u0435\u043d\u0438\u0442\u044c \u0442\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f", - "HeaderMediaLocations": "\u0420\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445", - "LabelContentTypeValue": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f: {0}", - "LabelPathSubstitutionHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e: \u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u0443\u0442\u0435\u0439 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u043f\u0443\u0442\u0435\u0439 \u0441\u043e \u0441\u0435\u0442\u0435\u0432\u044b\u043c\u0438 \u043e\u0431\u0449\u0438\u043c\u0438 \u0440\u0435\u0441\u0443\u0440\u0441\u0430\u043c\u0438, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0441\u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0434\u043b\u044f \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.", - "FolderTypeUnset": "\u041d\u0435\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0439 (\u0440\u0430\u0437\u043d\u043e\u0442\u0438\u043f\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435)", - "FolderTypeMovies": "\u041a\u0438\u043d\u043e", - "FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430", - "FolderTypeAdultVideos": "\u0412\u0438\u0434\u0435\u043e \u0434\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445", - "FolderTypePhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438", - "FolderTypeMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", - "FolderTypeHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e", - "FolderTypeGames": "\u0418\u0433\u0440\u044b", - "FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438", - "FolderTypeTvShows": "\u0422\u0412", - "TabMovies": "\u0424\u0438\u043b\u044c\u043c\u044b", - "TabSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b", - "TabEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b", - "TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b", - "TabGames": "\u0418\u0433\u0440\u044b", - "TabAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", - "TabSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", - "TabMusicVideos": "\u041c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u0432\u0438\u0434\u0435\u043e\u043a\u043b\u0438\u043f\u044b", - "BirthPlaceValue": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f: {0}", - "DeathDateValue": "\u041a\u043e\u043d\u0447\u0438\u043d\u0430: {0}", - "BirthDateValue": "\u0420\u043e\u0436\u0434\u0435\u043d\u0438\u0435: {0}", - "HeaderLatestReviews": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043e\u0442\u0437\u044b\u0432\u044b", - "HeaderPluginInstallation": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430", - "MessageAlreadyInstalled": "\u0414\u0430\u043d\u043d\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430.", - "ValueReviewCount": "{0} \u043e\u0442\u0437\u044b\u0432(\u0430\/\u043e\u0432)", - "MessageYouHaveVersionInstalled": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f {0}.", - "MessageTrialExpired": "\u041f\u0440\u043e\u0431\u043d\u044b\u0439 \u043f\u0435\u0440\u0438\u043e\u0434 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0443\u0436\u0435 \u0438\u0441\u0442\u0451\u043a", - "MessageTrialWillExpireIn": "\u041f\u0440\u043e\u0431\u043d\u044b\u0439 \u043f\u0435\u0440\u0438\u043e\u0434 \u0434\u043b\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430 \u0438\u0441\u0442\u0435\u0447\u0451\u0442 \u0447\u0435\u0440\u0435\u0437 {0} \u0434\u043d(\u044f\/\u0435\u0439)", - "MessageInstallPluginFromApp": "\u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0430\u0433\u0438\u043d \u0434\u043e\u043b\u0436\u0435\u043d \u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043e\u043d\u043e \u043f\u0440\u0435\u0434\u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043e.", - "ValuePriceUSD": "\u0426\u0435\u043d\u0430: {0} USD", - "MessageFeatureIncludedWithSupporter": "\u0412\u044b \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430, \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .", - "MessageChangeRecurringPlanConfirm": "\u041f\u043e\u0441\u043b\u0435 \u0437\u0430\u0432\u0435\u0440\u0448\u0435\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0437\u0430\u043a\u0446\u0438\u0438, \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0432\u0430\u0448\u0435 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435 \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 PayPal. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441 \u0437\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0443 Emby.", - "ButtonDelete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c", - "HeaderEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430", - "MessageEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", - "MessagePendingEmbyAccountAdded": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430 \u0434\u043b\u044f \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u041f\u0438\u0441\u044c\u043c\u043e \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u0432\u043b\u0430\u0434\u0435\u043b\u044c\u0446\u0443 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. \u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0443\u0436\u043d\u043e \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0441\u0441\u044b\u043b\u043a\u0435 \u0432 \u043f\u0438\u0441\u044c\u043c\u0435.", - "HeaderEmbyAccountRemoved": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0438\u0437\u044a\u044f\u0442\u0430", - "MessageEmbyAccontRemoved": "\u0423\u0447\u0451\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0438\u0437\u044a\u044f\u0442\u0430 \u0443 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f", - "TooltipLinkedToEmbyConnect": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u0432\u044f\u0437\u044c \u0441 Emby Connect", - "HeaderUnrated": "\u0411\u0435\u0437 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438", - "ValueDiscNumber": "\u0414\u0438\u0441\u043a {0}", - "HeaderUnknownDate": "\u041d\u0435\u043e\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u0430\u044f \u0434\u0430\u0442\u0430", - "HeaderUnknownYear": "\u041d\u0435\u043e\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u044b\u0439 \u0433\u043e\u0434", - "ValueMinutes": "{0} \u043c\u0438\u043d", - "ButtonPlayExternalPlayer": "\u0412\u043e\u0441\u043f\u0440. \u0432\u043d\u0435\u0448\u043d\u0438\u043c \u043f\u0440\u043e\u0438\u0433\u0440-\u0435\u043c", - "HeaderSelectExternalPlayer": "\u0412\u044b\u0431\u043e\u0440 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f", - "HeaderExternalPlayerPlayback": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0432\u043d\u0435\u0448\u043d\u0438\u043c \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0435\u043c", - "ButtonImDone": "\u042f \u0437\u0430\u043a\u043e\u043d\u0447\u0438\u043b", - "OptionWatched": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043e", - "OptionUnwatched": "\u041d\u0435 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043e", - "ExternalPlayerPlaystateOptionsHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435, \u043a\u0430\u043a \u0432\u044b \u0445\u043e\u0442\u0435\u043b\u0438 \u0431\u044b \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0432\u0438\u0434\u0435\u043e \u0432\u043e \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437.", - "LabelMarkAs": "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043a\u0430\u043a:", - "OptionInProgress": "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f", - "LabelResumePoint": "\u0422\u043e\u0447\u043a\u0430 \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f:", - "ValueOneMovie": "1 \u0444\u0438\u043b\u044c\u043c", - "ValueMovieCount": "{0} \u0444\u0438\u043b\u044c\u043c(\u0430\/\u043e\u0432)", - "ValueOneTrailer": "1 \u0442\u0440\u0435\u0439\u043b\u0435\u0440", - "ValueTrailerCount": "{0} \u0442\u0440\u0435\u0439\u043b\u0435\u0440(\u0430\/\u043e\u0432)", - "ValueOneSeries": "1 \u0441\u0435\u0440\u0438\u0430\u043b", - "ValueSeriesCount": "{0} \u0441\u0435\u0440\u0438\u0430\u043b(\u0430\/\u043e\u0432)", - "ValueOneEpisode": "1 \u044d\u043f\u0438\u0437\u043e\u0434", - "ValueEpisodeCount": "{0} \u044d\u043f\u0438\u0437\u043e\u0434(\u0430\/\u043e\u0432)", - "ValueOneGame": "1 \u0438\u0433\u0440\u0430", - "ValueGameCount": "{0} \u0438\u0433\u0440(\u044b)", - "ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c", - "ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c(\u0430\/\u043e\u0432)", - "ValueOneSong": "1 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f", - "ValueSongCount": "{0} \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438(\u0438\/\u0439)", - "ValueOneMusicVideo": "1 \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e", - "ValueMusicVideoCount": "{0} \u043c\u0443\u0437\u044b\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u0432\u0438\u0434\u0435\u043e", - "HeaderOffline": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e", - "HeaderUnaired": "\u041e\u0436\u0438\u0434\u0430\u0435\u0442\u0441\u044f", - "HeaderMissing": "\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442", - "ButtonWebsite": "\u0412\u0435\u0431\u0441\u0430\u0439\u0442...", - "TooltipFavorite": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435", - "TooltipLike": "\u041d\u0440\u0430\u0432\u0438\u0442\u0441\u044f", - "TooltipDislike": "\u041d\u0435 \u043d\u0440\u0430\u0432\u0438\u0442\u0441\u044f", - "TooltipPlayed": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u043e", - "ValueSeriesYearToPresent": "{0} - \u041d.\u0412.", - "ValueAwards": "\u041f\u0440\u0438\u0437\u044b: {0}", - "ValueBudget": "\u0411\u044e\u0434\u0436\u0435\u0442: {0}", - "ValueRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430: {0}", - "ValuePremiered": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430 {0}", - "ValuePremieres": "\u041f\u0440\u0435\u043c\u044c\u0435\u0440\u0430 {0}", - "ValueStudio": "\u0421\u0442\u0443\u0434\u0438\u044f: {0}", - "ValueStudios": "\u0421\u0442\u0443\u0434\u0438\u0438: {0}", - "ValueStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}", - "ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}", - "LabelLimit": "\u041f\u0440\u0435\u0434\u0435\u043b:", - "ValueLinks": "\u0421\u0441\u044b\u043b\u043a\u0438: {0}", - "HeaderPeople": "\u041b\u044e\u0434\u0438", - "HeaderCastAndCrew": "\u0421\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c \u0438 \u0441\u043d\u0438\u043c\u0430\u043b\u0438", - "ValueArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c: {0}", - "ValueArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438: {0}", - "HeaderTags": "\u0422\u0435\u0433\u0438", - "MediaInfoCameraMake": "\u041f\u0440\u043e\u0438\u0437\u0432-\u043b\u044c \u043a\u0430\u043c\u0435\u0440\u044b", - "MediaInfoCameraModel": "\u041c\u043e\u0434\u0435\u043b\u044c \u043a\u0430\u043c\u0435\u0440\u044b", - "MediaInfoAltitude": "\u0412\u044b\u0441\u043e\u0442\u0430", - "MediaInfoAperture": "\u0414\u0438\u0430\u0444\u0440\u0430\u0433\u043c\u0430", - "MediaInfoExposureTime": "\u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430", - "MediaInfoFocalLength": "\u0424\u043e\u043a\u0443\u0441. \u0440\u0430\u0441\u0441\u0442-\u0438\u0435", - "MediaInfoOrientation": "\u041e\u0440\u0438\u0435\u043d\u0442\u0430\u0446\u0438\u044f", - "MediaInfoIsoSpeedRating": "\u0421\u0432\u0435\u0442\u043e\u0447\u0443\u0432\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c ISO", - "MediaInfoLatitude": "\u0428\u0438\u0440\u043e\u0442\u0430", - "MediaInfoLongitude": "\u0414\u043e\u043b\u0433\u043e\u0442\u0430", - "MediaInfoShutterSpeed": "\u0412\u044b\u0434\u0435\u0440\u0436\u043a\u0430", - "MediaInfoSoftware": "\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430", - "HeaderIfYouLikeCheckTheseOut": "\u0415\u0441\u043b\u0438 \u0432\u0430\u043c \u043d\u0440\u0430\u0432\u0438\u0442\u0441\u044f \u00ab{0}\u00bb, \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441...", - "HeaderPlotKeywords": "\u041a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0441\u044e\u0436\u0435\u0442\u0430", - "HeaderMovies": "\u0424\u0438\u043b\u044c\u043c\u044b", - "HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b", - "HeaderGames": "\u0418\u0433\u0440\u044b", - "HeaderBooks": "\u041a\u043d\u0438\u0433\u0438", - "HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b", - "HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u044b", - "HeaderTracks": "\u0414\u043e\u0440-\u043a\u0438", - "HeaderItems": "\u042d\u043b\u0435\u043c\u0435\u043d\u0442\u044b", - "HeaderOtherItems": "\u0414\u0440\u0443\u0433\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b", - "ButtonFullReview": "\u041f\u043e\u043b\u043d\u0430\u044f \u0440\u0435\u0446\u0435\u043d\u0437\u0438\u044f...", - "ValueAsRole": "\u043a\u0430\u043a {0}", - "ValueGuestStar": "\u041f\u0440\u0438\u0433\u043b. \u0430\u043a\u0442\u0451\u0440", - "MediaInfoSize": "\u0420\u0430\u0437\u043c\u0435\u0440", - "MediaInfoPath": "\u041f\u0443\u0442\u044c", - "MediaInfoFile": "\u0424\u0430\u0439\u043b", - "MediaInfoFormat": "\u0424\u043e\u0440\u043c\u0430\u0442", - "MediaInfoContainer": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440", - "MediaInfoDefault": "\u0423\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435", - "MediaInfoForced": "\u0424\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435", - "MediaInfoExternal": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435", - "MediaInfoTimestamp": "\u041c\u0435\u0442\u043a\u0430 \u0432\u0440\u0435\u043c\u0435\u043d\u0438", - "MediaInfoPixelFormat": "\u041f\u0438\u043a\u0441. \u0444\u043e\u0440\u043c\u0430\u0442", - "MediaInfoBitDepth": "\u0413\u043b\u0443\u0431\u0438\u043d\u0430 \u0446\u0432\u0435\u0442\u0430", - "MediaInfoSampleRate": "\u0427-\u0442\u0430 \u0434\u0438\u0441\u043a\u0440-\u0438\u0438", - "MediaInfoBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a-\u0442\u044c", - "MediaInfoChannels": "\u041a\u0430\u043d\u0430\u043b\u044b", - "MediaInfoLayout": "\u041a\u043e\u043c\u043f\u043e\u043d\u043e\u0432\u043a\u0430", - "MediaInfoLanguage": "\u042f\u0437\u044b\u043a", - "MediaInfoCodec": "\u041a\u043e\u0434\u0435\u043a", - "MediaInfoCodecTag": "\u0422\u0435\u0433 \u043a\u043e\u0434\u0435\u043a\u0430", - "MediaInfoProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c", - "MediaInfoLevel": "\u0423\u0440\u043e\u0432\u0435\u043d\u044c", - "MediaInfoAspectRatio": "\u0421\u043e\u043e\u0442-\u0438\u0435 \u0441\u0442\u043e\u0440\u043e\u043d", - "MediaInfoResolution": "\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u0438\u0435", - "MediaInfoAnamorphic": "\u0410\u043d\u0430\u043c\u043e\u0440\u0444\u043d\u043e\u0441\u0442\u044c", - "MediaInfoInterlaced": "\u0427\u0435\u0440\u0435\u0441\u0441\u0442\u0440\u043e\u0447\u043d\u043e\u0441\u0442\u044c", - "MediaInfoFramerate": "\u0427-\u0442\u0430 \u043a\u0430\u0434\u0440\u043e\u0432", - "MediaInfoStreamTypeAudio": "\u0410\u0443\u0434\u0438\u043e", - "MediaInfoStreamTypeData": "\u0414\u0430\u043d\u043d\u044b\u0435", - "MediaInfoStreamTypeVideo": "\u0412\u0438\u0434\u0435\u043e", - "MediaInfoStreamTypeSubtitle": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b", - "MediaInfoStreamTypeEmbeddedImage": "\u0412\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u044b\u0439 \u0440\u0438\u0441\u0443\u043d\u043e\u043a", - "MediaInfoRefFrames": "\u041e\u043f\u043e\u0440\u043d\u044b\u0435 \u043a\u0430\u0434\u0440\u044b", - "TabPlayback": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435", - "TabNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f", - "TabExpert": "\u0414\u043b\u044f \u043e\u043f\u044b\u0442\u043d\u044b\u0445", - "HeaderSelectCustomIntrosPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c", - "HeaderRateAndReview": "\u041e\u0446\u0435\u043d\u043a\u0430 \u0438 \u043e\u0442\u0437\u044b\u0432", - "HeaderThankYou": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441", - "MessageThankYouForYourReview": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u0432\u0430\u0448 \u043e\u0442\u0437\u044b\u0432.", - "LabelYourRating": "\u0412\u0430\u0448\u0430 \u043e\u0446\u0435\u043d\u043a\u0430:", - "LabelFullReview": "\u041e\u0442\u0437\u044b\u0432 \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e:", - "LabelShortRatingDescription": "\u041a\u0440\u0430\u0442\u043a\u0430\u044f \u0441\u0432\u043e\u0434\u043a\u0430 \u043e\u0446\u0435\u043d\u043a\u0438:", - "OptionIRecommendThisItem": "\u042f \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u044e \u044d\u0442\u043e\u0442 \u044d\u043b\u0435\u043c\u0435\u043d\u0442", - "WebClientTourContent": "\u0421\u043c\u043e\u0442\u0440\u0438\u0442\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u043e\u0447\u0435\u0440\u0435\u0434\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0438 \u0442.\u0434. \u0417\u0435\u043b\u0451\u043d\u044b\u0435 \u043a\u0440\u0443\u0436\u043e\u0447\u043a\u0438 \u0443\u043a\u0430\u0437\u044b\u0432\u0430\u044e\u0442, \u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u0435\u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.", - "WebClientTourMovies": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0438\u0442\u0435 \u0444\u0438\u043b\u044c\u043c\u044b, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0438 \u0442.\u0434., \u0441 \u043b\u044e\u0431\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u043e\u043c.", - "WebClientTourMouseOver": "\u0417\u0430\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u0443\u0440\u0441\u043e\u0440 \u043c\u044b\u0448\u0438 \u043d\u0430\u0434 \u043b\u044e\u0431\u044b\u043c \u043f\u043e\u0441\u0442\u0435\u0440\u043e\u043c \u0434\u043b\u044f \u0431\u044b\u0441\u0442\u0440\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u0432\u0430\u0436\u043d\u043e\u0439 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438", - "WebClientTourTapHold": "\u041a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435 \u0438\u043b\u0438 \u0449\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u043b\u044e\u0431\u043e\u0439 \u043f\u043e\u0441\u0442\u0435\u0440 \u0434\u043b\u044f \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u043d\u043e\u0433\u043e \u043c\u0435\u043d\u044e", - "WebClientTourMetadataManager": "\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041f\u0440\u0430\u0432\u0438\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445", - "WebClientTourPlaylists": "\u0411\u0435\u0437 \u0443\u0441\u0438\u043b\u0438\u0439 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b (\u0441\u043f\u0438\u0441\u043a\u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f) \u0438 \u0430\u0432\u0442\u043e\u043c\u0438\u043a\u0441\u044b, \u0438 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435 \u0438\u0445 \u043d\u0430 \u043b\u044e\u0431\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435", - "WebClientTourCollections": "\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u0444\u0438\u043b\u044c\u043c\u043e\u0432\u044b\u0435 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438, \u0447\u0442\u043e\u0431\u044b \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u043e\u043c\u043f\u043b\u0435\u043a\u0442\u044b \u0432\u043c\u0435\u0441\u0442\u0435", - "WebClientTourUserPreferences1": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0441\u043f\u043e\u0441\u043e\u0431, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0430 \u0432\u043e \u0432\u0441\u0435\u0445 \u0432\u0430\u0448\u0438\u0445 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0445.", - "WebClientTourUserPreferences2": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0430\u0443\u0434\u0438\u043e \u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u0441\u0432\u043e\u0435\u0433\u043e \u044f\u0437\u044b\u043a\u0430, \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "WebClientTourUserPreferences3": "\u041e\u0444\u043e\u0440\u044c\u043c\u0442\u0435 \u0433\u043b\u0430\u0432\u043d\u0443\u044e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u043f\u043e \u0441\u0432\u043e\u0438\u043c \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0442\u0435\u043d\u0438\u044f\u043c", - "WebClientTourUserPreferences4": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u0437\u0430\u0434\u043d\u0438\u043a\u0438, \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438 \u0438 \u0432\u043d\u0435\u0448\u043d\u0438\u0435 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0438", - "WebClientTourMobile1": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442\u043b\u0438\u0447\u043d\u043e \u043d\u0430 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0430\u0445 \u0438 \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0430\u0445...", - "WebClientTourMobile2": "\u0438 \u043b\u0435\u0433\u043a\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0435\u0442 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0438 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438", - "WebClientTourMySync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0432\u043e\u0438 \u043b\u0438\u0447\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0441 \u0432\u0430\u0448\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "MessageEnjoyYourStay": "\u041f\u0440\u0438\u044f\u0442\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u0431\u044b\u0432\u0430\u043d\u0438\u044f", - "DashboardTourDashboard": "\u0421\u0435\u0440\u0432\u0435\u0440\u043d\u0430\u044f \u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0441\u043b\u0435\u0436\u0435\u043d\u0438\u044f \u0437\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c \u0438 \u0432\u0430\u0448\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438. \u0412\u044b \u0432\u0441\u0435\u0433\u0434\u0430 \u0431\u0443\u0434\u0435\u0442\u0435 \u0437\u043d\u0430\u0442\u044c, \u043a\u0442\u043e \u0447\u0435\u043c \u0437\u0430\u043d\u0438\u043c\u0430\u0435\u0442\u0441\u044f, \u0438 \u043a\u0442\u043e \u0433\u0434\u0435 \u043d\u0430\u0445\u043e\u0434\u0438\u0442\u0441\u044f.", - "DashboardTourHelp": "\u0412\u0441\u0442\u0440\u043e\u0435\u043d\u043d\u0430\u044f \u0441\u043f\u0440\u0430\u0432\u043a\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0443\u0434\u043e\u0431\u043d\u044b\u0435 \u043a\u043d\u043e\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043a\u0440\u044b\u0432\u0430\u0442\u044c \u0432\u0438\u043a\u0438-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u043e\u0442\u043d\u043e\u0441\u044f\u0449\u0438\u0445\u0441\u044f \u043a \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e \u044d\u043a\u0440\u0430\u043d\u0430.", - "DashboardTourUsers": "\u0411\u0435\u0437 \u0443\u0441\u0438\u043b\u0438\u0439 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u0443\u0447\u0451\u0442\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0434\u0440\u0443\u0437\u0435\u0439 \u0438 \u0447\u043b\u0435\u043d\u043e\u0432 \u0441\u0435\u043c\u044c\u0438, \u043a\u0430\u0436\u0434\u0443\u044e \u0441 \u0438\u0445 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u0440\u0438\u0432\u0438\u043b\u0435\u0433\u0438\u044f\u043c\u0438, \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0441\u0442\u044c\u044e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438, \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435\u043c \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c \u0438 \u0442.\u0434.", - "DashboardTourCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u043f\u0440\u0438\u043d\u043e\u0441\u0438\u0442 \u044d\u0444\u0444\u0435\u043a\u0442 \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u043f\u0440\u044f\u043c\u0438\u043a\u043e\u043c \u0432\u043e \u0432\u0430\u0448\u0443 \u0433\u043e\u0441\u0442\u0438\u043d\u0443\u044e, \u0432\u043c\u0435\u0441\u0442\u0435 \u0441\u043e \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0435 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0438 \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.", - "DashboardTourChapters": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435 \u0433\u0435\u043d\u0435\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043a \u0432\u0438\u0434\u0435\u043e, \u0434\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u043f\u0440\u0438\u0432\u043b\u0435\u043a\u0430\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "DashboardTourSubtitles": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0439\u0442\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u0434\u043b\u044f \u0432\u0430\u0448\u0438\u0445 \u0432\u0438\u0434\u0435\u043e \u043d\u0430 \u043b\u044e\u0431\u043e\u043c \u044f\u0437\u044b\u043a\u0435.", - "DashboardTourPlugins": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u044b, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0432\u0438\u0434\u0435\u043e, \u0422\u0412-\u044d\u0444\u0438\u0440\u0430, \u0441\u043a\u0430\u043d\u043d\u0435\u0440\u043e\u0432 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438 \u0442.\u0434.", - "DashboardTourNotifications": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0432\u0430\u0439\u0442\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u043e \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u0441\u043e\u0431\u044b\u0442\u0438\u044f\u0445 \u043d\u0430 \u0432\u0430\u0448\u0435 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u044d-\u043f\u043e\u0447\u0442\u0443 \u0438 \u0442.\u0434.", - "DashboardTourScheduledTasks": "\u0411\u0435\u0437 \u0443\u0441\u0438\u043b\u0438\u0439 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0434\u043e\u043b\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u043c\u0438 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f\u043c\u0438 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041f\u0440\u0438\u043d\u0438\u043c\u0430\u0439\u0442\u0435 \u0440\u0435\u0448\u0435\u043d\u0438\u0435, \u043a\u043e\u0433\u0434\u0430 \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u044b, \u0438 \u043d\u0430\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0447\u0430\u0441\u0442\u043e.", - "DashboardTourMobile": "\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c Emby Server \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442\u043b\u0438\u0447\u043d\u043e \u043d\u0430 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0430\u0445 \u0438 \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0430\u0445. \u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0439\u0442\u0435 \u0441\u0432\u043e\u0438\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c \u0441 \u043b\u0430\u0434\u043e\u043d\u0438 \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f, \u0441 \u043b\u044e\u0431\u043e\u0433\u043e \u043c\u0435\u0441\u0442\u0430.", - "DashboardTourSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u0439\u0442\u0435 \u0441\u0432\u043e\u0438 \u043b\u0438\u0447\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0441 \u0432\u0430\u0448\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438 \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u0433\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430.", - "MessageRefreshQueued": "\u041f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u0432 \u043e\u0447\u0435\u0440\u0435\u0434\u0438", - "TabDevices": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", - "TabExtras": "\u0412 \u0434\u043e\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u0435", - "HeaderUploadImage": "\u0412\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u0440\u0438\u0441\u0443\u043d\u043a\u0430", - "DeviceLastUsedByUserName": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435: {0}", - "HeaderDeleteDevice": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e", - "DeleteDeviceConfirmation": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e? \u041e\u043d\u043e \u043f\u043e\u044f\u0432\u0438\u0442\u0441\u044f \u0441\u043d\u043e\u0432\u0430 \u0432 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437, \u043a\u043e\u0433\u0434\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0432\u043e\u0439\u0434\u0451\u0442 \u0441 \u043d\u0435\u0433\u043e.", - "LabelEnableCameraUploadFor": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0438 \u0441 \u043a\u0430\u043c\u0435\u0440\u044b \u0434\u043b\u044f:", - "HeaderSelectUploadPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u0434\u043b\u044f \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0438", - "LabelEnableCameraUploadForHelp": "\u0412\u044b\u043a\u043b\u0430\u0434\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u0440\u043e\u0438\u0441\u0445\u043e\u0434\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u0432\u043e \u0444\u043e\u043d\u043e\u0432\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435, \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435 \u0432 Emby.", - "ErrorMessageStartHourGreaterThanEnd": "\u041a\u043e\u043d\u0435\u0447\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u043f\u043e\u0437\u0436\u0435, \u0447\u0435\u043c \u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e\u0435 \u0432\u0440\u0435\u043c\u044f.", - "ButtonLibraryAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435...", - "ButtonParentalControl": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c...", - "HeaderInvitationSent": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e", - "MessageInvitationSentToUser": "\u041f\u0438\u0441\u044c\u043c\u043e \u0431\u044b\u043b\u043e \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u043a {0}, \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u043f\u0440\u0438\u043d\u044f\u0442\u044c \u0432\u0430\u0448\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f.", - "MessageInvitationSentToNewUser": "\u041f\u0438\u0441\u044c\u043c\u043e \u0431\u044b\u043b\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0430 \u043a {0}, \u0441 \u043f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u043c \u0437\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0432 Emby.", - "HeaderConnectionFailure": "\u0421\u0431\u043e\u0439 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f", - "MessageUnableToConnectToServer": "\u041c\u044b \u043d\u0435 \u043c\u043e\u0436\u0435\u043c \u043f\u043e\u0434\u0441\u043e\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043a \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u043c\u0443 \u0441\u0435\u0440\u0432\u0435\u0440\u0443 \u0432 \u0434\u0430\u043d\u043d\u044b\u0439 \u043c\u043e\u043c\u0435\u043d\u0442. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043e\u043d \u0437\u0430\u043f\u0443\u0449\u0435\u043d \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "ButtonSelectServer": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440", - "MessagePluginConfigurationRequiresLocalAccess": "\u0414\u043b\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0432 \u0441\u0432\u043e\u0439 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0441\u0435\u0440\u0432\u0435\u0440.", - "MessageLoggedOutParentalControl": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u043e\u0441\u0442\u0443\u043f \u0437\u0430\u043f\u0440\u0435\u0449\u0451\u043d. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", - "DefaultErrorMessage": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0435 \u0437\u0430\u043f\u0440\u043e\u0441\u0430. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", - "ButtonAccept": "\u041f\u0440\u0438\u043d\u044f\u0442\u044c", - "ButtonReject": "\u041e\u0442\u043a\u043b\u043e\u043d\u0438\u0442\u044c", - "HeaderForgotPassword": "\u0417\u0430\u0431\u044b\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c?", - "MessageContactAdminToResetPassword": "\u0421\u0432\u044f\u0436\u0438\u0442\u0435\u0441\u044c \u0441\u043e \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u043c \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u043e\u043c, \u0447\u0442\u043e\u0431\u044b \u0441\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u0432\u0430\u0448 \u043f\u0430\u0440\u043e\u043b\u044c.", - "MessageForgotPasswordInNetworkRequired": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0447\u0430\u0442\u044c \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0441\u0431\u0440\u043e\u0441\u0430 \u043f\u0430\u0440\u043e\u043b\u044f.", - "MessageForgotPasswordFileCreated": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0444\u0430\u0439\u043b \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d \u043d\u0430 \u0432\u0430\u0448\u0435\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u0438 \u043e \u0442\u043e\u043c, \u043a\u0430\u043a \u043f\u043e\u0441\u0442\u0443\u043f\u0438\u0442\u044c:", - "MessageForgotPasswordFileExpiration": "\u0421\u0431\u0440\u043e\u0441 PIN-\u043a\u043e\u0434\u0430 \u0438\u0441\u0442\u0435\u043a\u0430\u0435\u0442 {0}.", - "MessageInvalidForgotPasswordPin": "\u0411\u044b\u043b \u0432\u0432\u0435\u0434\u0451\u043d \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0438\u043b\u0438 \u0438\u0441\u0442\u0451\u043a\u0448\u0438\u0439 PIN-\u043a\u043e\u0434. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "MessagePasswordResetForUsers": "\u041f\u0430\u0440\u043e\u043b\u0438 \u0431\u044b\u043b\u0438 \u0438\u0437\u044a\u044f\u0442\u044b \u0443 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439. \u0412\u0445\u043e\u0434\u0438\u0442\u0435 \u0441 \u043f\u0443\u0441\u0442\u044b\u043c \u043f\u0430\u0440\u043e\u043b\u0435\u043c.", - "HeaderInviteGuest": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0433\u043e\u0441\u0442\u044f", - "ButtonLinkMyEmbyAccount": "\u0421\u0432\u044f\u0437\u0430\u0442\u044c \u043c\u043e\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c", - "MessageConnectAccountRequiredToInviteGuest": "\u0414\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0430\u0442\u044c \u0433\u043e\u0441\u0442\u0435\u0439, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0432\u0430\u0448\u0443 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c.", - "ButtonSync": "\u0421\u0438\u043d\u0445\u0440\u043e...", - "SyncMedia": "\u0421\u0438\u043d\u0445\u0440-\u0438\u044f", - "HeaderCancelSyncJob": "\u041e\u0442\u043c\u0435\u043d\u0430 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438", - "CancelSyncJobConfirmation": "\u041e\u0442\u043c\u0435\u043d\u0430 \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044e \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0439 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c?", - "TabSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", - "MessagePleaseSelectDeviceToSyncTo": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438.", - "MessageSyncJobCreated": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043e.", - "LabelSyncTo": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441:", - "LabelSyncJobName": "\u0418\u043c\u044f \u0437\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:", - "LabelQuality": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e:", - "HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b", - "OptionAutomaticallySyncNewContent": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", - "OptionAutomaticallySyncNewContentHelp": "\u041d\u043e\u0432\u043e\u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0430\u0432\u0442\u043e-\u043a\u0438 \u0441\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0441 \u0434\u0430\u043d\u043d\u044b\u043c \u0443\u0441\u0442\u0440-\u043e\u043c.", - "OptionSyncUnwatchedVideosOnly": "\u0421\u0438\u043d\u0445\u0440-\u0442\u044c \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e", - "OptionSyncUnwatchedVideosOnlyHelp": "\u0421\u0438\u043d\u0445\u0440-\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0432\u0438\u0434\u0435\u043e, \u0430 \u043f\u0440\u043e\u0441\u043c-\u044b\u0435 \u0438\u0437\u044b\u043c\u0430\u044e\u0442\u0441\u044f \u0441 \u0443\u0441\u0442\u0440-\u0432\u0430.", - "LabelItemLimit": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:", - "LabelItemLimitHelp": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u041f\u0440\u0435\u0434\u0435\u043b \u0447\u0438\u0441\u043b\u0430 \u0441\u0438\u043d\u0445\u0440-\u0435\u043c\u044b\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432.", - "MessageBookPluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 Bookshelf", - "MessageGamePluginRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 GameBrowser", - "MessageUnsetContentHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u0442\u0441\u044f \u043a\u0430\u043a \u043e\u0431\u044b\u0447\u043d\u044b\u0435 \u043f\u0430\u043f\u043a\u0438. \u0414\u043b\u044f \u043d\u0430\u0438\u043b\u0443\u0447\u0448\u0438\u0445 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0434\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u0434\u0430\u0432\u0430\u0442\u044c \u0442\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u043f\u043e\u0434\u043f\u0430\u043f\u043e\u043a.", - "SyncJobItemStatusQueued": "\u0412 \u043e\u0447\u0435\u0440\u0435\u0434\u0438", - "SyncJobItemStatusConverting": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u0443\u0435\u0442\u0441\u044f", - "SyncJobItemStatusTransferring": "\u041f\u0435\u0440\u0435\u043d\u043e\u0441\u0438\u0442\u0441\u044f", - "SyncJobItemStatusSynced": "\u0421\u0438\u043d\u0445\u0440-\u043d\u043e", - "SyncJobItemStatusFailed": "\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u043e", - "SyncJobItemStatusRemovedFromDevice": "\u0418\u0437\u044a\u044f\u0442\u043e \u0438\u0437 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430", - "SyncJobItemStatusCancelled": "\u041e\u0442\u043c\u0435\u043d\u0435\u043d\u043e", - "LabelProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c:", - "LabelBitrateMbps": "\u041f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c, \u041c\u0431\u0438\u0442\/\u0441:", - "EmbyIntroDownloadMessage": "\u0427\u0442\u043e\u0431\u044b \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c Emby Server \u043f\u0435\u0440\u0435\u0439\u0434\u0438\u0442\u0435 \u043d\u0430 {0}.", - "ButtonNewServer": "\u041d\u043e\u0432\u044b\u0439 \u0441\u0435\u0440\u0432\u0435\u0440...", - "ButtonSignInWithConnect": "\u0412\u043e\u0439\u0442\u0438 \u0447\u0435\u0440\u0435\u0437 Connect", - "HeaderNewServer": "\u041d\u043e\u0432\u044b\u0439 \u0441\u0435\u0440\u0432\u0435\u0440", - "MyDevice": "\u041c\u043e\u0451 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e", - "ButtonRemote": "\u041f\u0443\u043b\u044c\u0442...", - "TabInfo": "\u0418\u043d\u0444\u043e", - "TabCast": "\u0421\u043d\u0438\u043c\u0430\u043b\u0438\u0441\u044c", - "TabScenes": "\u0421\u0446\u0435\u043d\u044b", - "HeaderUnlockApp": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435", - "HeaderUnlockSync": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0430 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 Emby", - "MessageUnlockAppWithPurchaseOrSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043d\u0435\u0431\u043e\u043b\u044c\u0448\u043e\u0439 \u043e\u0434\u043d\u043e\u0440\u0430\u0437\u043e\u0432\u043e\u0439 \u043e\u043f\u043b\u0430\u0442\u044b, \u0438\u043b\u0438 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere .", - "MessageUnlockAppWithSupporter": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u0443\u0439\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442 \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.", - "MessageToValidateSupporter": "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0435\u0441\u0442\u044c \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere, \u043f\u0440\u043e\u0441\u0442\u043e \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043e\u0434\u043d\u043e\u043a\u0440\u0430\u0442\u043d\u043e, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 Wi-Fi \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438.", - "MessagePaymentServicesUnavailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0441\u043b\u0443\u0436\u0431\u0430 \u043e\u043f\u043b\u0430\u0442\u044b \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u0430. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", - "MessagePleaseSignInLocalNetwork": "\u041f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c, \u0443\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u044b \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u043a \u0432\u0430\u0448\u0435\u0439 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u0435\u0442\u0438 \u0447\u0435\u0440\u0435\u0437 Wifi- \u0438\u043b\u0438 LAN-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435.", - "ButtonUnlockWithPurchase": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u043e\u043c \u043e\u043f\u043b\u0430\u0442\u044b", - "ButtonUnlockPrice": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c {0}", - "MessageLiveTvGuideRequiresUnlock": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u044d\u0444\u0438\u0440\u043d\u044b\u0439 \u0442\u0435\u043b\u0435\u0433\u0438\u0434 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d {0} \u043a\u0430\u043d\u0430\u043b(\u043e\u043c\/\u0430\u043c\u0438). \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c, \u0447\u0442\u043e\u0431\u044b \u0443\u0437\u043d\u0430\u0442\u044c \u043a\u0430\u043a \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u044b\u0439 \u044d\u0444\u0444\u0435\u043a\u0442.", - "OptionEnableFullscreen": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d", - "ButtonServer": "\u0421\u0435\u0440\u0432\u0435\u0440...", - "HeaderAdmin": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435", - "HeaderLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430", - "HeaderMedia": "\u041c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "ButtonInbox": "\u0412\u0445\u043e\u0434\u044f\u0449\u0438\u0435...", - "HeaderAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435", - "HeaderGroupVersions": "\u0421\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438", - "HeaderSaySomethingLike": "\u0421\u043a\u0430\u0436\u0438\u0442\u0435 \u0447\u0442\u043e-\u0442\u043e \u0432\u0440\u043e\u0434\u0435...", - "ButtonTryAgain": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c \u043f\u043e\u043f\u044b\u0442\u043a\u0443", - "HeaderYouSaid": "\u0412\u044b \u0441\u043a\u0430\u0437\u0430\u043b\u0438...", - "MessageWeDidntRecognizeCommand": "\u0414\u0430\u043d\u043d\u0430\u044f \u043a\u043e\u043c\u0430\u043d\u0434\u0430 \u043d\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0430.", - "MessageIfYouBlockedVoice": "\u0415\u0441\u043b\u0438 \u043e\u0442\u043a\u0430\u0437\u0430\u043d\u043e \u0432 \u0433\u043e\u043b\u043e\u0441\u043e\u0432\u043e\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435 \u043a \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044e, \u043f\u0435\u0440\u0435\u0434 \u043d\u043e\u0432\u043e\u0439 \u043f\u043e\u043f\u044b\u0442\u043a\u043e\u0439 \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0430 \u043f\u0435\u0440\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430.", - "MessageNoItemsFound": "\u041d\u0438\u043a\u0430\u043a\u0438\u0445 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e.", - "ButtonManageServer": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c...", - "ButtonEditSubtitles": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b", - "ButtonPreferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438", - "ButtonViewArtist": "\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044f", - "ButtonViewAlbum": "\u041f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0430\u043b\u044c\u0431\u043e\u043c", - "ButtonEditImages": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438", - "ErrorMessagePasswordNotMatchConfirm": "\u041f\u043e\u043b\u044f \u041f\u0430\u0440\u043e\u043b\u044c \u0438 \u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u043f\u0430\u0440\u043e\u043b\u044f \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0442\u044c.", - "ErrorMessageUsernameInUse": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0434\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u043e\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "ErrorMessageEmailInUse": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b \u0443\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f. \u041f\u043e\u0434\u0431\u0435\u0440\u0438\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443, \u0438\u043b\u0438 \u0432\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u043e\u043c \u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c.", - "MessageThankYouForConnectSignUp": "\u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0437\u0430 \u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0430\u0446\u0438\u044e \u0432 Emby Connect. \u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 \u042d-\u043f\u043e\u0447\u0442\u044b \u0441 \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u043c\u0438 \u043a\u0430\u043a \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c \u0432\u0430\u0448\u0443 \u043d\u043e\u0432\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0431\u0443\u0434\u0435\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043e \u043d\u0430 \u0432\u0430\u0448 \u0430\u0434\u0440\u0435\u0441. \u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c, \u0430 \u043f\u043e\u0442\u043e\u043c \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u0441\u044e\u0434\u0430, \u0447\u0442\u043e\u0431\u044b \u0432\u043e\u0439\u0442\u0438.", - "HeaderShare": "\u041e\u0431\u0449\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f", - "ButtonShareHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435 \u0441\u043e \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f\u043c\u0438 \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u043e\u0431\u0449\u0435\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435.", - "ButtonShare": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f", - "HeaderConfirm": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435", - "ButtonAdvancedRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e", - "MessageConfirmDeleteTunerDevice": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e?", - "MessageConfirmDeleteGuideProvider": "\u0412\u044b \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430?", - "HeaderDeleteProvider": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430", - "HeaderAddProvider": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430", - "ErrorAddingTunerDevice": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0442\u044e\u043d\u0435\u0440\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043e\u043d\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "ErrorSavingTvProvider": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0422\u0412. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043e\u043d \u0434\u043e\u0441\u0442\u0443\u043f\u0435\u043d \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "ErrorGettingTvLineups": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0432\u0430\u0448\u0438 \u0434\u0430\u043d\u043d\u044b\u0435 \u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "MessageCreateAccountAt": "\u0421\u043e\u0437\u0434\u0430\u0439\u0442\u0435 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u043d\u0430 {0}", - "ErrorPleaseSelectLineup": "\u0412\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u0441\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443. \u0415\u0441\u043b\u0438 \u0441\u043f\u0438\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043d\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b, \u0442\u043e \u043f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0430\u0448\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043f\u0430\u0440\u043e\u043b\u044c \u0438 \u043f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432\u0435\u0440\u043d\u044b\u043c\u0438.", - "HeaderTryEmbyPremiere": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 Emby Premiere", - "ButtonBecomeSupporter": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438 Emby Premiere", - "ButtonClosePlayVideo": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c \u0438 \u0432\u043e\u0441\u043f\u0440. \u043c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435", - "MessageDidYouKnowCinemaMode": "\u0417\u043d\u0430\u0435\u0442\u0435 \u043b\u0438 \u0432\u044b, \u0447\u0442\u043e \u0441 Emby Premiere \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0440\u0430\u0441\u0448\u0438\u0440\u0438\u0442\u044c \u044d\u0444\u0444\u0435\u043a\u0442\u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438 \u043f\u043e\u0434\u043e\u0431\u043d\u044b\u043c\u0438 \u0420\u0435\u0436\u0438\u043c\u0443 \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430?", - "MessageDidYouKnowCinemaMode2": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u044d\u0444\u0444\u0435\u043a\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u043e\u0441\u043d\u043e\u0432\u043d\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u043e\u043c.", - "OptionEnableDisplayMirroring": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0443\u0431\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f", - "HeaderSyncRequiresSupporterMembership": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0430\u044f \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u0430 Emby Premiere.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "\u0414\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u043a Emby Server \u0441 \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0439 \u043f\u043e\u0434\u043f\u0438\u0441\u043a\u043e\u0439 Emby Premiere.", - "ErrorValidatingSupporterInfo": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0435 \u0432\u0430\u0448\u0438\u0445 \u0434\u0430\u043d\u043d\u044b\u0445 Emby Premiere. \u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.", - "HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", - "LabelLocalSyncStatusValue": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435: {0}", - "MessageSyncStarted": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430", - "OptionPoster": "\u041f\u043e\u0441\u0442\u0435\u0440", - "OptionPosterCard": "\u041f\u043e\u0441\u0442\u0435\u0440-\u043a\u0430\u0440\u0442\u0430", - "OptionTimeline": "\u0425\u0440\u043e\u043d\u043e\u043b\u043e\u0433\u0438\u044f", - "OptionList": "\u0421\u043f\u0438\u0441\u043e\u043a", - "OptionThumb": "\u0411\u0435\u0433\u0443\u043d\u043e\u043a", - "OptionThumbCard": "\u0411\u0435\u0433\u0443\u043d\u043e\u043a-\u043a\u0430\u0440\u0442\u0430", - "OptionBanner": "\u0411\u0430\u043d\u043d\u0435\u0440", - "NoSlideshowContentFound": "\u041d\u0435 \u0431\u044b\u043b\u0438 \u043d\u0430\u0439\u0434\u0435\u043d\u044b \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u043a \u0441\u043b\u0430\u0439\u0434-\u0448\u043e\u0443.", - "OptionPhotoSlideshow": "\u0421\u043b\u0430\u0439\u0434-\u0448\u043e\u0443 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0439", - "OptionBackdropSlideshow": "\u0421\u043b\u0430\u0439\u0434-\u0448\u043e\u0443 \u0437\u0430\u0434\u043d\u0438\u043a\u043e\u0432", - "HeaderTopPlugins": "\u041f\u043e\u043f\u0443\u043b\u044f\u0440\u043d\u044b\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u044b", - "ButtonRecord": "\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c", - "ButtonOther": "\u0414\u0440\u0443\u0433\u043e\u0435", - "HeaderSortBy": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0430 \u043f\u043e", - "HeaderSortOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438", - "OptionAscending": "\u041f\u043e \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u043d\u0438\u044e", - "OptionDescending": "\u041f\u043e \u0443\u0431\u044b\u0432\u0430\u043d\u0438\u044e", - "OptionNameSort": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435", - "OptionTvdbRating": "\u041e\u0446\u0435\u043d\u043a\u0430 TVDb", - "OptionPremiereDate": "\u0414\u0430\u0442\u0430 \u043f\u0440\u0435\u043c\u044c\u0435\u0440\u044b", - "OptionImdbRating": "\u041e\u0446\u0435\u043d\u043a\u0430 IMDb", - "OptionDatePlayed": "\u0414\u0430\u0442\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f", - "OptionDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f", - "OptionPlayCount": "\u041a\u043e\u043b. \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0439", - "ButtonDisconnect": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f", - "OptionAlbumArtist": "\u0418\u0441\u043f. \u0430\u043b\u044c\u0431\u043e\u043c\u0430", - "OptionArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c", - "OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", - "OptionTrackName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438", - "OptionCommunityRating": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0439 \u0440\u0435\u0439\u0442\u0438\u043d\u0433", - "ButtonSort": "\u0421\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c", - "ButtonMenu": "\u041c\u0435\u043d\u044e", - "OptionDefaultSort": "\u0423\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435", - "ButtonFilter": "\u0424\u0438\u043b\u044c\u0442\u0440\u043e\u0432\u0430\u0442\u044c", - "OptionCriticRating": "\u041e\u0446\u0435\u043d\u043a\u0430 \u043a\u0440\u0438\u0442\u0438\u043a\u043e\u0432", - "OptionVideoBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432\u0438\u0434\u0435\u043e", - "OptionMetascore": "\u041e\u0446\u0435\u043d\u043a\u0430 Metascore", - "OptionRevenue": "\u0414\u043e\u0445\u043e\u0434", - "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", - "ForAdditionalLiveTvOptions": "\u0414\u043b\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u043e\u0432 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412, \u043e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0438\u043c\u0435\u044e\u0449\u0438\u043c\u0438\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044f\u043c\u0438, \u0449\u0451\u043b\u043a\u043d\u0443\u0432 \u043f\u043e \u0432\u043a\u043b\u0430\u0434\u043a\u0435 \u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b.", - "ButtonGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434", - "ButtonRecordedTv": "\u0422\u0412-\u0437\u0430\u043f\u0438\u0441\u0438", - "HeaderDisconnectFromPlayer": "\u0420\u0430\u0437\u044a\u0435\u0434\u0438\u043d\u0438\u0442\u044c\u0441\u044f \u043e\u0442 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f", - "ConfirmEndPlayerSession": "\u0412\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0437\u0430\u043a\u0440\u044b\u0442\u044c Emby \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435?", - "ButtonYes": "\u0414\u0430", - "ButtonNo": "\u041d\u0435\u0442", - "ButtonRestorePreviousPurchase": "\u0412\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u0440\u0438\u043e\u0431\u0440\u0435\u0442\u0435\u043d\u0438\u0435", - "AlreadyPaid": "\u0423\u0436\u0435 \u043e\u043f\u043b\u0430\u0442\u0438\u043b\u0438?", - "AlreadyPaidHelp1": "\u0415\u0441\u043b\u0438 \u0432\u044b \u0443\u0436\u0435 \u0437\u0430\u043f\u043b\u0430\u0442\u0438\u043b\u0438 \u0437\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0443 \u0441\u0442\u0430\u0440\u0448\u0435\u0439 \u0432\u0435\u0440\u0441\u0438\u0438 Media Browser for Android, \u0432\u0430\u043c \u043d\u0435 \u043d\u0443\u0436\u043d\u043e \u043f\u043b\u0430\u0442\u0438\u0442\u044c \u0441\u043d\u043e\u0432\u0430, \u0447\u0442\u043e\u0431\u044b \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041e\u041a, \u0447\u0442\u043e\u0431\u044b \u043e\u0442\u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0430\u043c \u044d-\u043f\u043e\u0447\u0442\u0443 \u043d\u0430 {0}, \u0438 \u043c\u044b \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0443\u0435\u043c \u044d\u0442\u043e \u0434\u043b\u044f \u0432\u0430\u0441.", - "AlreadyPaidHelp2": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u043b\u0438 Emby Premiere? \u041f\u0440\u043e\u0441\u0442\u043e \u043e\u0442\u043c\u0435\u043d\u0438\u0442\u0435 \u0434\u0430\u043d\u043d\u044b\u0439 \u0434\u0438\u0430\u043b\u043e\u0433, \u0432\u043e\u0439\u0434\u0438\u0442\u0435 \u0432 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 WiF-\u0441\u0435\u0442\u0438, \u0438 \u044d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e.", - "ButtonForYou": "\u0414\u043b\u044f \u0432\u0430\u0441...", - "ButtonLibrary": "\u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430...", - "ButtonSearch": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a", - "ButtonNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f...", - "ButtonViewNewApp": "\u0421\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u043d\u043e\u0432\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435", - "HeaderEmbyForAndroidHasMoved": "Emby \u0434\u043b\u044f Android \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0451\u043d!", - "MessageEmbyForAndroidHasMoved": "Emby \u0434\u043b\u044f Android \u0431\u044b\u043b \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0451\u043d \u043d\u0430 \u043d\u043e\u0432\u043e\u0435 \u043c\u0435\u0441\u0442\u043e \u0432 App Store. \u0423\u0447\u0442\u0438\u0442\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f. \u0412\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0442\u0430\u043a \u0434\u043e\u043b\u0433\u043e, \u043a\u0430\u043a \u0432\u044b \u0437\u0430\u0445\u043e\u0442\u0438\u0442\u0435.", - "HeaderNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435", - "HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u044b", - "HeaderLatestEpisodes": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b", - "EmbyPremiereMonthly": "Emby Premiere \u043d\u0430 \u043c\u0435\u0441\u044f\u0446", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere \u043d\u0430 \u043c\u0435\u0441\u044f\u0446 {0}", - "HeaderEmailAddress": "\u0410\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b", - "TextPleaseEnterYourEmailAddressForSubscription": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u0432\u043e\u0439 \u0430\u0434\u0440\u0435\u0441 \u042d-\u043f\u043e\u0447\u0442\u044b.", - "LoginDisclaimer": "Emby \u0441\u043f\u0440\u043e\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u043d, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043c\u043e\u0447\u044c \u0432\u0430\u043c \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0441\u0432\u043e\u0435\u0439 \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u044c\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u043e\u0439, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043e\u043c\u0430\u0448\u043d\u0438\u043c\u0438 \u0432\u0438\u0434\u0435\u043e \u0438 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u044f\u043c\u0438. \u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u043d\u0430\u0448\u0438\u043c\u0438 \u0423\u0441\u043b\u043e\u0432\u0438\u044f\u043c\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043b\u044e\u0431\u043e\u0433\u043e \u041f\u041e Emby \u043e\u0437\u043d\u0430\u0447\u0430\u0435\u0442 \u043f\u0440\u0438\u043d\u044f\u0442\u0438\u0435 \u0434\u0430\u043d\u043d\u044b\u0445 \u0443\u0441\u043b\u043e\u0432\u0438\u0439.", - "TermsOfUse": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f", - "HeaderTryMultiSelect": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043d\u0435\u0441\u0432\u044f\u0437\u043d\u043e\u0435 \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", - "TryMultiSelectMessage": "\u0427\u0442\u043e\u0431\u044b \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u043f\u0440\u043e\u0441\u0442\u043e \u0449\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u043c\u044b\u0448\u0438 \u043d\u0430 \u043b\u044e\u0431\u043e\u043c \u043f\u043e\u0441\u0442\u0435\u0440\u0435 \u0438 \u0432\u044b\u0434\u0435\u043b\u0438\u0442\u0435 \u0442\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u044d\u0442\u043e!", - "NumLocationsValue": "{0} \u043f\u0430\u043f(\u043a\u0438\/\u043e\u043a)", - "ButtonAddMediaLibrary": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443", - "ButtonManageFolders": "\u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u043f\u0430\u043f\u043a\u0430\u043c\u0438", - "HeaderTryDragAndDrop": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043f\u0435\u0440\u0435\u0442\u0430\u0441\u043a\u0438\u0432\u0430\u043d\u0438\u0435", - "TryDragAndDropMessage": "\u0427\u0442\u043e\u0431\u044b \u043f\u0435\u0440\u0435\u0443\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u0430, \u043f\u0440\u043e\u0441\u0442\u043e \u043f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435. \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u044d\u0442\u043e!", - "HeaderTryMicrosoftEdge": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 Microsoft Edge", - "MessageTryMicrosoftEdge": "\u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Windows 10, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u043d\u043e\u0432\u044b\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440 Microsoft Edge.", - "HeaderTryModernBrowser": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0432\u0435\u0431-\u0431\u0440\u0430\u0443\u0437\u0435\u0440", - "MessageTryModernBrowser": "\u0414\u043b\u044f \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439 \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Windows, \u043f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0441\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0439 \u0431\u0440\u0430\u0443\u0437\u0435\u0440, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, Google Chrome, Firefox \u0438\u043b\u0438 Opera.", - "ErrorAddingListingsToSchedulesDirect": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u0430 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0432 \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Schedules Direct. \u0412 Schedules Direct \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0442\u0430\u043a\u0438\u0445 \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u043d\u0430 \u043a\u0430\u0436\u0434\u0443\u044e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c. \u0412\u0430\u043c \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u0441\u044f \u0432\u043e\u0439\u0442\u0438 \u043d\u0430 \u0441\u0430\u0439\u0442 Schedules Direct, \u0438 \u0443\u0434\u0430\u043b\u0438\u0442\u044c \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u0435\u0440\u0435\u0447\u043d\u0438 \u0438\u0437 \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c.", - "PleaseAddAtLeastOneFolder": "\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435, \u043f\u043e \u043a\u0440\u0430\u0439\u043d\u0435\u0439 \u043c\u0435\u0440\u0435, \u043e\u0434\u043d\u0443 \u043f\u0430\u043f\u043a\u0443 \u043a \u0434\u0430\u043d\u043d\u043e\u0439 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435, \u043d\u0430\u0436\u0430\u0432 \u043a\u043d\u043e\u043f\u043a\u0443 \u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c.", - "ErrorAddingMediaPathToVirtualFolder": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043f\u0443\u0442\u0438 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u043f\u0443\u0442\u044c \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c, \u0430 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 Emby Server \u0438\u043c\u0435\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u044d\u0442\u043e\u043c\u0443 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044e.", - "ErrorRemovingEmbyConnectAccount": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby Connect. \u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0438 \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443.", - "ErrorAddingEmbyConnectAccount1": "\u041f\u0440\u043e\u0438\u0437\u043e\u0448\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby Connect. \u0412\u044b \u0441\u043e\u0437\u0434\u0430\u043b\u0438 \u0443\u0447\u0435\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c Emby? \u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043d\u0430 {0}.", - "ErrorAddingEmbyConnectAccount2": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0443\u0447\u0435\u0442\u043d\u0430\u044f \u0437\u0430\u043f\u0438\u0441\u044c Emby \u0431\u044b\u043b\u0430 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0430, \u0441\u043b\u0435\u0434\u0443\u044f \u0438\u043d\u0441\u0442\u0440\u0443\u043a\u0446\u0438\u044f\u043c \u0432 \u043f\u0438\u0441\u044c\u043c\u0435, \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0441\u043b\u0435 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438. \u0415\u0441\u043b\u0438 \u0432\u044b \u043d\u0435 \u043f\u043e\u043b\u0443\u0447\u0438\u043b\u0438 \u044d\u0442\u043e \u043f\u0438\u0441\u044c\u043c\u043e, \u0442\u043e\u0433\u0434\u0430 \u043e\u0442\u043f\u0440\u0430\u0432\u044c\u0442\u0435 \u043f\u0438\u0441\u044c\u043c\u043e \u043d\u0430 {0} \u0441 \u0430\u0434\u0440\u0435\u0441\u0430 \u042d-\u043f\u043e\u0447\u0442\u044b, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u0432 \u0443\u0447\u0435\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby.", - "HeaderFavoriteArtists": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438", - "HeaderFavoriteSongs": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438", - "HeaderConfirmPluginInstallation": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u0430", - "PleaseConfirmPluginInstallation": "\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u041e\u041a, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c, \u0447\u0442\u043e \u0432\u044b \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043b\u0438 \u0432\u044b\u0448\u0435\u0438\u0437\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0435 \u0438 \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430.", - "MessagePluginInstallDisclaimer": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0435 \u0447\u043b\u0435\u043d\u0430\u043c\u0438 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430 Emby \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0442\u043b\u0438\u0447\u043d\u044b\u043c \u0441\u043f\u043e\u0441\u043e\u0431\u043e\u043c \u0434\u043b\u044f \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 Emby \u0441 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u044f\u043c\u0438 \u0438 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c\u0438. \u041f\u0435\u0440\u0435\u0434 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u043e\u0439 \u043f\u0440\u0438\u043c\u0438\u0442\u0435 \u0432\u043e \u0432\u043d\u0438\u043c\u0430\u043d\u0438\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u0441\u0442\u0432\u0438\u044f, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043e\u043d\u0438 \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0438\u0447\u0438\u043d\u0438\u0442\u044c \u043d\u0430 \u0432\u0430\u0448 Emby Server, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438, \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u0443\u044e \u0444\u043e\u043d\u043e\u0432\u0443\u044e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u043a\u0443 \u0438 \u0441\u043d\u0438\u0436\u0435\u043d\u0438\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u0439 \u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438.", - "ButtonPlayOneMinute": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c 1 \u043c\u0438\u043d", - "ThankYouForTryingEnjoyOneMinute": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u043e\u0434\u043d\u043e\u0439 \u043c\u0438\u043d\u0443\u0442\u043e\u0439 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f. \u0411\u043b\u0430\u0433\u043e\u0434\u0430\u0440\u0438\u043c \u0432\u0430\u0441 \u0437\u0430 \u043e\u043f\u0440\u043e\u0431\u043e\u0432\u0430\u043d\u0438\u0435 Emby.", - "HeaderTryPlayback": "\u041e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435", - "HeaderBenefitsEmbyPremiere": "\u041a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b Emby Premiere", - "MobileSyncFeatureDescription": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0443\u044e\u0442\u0441\u044f \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0441 \u0432\u0430\u0448\u0438\u043c\u0438 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u0430\u043c\u0438 \u0438 \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0430\u043c\u0438 \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0432 \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u043c \u0440\u0435\u0436\u0438\u043c\u0435.", - "CoverArtFeatureDescription": "Cover Art \u0441\u043e\u0437\u0434\u0430\u0435\u0442 \u0437\u0430\u043d\u0438\u043c\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043e\u0431\u043b\u043e\u0436\u043a\u0438 \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0441\u043f\u043e\u0441\u043e\u0431\u044b \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043c\u043e\u0447\u044c \u0432\u0430\u043c \u043f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u043a \u0432\u0430\u0448\u0438\u043c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c.", - "HeaderMobileSync": "\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", - "HeaderCloudSync": "\u041e\u0431\u043b\u0430\u0447\u043d\u0430\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f", - "CloudSyncFeatureDescription": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0432\u0430\u0448\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0441 \u043e\u0431\u043b\u0430\u043a\u043e\u043c \u0434\u043b\u044f \u0443\u0434\u043e\u0431\u0441\u0442\u0432\u0430 \u0440\u0435\u0437\u0435\u0440\u0432\u043d\u043e\u0433\u043e \u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f, \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f.", - "HeaderFreeApps": "\u0411\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f", - "FreeAppsFeatureDescription": "\u0412\u043e\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435\u0441\u044c \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u043e\u043c, \u0447\u0442\u043e\u0431\u044b \u0432\u044b\u0431\u0440\u0430\u0442\u044c Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0434\u043b\u044f \u0432\u0430\u0448\u0438\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432.", - "HeaderCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430", - "CinemaModeFeatureDescription": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0434\u0430\u0441\u0442 \u0432\u0430\u043c \u044d\u0444\u0444\u0435\u043a\u0442 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0433\u043e \u0437\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0437\u0430\u043b\u0430 \u0441 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430\u043c\u0438 \u0438 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c\u0438 \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c\u0438 \u043f\u0435\u0440\u0435\u0434 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u043e\u043c.", - "CoverArt": "Cover Art", - "ButtonOff": "\u0412\u044b\u043a\u043b", - "TitleHardwareAcceleration": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0435 \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u0435", - "HardwareAccelerationWarning": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0430\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u043e\u0433\u043e \u0443\u0441\u043a\u043e\u0440\u0435\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043f\u0440\u0438\u0432\u0435\u0441\u0442\u0438 \u043a \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u0432 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0440\u0435\u0434\u0430\u0445. \u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044b \u0441 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435\u043c \u0432\u0438\u0434\u0435\u043e \u043f\u043e\u0441\u043b\u0435 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e, \u0432\u0430\u043c \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u043c\u0435\u043d\u0438\u0442\u044c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0443 \u043d\u0430\u0437\u0430\u0434 \u043d\u0430 \u0410\u0432\u0442\u043e.", - "HeaderSelectCodecIntrosPath": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0443\u0442\u0438 \u043a \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c \u043a\u043e\u0434\u0435\u043a\u0430", - "ButtonLocalRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e", - "ButtonAddMissingData": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432. \u0434\u0430\u043d\u043d\u044b\u0435", - "ButtonFullRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u0441\u0442\u044c\u044e", - "ValueExample": "13:00", - "ButtonGotIt": "\u041f\u043e\u043d\u044f\u0442\u043d\u043e" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/sl-SI.json b/dashboard-ui/strings/javascript/sl-SI.json deleted file mode 100644 index 3008963969..0000000000 --- a/dashboard-ui/strings/javascript/sl-SI.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Users", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Save", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Cancel", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "New", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Movies", - "TabSeries": "Series", - "TabEpisodes": "Episodes", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Kvaliteta:", - "HeaderSettings": "Nastavitve", - "OptionAutomaticallySyncNewContent": "Samodejno sinhroniziraj nove vsebine", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "Name", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Latest Movies", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/sv.json b/dashboard-ui/strings/javascript/sv.json deleted file mode 100644 index ebdfaf18d7..0000000000 --- a/dashboard-ui/strings/javascript/sv.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Inst\u00e4llningarna sparade.", - "AddUser": "Skapa anv\u00e4ndare", - "Users": "Anv\u00e4ndare", - "Delete": "Ta bort", - "Administrator": "Administrat\u00f6r", - "Password": "L\u00f6senord", - "DeleteImage": "Ta bort bild", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r bilden?", - "FileReadCancelled": "Inl\u00e4sningen av filen har avbrutits.", - "FileNotFound": "Kan inte hitta filen.", - "FileReadError": "Ett fel intr\u00e4ffade vid inl\u00e4sningen av filen.", - "DeleteUser": "Ta bort anv\u00e4ndare", - "DeleteUserConfirmation": "\u00c4r du s\u00e4ker p\u00e5 att du vill radera denna anv\u00e4ndare?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "L\u00f6senordet har \u00e5terst\u00e4llts.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "\u00c4r du s\u00e4ker p\u00e5 att du vill \u00e5terst\u00e4lla l\u00f6senordet?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "L\u00f6senordet har sparats.", - "PasswordMatchError": "L\u00f6senordet och bekr\u00e4ftelsen m\u00e5ste \u00f6verensst\u00e4mma.", - "OptionRelease": "Officiell version", - "OptionBeta": "Betaversion", - "OptionDev": "Utvecklarversion (instabil)", - "UninstallPluginHeader": "Avinstallera till\u00e4gg", - "UninstallPluginConfirmation": "\u00c4r du s\u00e4ker p\u00e5 att du vill avinstallera {0}?", - "NoPluginConfigurationMessage": "Detta till\u00e4gg har inga inst\u00e4llningar.", - "NoPluginsInstalledMessage": "Du har inte installerat n\u00e5gra till\u00e4gg.", - "BrowsePluginCatalogMessage": "Bes\u00f6k katalogen f\u00f6r att se tillg\u00e4ngliga till\u00e4gg.", - "HeaderNewApiKey": "Ny API-nyckel", - "LabelAppName": "Appens namn", - "LabelAppNameExample": "Exempel: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Koden har epostats till {0}.", - "MessageKeysLinked": "Koderna har kopplats.", - "HeaderConfirmation": "Bekr\u00e4ftelse", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live-TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identifiera", - "HeaderIdentifyItem": "Identifiera objekt", - "LabelRecurringDonationCanBeCancelledHelp": "St\u00e5ende donationer kan avbrytas n\u00e4r som helst via ditt PayPal-konto.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "Det gick inte att starta Chromecast. Kontrollera att enheten \u00e4r ansluten till det tr\u00e5dl\u00f6sa n\u00e4tverket.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Anv\u00e4ndare", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "S\u00f6k", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Film", - "LabelMusicVideo": "Musikvideo", - "LabelEpisode": "Avsnitt", - "LabelSeries": "Serie", - "LabelStopping": "Avbryter", - "LabelCancelled": "(avbr\u00f6ts)", - "LabelFailed": "(misslyckades)", - "ButtonHelp": "Hj\u00e4lp", - "ButtonSave": "Spara", - "ButtonDownload": "Ladda ned", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Redo att \u00f6verf\u00f6ras", - "LabelCollection": "Collection", - "HeaderAddToCollection": "L\u00e4gg till samling", - "HeaderNewCollection": "Ny samling", - "NewCollectionNameExample": "Exemple: Star Wars-samling", - "OptionSearchForInternetMetadata": "S\u00f6k p\u00e5 internet efter grafik och metadata", - "LabelSelectCollection": "V\u00e4lj samling:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Ta en rundtur", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "Inga synkjobb hittades. Skapa synkjobb med hj\u00e4lp av Synk-knapparna som finns i hela gr\u00e4nssnittet.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Enhets\u00e5tkomst", - "HeaderSelectDevices": "V\u00e4lj Enheter", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "L\u00e4s mer", - "SyncJobItemStatusSyncedMarkForRemoval": "M\u00e4rkt f\u00f6r borttagning", - "LabelAbortedByServerShutdown": "(avbr\u00f6ts eftersom servern st\u00e4ngdes av)", - "LabelScheduledTaskLastRan": "Senast k\u00f6rd {0}, tog {1}", - "HeaderDeleteTaskTrigger": "Ta bort aktivitetsutl\u00f6sare", - "MessageDeleteTaskTrigger": "Vill du ta bort denna aktivitetsutl\u00f6sare?", - "MessageNoPluginsInstalled": "Inga till\u00e4gg har installerats.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installerade", - "LabelNumberReviews": "{0} recensioner", - "LabelFree": "Gratis", - "HeaderTo": "Till", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "V\u00e4lj ljudsp\u00e5r", - "HeaderSelectSubtitles": "V\u00e4lj undertexter", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(f\u00f6rvalda)", - "LabelForcedStream": "(tvingade)", - "LabelDefaultForcedStream": "(f\u00f6rvalda\/tvingade)", - "LabelUnknownLanguage": "Ok\u00e4nt spr\u00e5k", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Tyst", - "ButtonUnmute": "Muting av", - "ButtonStop": "Stopp", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Paus", - "ButtonPlay": "Spela upp", - "ButtonEdit": "\u00c4ndra", - "ButtonQueue": "K\u00f6", - "ButtonPlayTrailer": "Visa trailer", - "ButtonPlaylist": "Spellista", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Aktiverad", - "LabelDisabled": "Avaktiverad", - "ButtonMoreInformation": "Mer information", - "LabelNoUnreadNotifications": "Inga ol\u00e4sta meddelanden", - "ButtonViewNotifications": "Visa meddelanden", - "ButtonMarkTheseRead": "Markera dessa som l\u00e4sta", - "ButtonClose": "St\u00e4ng", - "LabelAllPlaysSentToPlayer": "All uppspelning skickas till den valda uppspelaren.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "Alla inspelningar", - "RecommendationBecauseYouLike": "Eftersom du gillar {0}", - "RecommendationBecauseYouWatched": "Eftersom du tittade p\u00e5 {0}", - "RecommendationDirectedBy": "Regi: {0}", - "RecommendationStarring": "I rollerna: {0}", - "HeaderConfirmRecordingCancellation": "Bekr\u00e4fta avbrott av inspelning", - "MessageConfirmRecordingCancellation": "\u00c4r du s\u00e4ker p\u00e5 att du vill avbryta denna inspelning?", - "MessageRecordingCancelled": "Inspelning avbruten.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Bekr\u00e4fta avbokning av serieinspelning", - "MessageConfirmSeriesCancellation": "Vill du verkligen avboka denna serieinspelning?", - "MessageSeriesCancelled": "Serieinspelningen har avbokats.", - "HeaderConfirmRecordingDeletion": "Bekr\u00e4fta borttagning av inspelning", - "MessageConfirmRecordingDeletion": "\u00c4r du s\u00e4ker p\u00e5 att du vill radera denna inspelning?", - "MessageRecordingDeleted": "Inspelningen har raderats.", - "ButonCancelRecording": "Avbryt inspelning", - "MessageRecordingSaved": "Inspelningen har sparats.", - "OptionSunday": "S\u00f6ndag", - "OptionMonday": "M\u00e5ndag", - "OptionTuesday": "Tisdag", - "OptionWednesday": "Onsdag", - "OptionThursday": "Torsdag", - "OptionFriday": "Fredag", - "OptionSaturday": "L\u00f6rdag", - "OptionEveryday": "Varje dag", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Bekr\u00e4fta radering", - "MessageConfirmPathSubstitutionDeletion": "Vill du verkligen ta bort detta s\u00f6kv\u00e4gsutbyte?", - "LiveTvUpdateAvailable": "(Uppdatering tillg\u00e4nglig)", - "LabelVersionUpToDate": "Uppdaterad!", - "ButtonResetTuner": "\u00c5terst\u00e4ll mottagare", - "HeaderResetTuner": "\u00c5terst\u00e4ll mottagare", - "MessageConfirmResetTuner": "Vill du verkligen \u00e5terst\u00e4lla den h\u00e4r mottagaren? Alla aktiva uppspelare och inspelningar kommer att avbrytas utan f\u00f6rvarning.", - "ButtonCancelSeries": "Avbryt serieinspelning", - "HeaderSeriesRecordings": "Serieinspelningar", - "LabelAnytime": "N\u00e4r som helst", - "StatusRecording": "Inspelning p\u00e5g\u00e5r", - "StatusWatching": "Visning p\u00e5g\u00e5r", - "StatusRecordingProgram": "Spelar in {0}", - "StatusWatchingProgram": "Spelar upp {0}", - "HeaderSplitMedia": "Dela upp media", - "MessageConfirmSplitMedia": "\u00c4r du s\u00e4ker p\u00e5 att du vill dela upp dessa media i separata objekt?", - "HeaderError": "Fel", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Var god v\u00e4lj minst ett objekt.", - "MessagePleaseSelectTwoItems": "Var god v\u00e4lj minst tv\u00e5 objekt.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "\u00c5teruppta", - "HeaderMyViews": "Mina vyer", - "HeaderLibraryFolders": "Mediamappar", - "HeaderLatestMedia": "Nytillkommet", - "ButtonMoreItems": "More...", - "ButtonMore": "Mer", - "HeaderFavoriteMovies": "Favoritfilmer", - "HeaderFavoriteShows": "Favoritserier", - "HeaderFavoriteEpisodes": "Favoritavsnitt", - "HeaderFavoriteGames": "Favoritspel", - "HeaderRatingsDownloads": "Omd\u00f6me \/ nerladdningar", - "HeaderConfirmProfileDeletion": "Bekr\u00e4fta radering av profil", - "MessageConfirmProfileDeletion": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r profilen?", - "HeaderSelectServerCachePath": "V\u00e4lj plats f\u00f6r serverns cache", - "HeaderSelectTranscodingPath": "V\u00e4lj plats f\u00f6r mellanlagring vid omkodning", - "HeaderSelectImagesByNamePath": "V\u00e4lj plats f\u00f6r ImagesByName", - "HeaderSelectMetadataPath": "V\u00e4lj plats f\u00f6r metadatalagring", - "HeaderSelectServerCachePathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r serverns cache. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", - "HeaderSelectTranscodingPathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r omkodarens mellanlagring. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", - "HeaderSelectImagesByNamePathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r ImagesByName-mappen. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", - "HeaderSelectMetadataPathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r lagring av metadata. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", - "HeaderSelectChannelDownloadPath": "V\u00e4lj plats f\u00f6r lagring av nedladdat kanalinneh\u00e5ll", - "HeaderSelectChannelDownloadPathHelp": "Bl\u00e4ddra fram till eller ange plats f\u00f6r lagring av cache f\u00f6r kanaler. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", - "OptionNewCollection": "Ny...", - "ButtonAdd": "L\u00e4gg till", - "ButtonRemove": "Ta bort", - "LabelChapterDownloaders": "H\u00e4mtare av kapitelinformation:", - "LabelChapterDownloadersHelp": "Aktivera och rangordna dina h\u00e4mtare baserat p\u00e5 prioritet. L\u00e4gre prioriterade h\u00e4mtare anv\u00e4nds endast f\u00f6r att fylla i saknad information.", - "HeaderFavoriteAlbums": "Favoritalbum", - "HeaderLatestChannelMedia": "Senaste nytt i Kanaler", - "ButtonOrganizeFile": "Katalogisera fil", - "ButtonDeleteFile": "Radera fil", - "HeaderOrganizeFile": "Katalogisera fil", - "HeaderDeleteFile": "Radera fil", - "StatusSkipped": "Ej behandlad", - "StatusFailed": "Misslyckades", - "StatusSuccess": "Lyckades", - "MessageFileWillBeDeleted": "Denna fil kommer att raderas:", - "MessageSureYouWishToProceed": "Vill du forts\u00e4tta?", - "MessageDuplicatesWillBeDeleted": "Dessutom kommer f\u00f6ljande dubbletter att raderas:", - "MessageFollowingFileWillBeMovedFrom": "F\u00f6ljande fil kommer att flyttas fr\u00e5n:", - "MessageDestinationTo": "till:", - "HeaderSelectWatchFolder": "V\u00e4lj mapp att bevaka", - "HeaderSelectWatchFolderHelp": "Bl\u00e4ddra fram till eller ange s\u00f6kv\u00e4gen till den bevakade mappen. Katalogen m\u00e5ste vara tillg\u00e4nglig f\u00f6r skrivning.", - "OrganizePatternResult": "Resultat: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Starta om", - "HeaderShutdown": "St\u00e4ng av", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Uppdatera nu", - "ValueItemCount": "{0} objekt", - "ValueItemCountPlural": "{0} objekt", - "NewVersionOfSomethingAvailable": "En ny version av {0} finns tillg\u00e4nglig!", - "VersionXIsAvailableForDownload": "Version {0} finns tillg\u00e4nglig f\u00f6r h\u00e4mtning.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Omkodning", - "LabelPlayMethodDirectStream": "Direkt str\u00f6mning", - "LabelPlayMethodDirectPlay": "Direktuppspelning", - "LabelAudioCodec": "Ljud: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Fj\u00e4rranslutning: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Senaste fr\u00e5n {0}", - "LabelUnknownLanaguage": "Ok\u00e4nt spr\u00e5k", - "HeaderCurrentSubtitles": "Aktuella undertexter", - "MessageDownloadQueued": "Nedladdningen har lagts i k\u00f6n.", - "MessageAreYouSureDeleteSubtitles": "\u00c4r du s\u00e4ker p\u00e5 att du vill radera den h\u00e4r undertextfilen?", - "ButtonRemoteControl": "Fj\u00e4rrkontroll", - "HeaderLatestTvRecordings": "Senaste inspelningar", - "ButtonOk": "OK", - "ButtonCancel": "Avbryt", - "ButtonRefresh": "Uppdatera", - "LabelCurrentPath": "Aktuell s\u00f6kv\u00e4g:", - "HeaderSelectMediaPath": "V\u00e4lj s\u00f6kv\u00e4g till media", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "N\u00e4tverk", - "MessageDirectoryPickerInstruction": "N\u00e4tverkss\u00f6kv\u00e4gar kan anges manuellt om \"N\u00e4tverk\" inte hittar dina enheter. T ex {0} eller {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Meny", - "ButtonOpen": "\u00d6ppna", - "ButtonOpenInNewTab": "\u00d6ppna i ny flik", - "ButtonShuffle": "Blanda", - "ButtonInstantMix": "Omedelbar mix", - "ButtonResume": "\u00c5teruppta", - "HeaderScenes": "Kapitel", - "HeaderAudioTracks": "Ljudsp\u00e5r", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Undertexter", - "HeaderVideoQuality": "Videokvalitet", - "MessageErrorPlayingVideo": "Ett fel uppstod vid uppspelning av videon.", - "MessageEnsureOpenTuner": "V\u00e4nligen kontrollera att det finns en ledig mottagare.", - "ButtonHome": "Hem", - "ButtonDashboard": "Kontrollpanel", - "ButtonReports": "Rapporter", - "ButtonMetadataManager": "Metadatahanteraren", - "HeaderTime": "Tid", - "HeaderName": "Namn", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Albumartist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "{0} tillagd", - "ButtonStart": "Start", - "HeaderChannels": "Kanaler", - "HeaderMediaFolders": "Mediamappar", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "\u00d6vrigt", - "OptionBlockTvShows": "TV-serier", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Musik", - "OptionBlockMovies": "Filmer", - "OptionBlockBooks": "B\u00f6cker", - "OptionBlockGames": "Spel", - "OptionBlockLiveTvPrograms": "TV-program", - "OptionBlockLiveTvChannels": "TV-kanaler", - "OptionBlockChannelContent": "Kanalinneh\u00e5ll fr\u00e5n Internet", - "ButtonRevoke": "\u00c5terkalla", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "\u00c5terkalla API-nyckel", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audiocodec: {0}", - "ValueVideoCodec": "Videocodec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Villkor: {0}", - "LabelAll": "Alla", - "HeaderDeleteImage": "Radera bild", - "MessageFileNotFound": "Filen hittades ej.", - "MessageFileReadError": "Ett fel uppstod vid l\u00e4sning av filen.", - "ButtonNextPage": "N\u00e4sta sida", - "ButtonPreviousPage": "F\u00f6reg\u00e5ende sida", - "ButtonMoveLeft": "V\u00e4nster", - "ButtonMoveRight": "H\u00f6ger", - "ButtonBrowseOnlineImages": "Bl\u00e4ddra bland bilder online", - "HeaderDeleteItem": "Radera objekt", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Ange ett namn eller externt id.", - "MessageValueNotCorrect": "Det angivna v\u00e4rdet \u00e4r felaktigt. Var god f\u00f6rs\u00f6k igen.", - "MessageItemSaved": "Objektet har sparats.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Avslutad", - "OptionContinuing": "P\u00e5g\u00e5ende", - "OptionOff": "Av", - "OptionOn": "P\u00e5", - "ButtonSettings": "Inst\u00e4llningar", - "ButtonUninstall": "Avinstallera", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live-TV", - "MissingLocalTrailer": "Lokalt sparad trailer saknas.", - "MissingPrimaryImage": "Huvudbild saknas.", - "MissingBackdropImage": "Fondbild saknas.", - "MissingLogoImage": "Logo saknas.", - "MissingEpisode": "Avsnitt saknas.", - "OptionScreenshots": "Sk\u00e4rmklipp", - "OptionBackdrops": "Fondbilder", - "OptionImages": "Bilder", - "OptionKeywords": "Nyckelord", - "OptionTags": "Etiketter", - "OptionStudios": "Studior", - "OptionName": "Namn", - "OptionOverview": "\u00d6versikt", - "OptionGenres": "Genrer", - "OptionParentalRating": "F\u00f6r\u00e4ldraklassning", - "OptionPeople": "Personer", - "OptionRuntime": "Speltid", - "OptionProductionLocations": "Produktionsplatser", - "OptionBirthLocation": "F\u00f6delseort", - "LabelAllChannels": "Alla kanaler", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NY", - "LabelPremiereProgram": "PREMI\u00c4R", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Varning", - "MessagePleaseRestart": "V\u00e4nligen starta om f\u00f6r att slutf\u00f6ra uppdateringarna.", - "ButtonRestart": "Starta om", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "D\u00f6lj", - "MessageSettingsSaved": "Inst\u00e4llningarna har sparats.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "Min profil", - "ButtonMyPreferences": "Mina inst\u00e4llningar", - "MessageBrowserDoesNotSupportWebSockets": "Den h\u00e4r webbl\u00e4saren st\u00f6djer inte web sockets. F\u00f6r att f\u00e5 en b\u00e4ttre upplevelse, prova en nyare webbl\u00e4sare, t ex Chrome, Firefox, IE10+, Safari (iOS) eller Opera.", - "LabelInstallingPackage": "Installerar {0}", - "LabelPackageInstallCompleted": "Installationen av {0} slutf\u00f6rdes.", - "LabelPackageInstallFailed": "Installationen av {0} misslyckades.", - "LabelPackageInstallCancelled": "Installationen av {0} avbr\u00f6ts.", - "TabServer": "Server", - "TabUsers": "Anv\u00e4ndare", - "TabLibrary": "Bibliotek", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live-TV", - "TabAutoOrganize": "Katalogisera automatiskt", - "TabPlugins": "Till\u00e4gg", - "TabAdvanced": "Avancerat", - "TabHelp": "Hj\u00e4lp", - "TabScheduledTasks": "Schemalagda aktiviteter", - "ButtonFullscreen": "Fullsk\u00e4rm", - "ButtonAudioTracks": "Ljudsp\u00e5r", - "ButtonSubtitles": "Undertexter", - "ButtonScenes": "Scener", - "ButtonQuality": "Kvalitet", - "HeaderNotifications": "Meddelanden", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "V\u00e4lj", - "ButtonNew": "Nytillkommet", - "MessageInternetExplorerWebm": "F\u00f6r b\u00e4sta resultat med Internet Explorer, installera uppspelningstill\u00e4gget WebM.", - "HeaderVideoError": "Videofel", - "ButtonAddToPlaylist": "L\u00e4gg till i spellista", - "HeaderAddToPlaylist": "L\u00e4gg till i Spellista", - "LabelName": "Namn:", - "ButtonSubmit": "Bekr\u00e4fta", - "LabelSelectPlaylist": "Spellista:", - "OptionNewPlaylist": "Ny spellista...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "Visa", - "ButtonViewSeriesRecording": "Visa serieinspelning", - "ValueOriginalAirDate": "Ursprungligt s\u00e4ndningsdatum: {0}", - "ButtonRemoveFromPlaylist": "Ta bort fr\u00e5n spellista", - "HeaderSpecials": "Specialer", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Ljud", - "HeaderResolution": "Uppl\u00f6sning", - "HeaderVideo": "Video", - "HeaderRuntime": "Speltid", - "HeaderCommunityRating": "Anv\u00e4ndaromd\u00f6me", - "HeaderPasswordReset": "\u00c5terst\u00e4llning av l\u00f6senordet", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Premi\u00e4rdatum:", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "S\u00e4song", - "HeaderSeasonNumber": "S\u00e4songsnummer:", - "HeaderNetwork": "TV-bolag", - "HeaderYear": "Year", - "HeaderGameSystem": "Spelsystem", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Infogad bild", - "HeaderTrack": "Sp\u00e5r", - "HeaderDisc": "Skiva", - "OptionMovies": "Filmer", - "OptionCollections": "Samlingar", - "OptionSeries": "Serier", - "OptionSeasons": "S\u00e4songer", - "OptionEpisodes": "Avsnitt", - "OptionGames": "Spel", - "OptionGameSystems": "Spelsystem", - "OptionMusicArtists": "Musikartister", - "OptionMusicAlbums": "Album", - "OptionMusicVideos": "Musikvideor", - "OptionSongs": "L\u00e5tar", - "OptionHomeVideos": "Hemvideor", - "OptionBooks": "B\u00f6cker", - "OptionAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna", - "ButtonUp": "Upp", - "ButtonDown": "Ner", - "LabelMetadataReaders": "Metadatal\u00e4sare:", - "LabelMetadataReadersHelp": "Rangordna dina lokala metadatak\u00e4llor i prioritetsordning. F\u00f6rst hittade fil l\u00e4ses in.", - "LabelMetadataDownloaders": "H\u00e4mtare av metadata:", - "LabelMetadataDownloadersHelp": "Aktivera och rangordna dina h\u00e4mtare baserat p\u00e5 prioritet. L\u00e4gre prioriterade h\u00e4mtare anv\u00e4nds endast f\u00f6r att fylla i saknad information.", - "LabelMetadataSavers": "Metadatasparare:", - "LabelMetadataSaversHelp": "V\u00e4lj de filformat du vill anv\u00e4nda f\u00f6r att spara dina metadata.", - "LabelImageFetchers": "H\u00e4mtare av bilder:", - "LabelImageFetchersHelp": "Aktivera och rangordna dina h\u00e4mtare baserat p\u00e5 prioritet.", - "ButtonQueueAllFromHere": "K\u00f6a alla fr o m h\u00e4r", - "ButtonPlayAllFromHere": "Spela upp alla fr o m h\u00e4r", - "LabelDynamicExternalId": "{0} ID:", - "HeaderIdentify": "Identifiera objekt", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Visningsordning f\u00f6r titlar", - "OptionSortName": "Sorteringstitel", - "OptionReleaseDate": "Premi\u00e4rdatum", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Skiva nr", - "LabelParentNumber": "F\u00f6r\u00e4lder nr", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Sp\u00e5r nr", - "LabelNumber": "Nr:", - "LabelReleaseDate": "Premi\u00e4rdatum:", - "LabelEndDate": "Slutdatum:", - "LabelYear": "\u00c5r:", - "LabelDateOfBirth": "F\u00f6delsedatum:", - "LabelBirthYear": "F\u00f6delse\u00e5r:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "D\u00f6d:", - "HeaderRemoveMediaLocation": "Ta bort mediaplats", - "MessageConfirmRemoveMediaLocation": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r platsen?", - "HeaderRenameMediaFolder": "Byt namn p\u00e5 mediamapp", - "LabelNewName": "Nytt namn:", - "HeaderAddMediaFolder": "Skapa mediamapp", - "HeaderAddMediaFolderHelp": "Namn (Filmer, Musik, TV, etc)", - "HeaderRemoveMediaFolder": "Ta bort mediamapp", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "F\u00f6ljande platser kommer att tas bort fr\u00e5n biblioteket:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r mappen?", - "ButtonRename": "\u00c4ndra namn", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Lagringsplatser f\u00f6r media", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Tillval: S\u00f6kv\u00e4gsutbyte betyder att en plats p\u00e5 servern kopplas till en lokal fils\u00f6kv\u00e4g p\u00e5 en klient. P\u00e5 s\u00e5 s\u00e4tt f\u00e5r klienten direkt tillg\u00e5ng till material p\u00e5 servern och kan spela upp det direkt via n\u00e4tverket.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Filmer", - "FolderTypeMusic": "Musik", - "FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna", - "FolderTypePhotos": "Foton", - "FolderTypeMusicVideos": "Musikvideor", - "FolderTypeHomeVideos": "Hemvideor", - "FolderTypeGames": "Spel", - "FolderTypeBooks": "B\u00f6cker", - "FolderTypeTvShows": "TV", - "TabMovies": "Filmer", - "TabSeries": "Serie", - "TabEpisodes": "Avsnitt", - "TabTrailers": "Trailers", - "TabGames": "Spel", - "TabAlbums": "Album", - "TabSongs": "L\u00e5tar", - "TabMusicVideos": "Musikvideor", - "BirthPlaceValue": "F\u00f6delseort:{0}", - "DeathDateValue": "D\u00f6d: {0}", - "BirthDateValue": "F\u00f6dd: {0}", - "HeaderLatestReviews": "Senaste recensioner", - "HeaderPluginInstallation": "Installation av till\u00e4gg", - "MessageAlreadyInstalled": "Den h\u00e4r versionen \u00e4r redan installerad.", - "ValueReviewCount": "{0} recensioner", - "MessageYouHaveVersionInstalled": "Version {0} \u00e4r installerad.", - "MessageTrialExpired": "Provperioden f\u00f6r den h\u00e4r funktionen \u00e4r avslutad", - "MessageTrialWillExpireIn": "Provperioden f\u00f6r den h\u00e4r funktionen avslutas om {0} dag(ar)", - "MessageInstallPluginFromApp": "Detta till\u00e4gg m\u00e5ste installeras inifr\u00e5n den app det skall anv\u00e4ndas i.", - "ValuePriceUSD": "Pris: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Ta bort", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Ej klassad", - "ValueDiscNumber": "Skiva {0}", - "HeaderUnknownDate": "Ok\u00e4nt datum", - "HeaderUnknownYear": "Ok\u00e4nt \u00e5r", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Spela upp med extern uppspelare", - "HeaderSelectExternalPlayer": "V\u00e4lj extern uppspelare", - "HeaderExternalPlayerPlayback": "Uppspelning med extern uppspelare", - "ButtonImDone": "Klart!", - "OptionWatched": "Visad", - "OptionUnwatched": "Ej visad", - "ExternalPlayerPlaystateOptionsHelp": "Ange hur du vill \u00e5teruppta den h\u00e4r videon n\u00e4sta g\u00e5ng.", - "LabelMarkAs": "Markera som:", - "OptionInProgress": "P\u00e5g\u00e5r", - "LabelResumePoint": "\u00c5teruppta vid:", - "ValueOneMovie": "1 film", - "ValueMovieCount": "{0} filmer", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 serie", - "ValueSeriesCount": "{0} serier", - "ValueOneEpisode": "1 avsnitt", - "ValueEpisodeCount": "{0} avsnitt", - "ValueOneGame": "1 spel", - "ValueGameCount": "{0} spel", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} album", - "ValueOneSong": "1 l\u00e5t", - "ValueSongCount": "{0} l\u00e5tar", - "ValueOneMusicVideo": "1 musikvideo", - "ValueMusicVideoCount": "{0} musikvideor", - "HeaderOffline": "Offline", - "HeaderUnaired": "Ej s\u00e4nt", - "HeaderMissing": "Saknas", - "ButtonWebsite": "Hemsida", - "TooltipFavorite": "Favorit", - "TooltipLike": "Gilla", - "TooltipDislike": "Ogilla", - "TooltipPlayed": "Visad", - "ValueSeriesYearToPresent": "{0} -nu", - "ValueAwards": "Utm\u00e4rkelser: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Int\u00e4kter: {0}", - "ValuePremiered": "Premi\u00e4rdatum {0}", - "ValuePremieres": "Premi\u00e4rdatum {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studior: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Gr\u00e4ns:", - "ValueLinks": "L\u00e4nkar: {0}", - "HeaderPeople": "Personer", - "HeaderCastAndCrew": "Medverkande", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artister: {0}", - "HeaderTags": "Etiketter", - "MediaInfoCameraMake": "Kamerafabrikat", - "MediaInfoCameraModel": "Kameramodell", - "MediaInfoAltitude": "H\u00f6jd", - "MediaInfoAperture": "Bl\u00e4ndare", - "MediaInfoExposureTime": "Exponeringstid", - "MediaInfoFocalLength": "Br\u00e4nnvidd", - "MediaInfoOrientation": "Orientering", - "MediaInfoIsoSpeedRating": "ISO-inst\u00e4llning", - "MediaInfoLatitude": "Latitud", - "MediaInfoLongitude": "Longitud", - "MediaInfoShutterSpeed": "Slutartid", - "MediaInfoSoftware": "Programvara", - "HeaderIfYouLikeCheckTheseOut": "Om du gillar {0}, ta en titt p\u00e5...", - "HeaderPlotKeywords": "Nyckelord i handlingen", - "HeaderMovies": "Filmer", - "HeaderAlbums": "Album", - "HeaderGames": "Spel", - "HeaderBooks": "B\u00f6cker", - "HeaderEpisodes": "Avsnitt", - "HeaderSeasons": "S\u00e4songer", - "HeaderTracks": "Sp\u00e5r", - "HeaderItems": "Objekt", - "HeaderOtherItems": "\u00d6vriga objekt", - "ButtonFullReview": "Fullst\u00e4ndig recension:", - "ValueAsRole": "som {0}", - "ValueGuestStar": "G\u00e4startist", - "MediaInfoSize": "Storlek", - "MediaInfoPath": "S\u00f6kv\u00e4g", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "F\u00f6rval", - "MediaInfoForced": "Tvingade", - "MediaInfoExternal": "Externa", - "MediaInfoTimestamp": "Tidsst\u00e4mpel", - "MediaInfoPixelFormat": "Pixelformat", - "MediaInfoBitDepth": "F\u00e4rgdjup", - "MediaInfoSampleRate": "Samplingsfrekvens", - "MediaInfoBitrate": "Bithastighet", - "MediaInfoChannels": "Kanaler", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Spr\u00e5k", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profil", - "MediaInfoLevel": "Niv\u00e5", - "MediaInfoAspectRatio": "Bildf\u00f6rh\u00e5llande:", - "MediaInfoResolution": "Uppl\u00f6sning", - "MediaInfoAnamorphic": "Anamorfisk", - "MediaInfoInterlaced": "Sammanfl\u00e4tad", - "MediaInfoFramerate": "Bildfrekvens", - "MediaInfoStreamTypeAudio": "Ljud", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Undertext", - "MediaInfoStreamTypeEmbeddedImage": "Infogad bild", - "MediaInfoRefFrames": "Referensbildrutor", - "TabPlayback": "Uppspelning", - "TabNotifications": "Meddelanden", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "V\u00e4lj s\u00f6kv\u00e4g f\u00f6r egna vinjetter", - "HeaderRateAndReview": "Betygs\u00e4tt och rescensera", - "HeaderThankYou": "Tack", - "MessageThankYouForYourReview": "Tack f\u00f6r din rescension", - "LabelYourRating": "Ditt betyg:", - "LabelFullReview": "Fullst\u00e4ndig recension:", - "LabelShortRatingDescription": "Kort summering av betyg:", - "OptionIRecommendThisItem": "Jag rekommenderar detta", - "WebClientTourContent": "Se nytillkommet inneh\u00e5ll, kommande avsnitt m m. De gr\u00f6na ringarna anger hur m\u00e5nga ej visade objekt som finns.", - "WebClientTourMovies": "Se filmer, trailers och mycket mera p\u00e5 vilken enhet som helst som har en webbl\u00e4sare", - "WebClientTourMouseOver": "H\u00e5ll muspekaren \u00f6ver en affisch f\u00f6r att se den viktigaste informationen", - "WebClientTourTapHold": "Tryck-och-h\u00e5ll eller h\u00f6gerklicka p\u00e5 en affisch f\u00f6r att f\u00e5 upp en inneh\u00e5llsmeny", - "WebClientTourMetadataManager": "Klicka p\u00e5 \"\u00e4ndra\" f\u00f6r att \u00f6ppna metadatahanteraren", - "WebClientTourPlaylists": "Skapa enkelt spellistor och snabbmixar och spela upp dem p\u00e5 valfri enhet", - "WebClientTourCollections": "Skapa dina egna samlingsboxar", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Utforma webbklientens utseende enligt egna \u00f6nskem\u00e5l", - "WebClientTourUserPreferences4": "Anpassa fondbilder, ledmotiv och externa uppspelare", - "WebClientTourMobile1": "Webbklienten fungerar perfekt p\u00e5 smarta telefoner och surfplattor...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Ha ett trevligt bes\u00f6k", - "DashboardTourDashboard": "Via serverns kontrollpanel kan du \u00f6vervaka din server och alla anv\u00e4ndare. Du kommer alltid att kunna veta vem som g\u00f6r vad och var de \u00e4r.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Skapa enkelt anv\u00e4ndarkonton f\u00f6r dina v\u00e4nner och familj, alla med sina egna beh\u00f6righeter, biblioteks \u00e5tkomst, f\u00f6r\u00e4ldrakontroll och mycket mer.", - "DashboardTourCinemaMode": "Biol\u00e4get g\u00f6r ditt vardagsrum till en biograf genom m\u00f6jligheten att visa trailers och egna vinjetter innan filmen b\u00f6rjar.", - "DashboardTourChapters": "Ta fram kapitelbildrutor fr\u00e5n videofiler f\u00f6r att f\u00e5 en snyggare presentation.", - "DashboardTourSubtitles": "H\u00e4mta automatiskt undertexter f\u00f6r dina videor p\u00e5 alla spr\u00e5k.", - "DashboardTourPlugins": "Installera till\u00e4gg s\u00e5som Internetvideokanaler, live-TV, metadatah\u00e4mtare och mycket mer.", - "DashboardTourNotifications": "Skicka automatiskt meddelanden om serverh\u00e4ndelser till din mobiltelefon, e-post och mycket mer.", - "DashboardTourScheduledTasks": "Hantera enkelt tidskr\u00e4vande uppgifter med hj\u00e4lp av schemalagda aktiviteter. Best\u00e4m n\u00e4r de skall k\u00f6ras, och hur ofta.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Uppdatering k\u00f6ad", - "TabDevices": "Enheter", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Senast anv\u00e4nd av {0}", - "HeaderDeleteDevice": "Ta bort enhet", - "DeleteDeviceConfirmation": "\u00c4r du s\u00e4ker p\u00e5 att du vill ta bort den h\u00e4r enheten? Den kommer att dyka upp igen n\u00e4sta g\u00e5ng en anv\u00e4ndare kopplar upp sig med den.", - "LabelEnableCameraUploadFor": "Aktivera kamerauppladdning f\u00f6r:", - "HeaderSelectUploadPath": "V\u00e4lj s\u00f6kv\u00e4g f\u00f6r uppladdning", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "Sluttiden m\u00e5ste vara senare \u00e4n starttiden.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Gl\u00f6mt L\u00f6senord", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Synk", - "SyncMedia": "Synkronisera Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Synk", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Synkronisera automatiskt nytt inneh\u00e5ll", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Synkronisera endast osedda videos", - "OptionSyncUnwatchedVideosOnlyHelp": "Endast osedda videos kommer att synkroniseras, och videos kommer att tas bort fr\u00e5n enheten n\u00e4r de har tittats p\u00e5.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "K\u00f6as", - "SyncJobItemStatusConverting": "Konverterar", - "SyncJobItemStatusTransferring": "\u00d6verf\u00f6r", - "SyncJobItemStatusSynced": "Synkad", - "SyncJobItemStatusFailed": "Misslyckades", - "SyncJobItemStatusRemovedFromDevice": "Borttagen fr\u00e5n enhet", - "SyncJobItemStatusCancelled": "Avbruten", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Avancerat", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Avancerad uppdatering", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Affisch", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Tidslinje", - "OptionList": "Lista", - "OptionThumb": "Miniatyr", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banderoll", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Spela in", - "ButtonOther": "Other", - "HeaderSortBy": "Sortera efter:", - "HeaderSortOrder": "Sorteringsordning:", - "OptionAscending": "Stigande", - "OptionDescending": "Sjunkande", - "OptionNameSort": "Namn", - "OptionTvdbRating": "TVDB-betyg", - "OptionPremiereDate": "Premi\u00e4rdatum", - "OptionImdbRating": "Betyg p\u00e5 IMDB", - "OptionDatePlayed": "Senast visad", - "OptionDateAdded": "Inlagd den", - "OptionPlayCount": "Antal visningar", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Albumartist", - "OptionArtist": "Artist", - "OptionAlbum": "Album", - "OptionTrackName": "Sp\u00e5rnamn", - "OptionCommunityRating": "Allm\u00e4nhetens betyg", - "ButtonSort": "Sortera", - "ButtonMenu": "Menu", - "OptionDefaultSort": "F\u00f6rval", - "ButtonFilter": "Filtrera", - "OptionCriticRating": "Kritikerbetyg", - "OptionVideoBitrate": "Bithastighet f\u00f6r video", - "OptionMetascore": "Metabetyg", - "OptionRevenue": "Int\u00e4kter", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "S\u00f6k", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "N\u00e4stkommande", - "HeaderLatestMovies": "Nytillkomna filmer", - "HeaderLatestEpisodes": "Senaste avsnitten", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Biol\u00e4ge", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/tr.json b/dashboard-ui/strings/javascript/tr.json deleted file mode 100644 index 4e2eedb708..0000000000 --- a/dashboard-ui/strings/javascript/tr.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Ayarlar Kaydedildi", - "AddUser": "Kullan\u0131c\u0131 Ekle", - "Users": "Kullan\u0131c\u0131lar", - "Delete": "Sil", - "Administrator": "Y\u00f6netici", - "Password": "Sifre", - "DeleteImage": "Resmi Sil", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Bu G\u00f6r\u00fcnt\u00fcy\u00fc Silmek \u0130stedi\u011finizden Eminmisiniz?", - "FileReadCancelled": "Dosya Okuma \u0130ptal Edildi", - "FileNotFound": "Dosya Bulunamad\u0131", - "FileReadError": "Dosya Okunurken Bir Hata Olu\u015ftu", - "DeleteUser": "Kullan\u0131c\u0131 Sil", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "Parolan\u0131z S\u0131f\u0131rlanm\u0131st\u0131r.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Sifrenizi S\u0131f\u0131rlamak \u0130stediginizden Eminmisiniz?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Sifre Kaydedildi", - "PasswordMatchError": "Parola ve Sifre Eslesmelidir.", - "OptionRelease": "Resmi Yay\u0131n", - "OptionBeta": "Deneme", - "OptionDev": "Gelistirici", - "UninstallPluginHeader": "Eklenti Kald\u0131r", - "UninstallPluginConfirmation": "Kald\u0131rmak \u0130stediginizden Eminmisiniz {0} ?", - "NoPluginConfigurationMessage": "Eklenti \u0130cin Ayar Yok", - "NoPluginsInstalledMessage": "Eklentiler Y\u00fckl\u00fc De\u011fil", - "BrowsePluginCatalogMessage": "Mevcut Eklentileri G\u00f6rebilmek \u0130\u00e7in Eklenti Katologuna G\u00f6z At\u0131n.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Canl\u0131 TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Otomatik", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "Kullan\u0131c\u0131lar", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "Kay\u0131t", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "Yeni Koleksiyon", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "Buraya", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Sessiz", - "ButtonUnmute": "Unmute", - "ButtonStop": "Durdur", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Duraklat", - "ButtonPlay": "\u00c7al", - "ButtonEdit": "D\u00fczenle", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "T\u00fcm Kay\u0131tlar", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Pazar", - "OptionMonday": "Pazartesi", - "OptionTuesday": "Sal\u0131", - "OptionWednesday": "\u00c7ar\u015famba", - "OptionThursday": "Per\u015fembe", - "OptionFriday": "Cuma", - "OptionSaturday": "Cumartesi", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Devam", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Klas\u00f6rleri", - "HeaderLatestMedia": "En Son G\u00f6r\u00fcnt\u00fclemeler", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favori Filmler", - "HeaderFavoriteShows": "Favori Showlar", - "HeaderFavoriteEpisodes": "Favori B\u00f6l\u00fcmler", - "HeaderFavoriteGames": "Favori Oyunlar", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Ekle", - "ButtonRemove": "Sil", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favori Albumler", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Tamam", - "ButtonCancel": "\u0130ptal", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Diziler", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Anasayfa", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Kanallar", - "HeaderMediaFolders": "Media Klas\u00f6rleri", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Bitmi\u015f", - "OptionContinuing": "Topluluk", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Ayarlar", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Etiketler", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "\u00c7al\u0131\u015fma s\u00fcresi", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Sunucu", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Geli\u015fmi\u015f", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Altyaz\u0131lar", - "ButtonScenes": "Sahneler", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Se\u00e7im", - "ButtonNew": "Yeni", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "\u0130sim", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Filmler", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "Filmler", - "TabSeries": "Seriler", - "TabEpisodes": "B\u00f6l\u00fcmler", - "TabTrailers": "Fragmanlar", - "TabGames": "Oyunlar", - "TabAlbums": "Alb\u00fcm", - "TabSongs": "\u015eark\u0131lar", - "TabMusicVideos": "Klipler", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Sil", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Bilgi", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Kay\u0131t", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Y\u00fckselen", - "OptionDescending": "D\u00fc\u015fen", - "OptionNameSort": "\u0130sim", - "OptionTvdbRating": "Tvdb Reyting", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "\u0130MDb Reyting", - "OptionDatePlayed": "Oynatma Tarihi", - "OptionDateAdded": "Eklenme Tarihi", - "OptionPlayCount": "Oynatma sayac\u0131", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Sanat\u00e7\u0131 Alb\u00fcm\u00fc", - "OptionArtist": "Sanat\u00e7\u0131", - "OptionAlbum": "Alb\u00fcm", - "OptionTrackName": "Par\u00e7a \u0130smi", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "S\u0131rala", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filtre", - "OptionCriticRating": "Kritik Rating", - "OptionVideoBitrate": "Video Kalitesi", - "OptionMetascore": "Metascore", - "OptionRevenue": "Revenue", - "OptionBudget": "Budget", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Arama", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Sonraki hafta", - "HeaderLatestMovies": "Son filmler", - "HeaderLatestEpisodes": "Latest Episodes", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/uk.json b/dashboard-ui/strings/javascript/uk.json deleted file mode 100644 index c0abed206f..0000000000 --- a/dashboard-ui/strings/javascript/uk.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "Users", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "Official Release", - "OptionBeta": "Beta", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "Auto", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "\u0417\u0431\u0435\u0440\u0456\u0433\u0442\u0438", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "\u0414\u043e\u0434\u0430\u0442\u0438 \u0434\u043e \u043a\u043e\u043b\u0435\u043a\u0446\u0456\u0457", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "To", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "\u041d\u0435\u043c\u0430\u0454 \u043d\u0435\u043f\u0440\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u0445 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u044c.", - "ButtonViewNotifications": "\u041f\u0435\u0440\u0435\u0433\u043b\u044f\u043d\u0443\u0442\u0438 \u043f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Sunday", - "OptionMonday": "Monday", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Saturday", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u043c\u0435\u0434\u0456\u0430", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "\u0423\u043b\u044e\u0431\u043b\u0435\u043d\u0456 \u0444\u0456\u043b\u044c\u043c\u0438", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Add", - "ButtonRemove": "Remove", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0438", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "\u0421\u0442\u0443\u0434\u0456\u0457", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Runtime", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "Server", - "TabUsers": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456", - "TabLibrary": "\u0411\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430", - "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u0456", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "\u0414\u043e\u0434\u0430\u0442\u043a\u0438", - "TabAdvanced": "Advanced", - "TabHelp": "\u0414\u043e\u0432\u0456\u0434\u043a\u0430", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "\u042f\u043a\u0456\u0441\u0442\u044c", - "HeaderNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "Select", - "ButtonNew": "\u041d\u043e\u0432\u0438\u0439", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "Name:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0438", - "HeaderAudio": "\u0410\u0443\u0434\u0456\u043e", - "HeaderResolution": "Resolution", - "HeaderVideo": "\u0412\u0456\u0434\u0435\u043e", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "\u0421\u0435\u0437\u043e\u043d", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "\u0414\u043e\u0440\u0456\u0436\u043a\u0430", - "HeaderDisc": "\u0414\u0438\u0441\u043a", - "OptionMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", - "OptionCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457", - "OptionSeries": "\u0421\u0435\u0440\u0456\u044f", - "OptionSeasons": "\u0421\u0435\u0437\u043e\u043d\u0438", - "OptionEpisodes": "Episodes", - "OptionGames": "\u0406\u0433\u0440\u0438", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "\u041f\u0456\u0441\u043d\u0456", - "OptionHomeVideos": "\u0414\u043e\u043c\u0430\u0448\u043d\u0454 \u0432\u0456\u0434\u0435\u043e", - "OptionBooks": "\u041a\u043d\u0438\u0433\u0438", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f:", - "LabelBirthYear": "\u0420\u0456\u043a \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f:", - "LabelBirthDate": "\u0414\u0430\u0442\u0430 \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f:", - "LabelDeathDate": "\u0414\u0430\u0442\u0430 \u0441\u043c\u0435\u0440\u0442\u0456:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "\u041f\u0435\u0440\u0435\u0439\u043c\u0435\u043d\u0443\u0432\u0430\u0442\u0438", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", - "FolderTypeMusic": "\u041c\u0443\u0437\u0438\u043a\u0430", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "\u0421\u0432\u0456\u0442\u043b\u0438\u043d\u0438", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "\u0406\u0433\u0440\u0438", - "FolderTypeBooks": "\u041a\u043d\u0438\u0433\u0438", - "FolderTypeTvShows": "\u0422\u0411", - "TabMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", - "TabSeries": "Series", - "TabEpisodes": "\u0415\u043f\u0456\u0437\u043e\u0434\u0438", - "TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0438", - "TabGames": "Games", - "TabAlbums": "Albums", - "TabSongs": "Songs", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "\u041c\u0456\u0441\u0446\u0435 \u043d\u0430\u0440\u043e\u0434\u0436\u0435\u043d\u043d\u044f: {0}", - "DeathDateValue": "\u041f\u043e\u043c\u0435\u0440: {0}", - "BirthDateValue": "\u041d\u0430\u0440\u043e\u0434\u0438\u0432\u0441\u044f: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "\u0426\u0456\u043d\u0430: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "\u0414\u0438\u0441\u043a {0}", - "HeaderUnknownDate": "\u041d\u0435\u0432\u0456\u0434\u043e\u043c\u0430 \u0434\u0430\u0442\u0430", - "HeaderUnknownYear": "\u041d\u0435\u0432\u0456\u0434\u043e\u043c\u0438\u0439 \u0440\u0456\u043a", - "ValueMinutes": "{0} \u0445\u0432\u0438\u043b\u0438\u043d", - "ButtonPlayExternalPlayer": "\u0412\u0456\u0434\u0442\u0432\u043e\u0440\u0438\u0442\u0438 \u0443 \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u044c\u043e\u043c\u0443 \u043f\u0440\u043e\u0433\u0440\u0430\u0432\u0430\u0447\u0456", - "HeaderSelectExternalPlayer": "\u041e\u0431\u0435\u0440\u0456\u0442\u044c \u0437\u043e\u0432\u043d\u0456\u0448\u043d\u0456\u0439 \u043f\u0440\u043e\u0433\u0440\u0430\u0432\u0430\u0447", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "\u041f\u043e\u0437\u043d\u0430\u0447\u0438\u0442\u0438 \u044f\u043a:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 \u0444\u0456\u043b\u044c\u043c", - "ValueMovieCount": "{0} \u0444\u0456\u043b\u044c\u043c\u0456\u0432", - "ValueOneTrailer": "1 \u0442\u0440\u0435\u0439\u043b\u0435\u0440", - "ValueTrailerCount": "{0} \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0456\u0432", - "ValueOneSeries": "1 \u0441\u0435\u0440\u0456\u044f", - "ValueSeriesCount": "{0} \u0441\u0435\u0440\u0456\u0439", - "ValueOneEpisode": "1 \u0435\u043f\u0456\u0437\u043e\u0434", - "ValueEpisodeCount": "{0} \u0435\u043f\u0456\u0437\u043e\u0434\u0456\u0432", - "ValueOneGame": "1 \u0433\u0440\u0430", - "ValueGameCount": "{0} \u0456\u0433\u0440", - "ValueOneAlbum": "1 \u0430\u043b\u044c\u0431\u043e\u043c", - "ValueAlbumCount": "{0} \u0430\u043b\u044c\u0431\u043e\u043c\u0456\u0432", - "ValueOneSong": "1 \u043f\u0456\u0441\u043d\u044f", - "ValueSongCount": "{0} \u043f\u0456\u0441\u0435\u043d\u044c", - "ValueOneMusicVideo": "1 \u043c\u0443\u0437\u0438\u0447\u043d\u0438\u0439 \u043a\u043b\u0456\u043f", - "ValueMusicVideoCount": "{0} \u043c\u0443\u0437\u0438\u0447\u043d\u0438\u0445 \u043a\u043b\u0456\u043f\u0456\u0432", - "HeaderOffline": "\u041f\u043e\u0437\u0430 \u043c\u0435\u0440\u0435\u0436\u0435\u044e", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "\u0423\u043b\u044e\u0431\u043b\u0435\u043d\u0435", - "TooltipLike": "\u041f\u043e\u0434\u043e\u0431\u0430\u0454\u0442\u044c\u0441\u044f", - "TooltipDislike": "\u041d\u0435 \u043f\u043e\u0434\u043e\u0431\u0430\u0454\u0442\u044c\u0441\u044f", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "\u041d\u0430\u0433\u043e\u0440\u043e\u0434\u0438: {0}", - "ValueBudget": "\u0411\u044e\u0434\u0436\u0435\u0442: {0}", - "ValueRevenue": "\u041a\u0430\u0441\u043e\u0432\u0456 \u0437\u0431\u043e\u0440\u0438: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "\u0421\u0442\u0443\u0434\u0456\u044f: {0}", - "ValueStudios": "\u0421\u0442\u0443\u0434\u0456\u0457: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "\u041e\u0431\u043c\u0435\u0436\u0435\u043d\u043d\u044f:", - "ValueLinks": "\u041f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "\u0410\u043a\u0442\u043e\u0440: {0}", - "ValueArtists": "\u0410\u043a\u0442\u043e\u0440\u0438: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "\u0412\u0438\u0441\u043e\u0442\u0430", - "MediaInfoAperture": "\u0410\u043f\u0435\u0440\u0442\u0443\u0440\u0430", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "\u0428\u0438\u0440\u043e\u0442\u0430", - "MediaInfoLongitude": "\u0414\u043e\u0432\u0433\u043e\u0442\u0430", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "\u0424\u0456\u043b\u044c\u043c\u0438", - "HeaderAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0438", - "HeaderGames": "\u0406\u0433\u0440\u0438", - "HeaderBooks": "\u041a\u043d\u0438\u0433\u0438", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "\u0421\u0435\u0437\u043e\u043d\u0438", - "HeaderTracks": "\u0414\u043e\u0440\u0456\u0436\u043a\u0438", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "\u0420\u043e\u0437\u043c\u0456\u0440", - "MediaInfoPath": "\u0428\u043b\u044f\u0445", - "MediaInfoFile": "File", - "MediaInfoFormat": "\u0424\u043e\u0440\u043c\u0430\u0442", - "MediaInfoContainer": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440", - "MediaInfoDefault": "\u0422\u0438\u043f\u043e\u0432\u043e", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "\u041a\u0430\u043d\u0430\u043b\u0438", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "\u041c\u043e\u0432\u0430", - "MediaInfoCodec": "\u041a\u043e\u0434\u0435\u043a", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "\u041f\u0440\u043e\u0444\u0456\u043b\u044c", - "MediaInfoLevel": "\u0420\u0456\u0432\u0435\u043d\u044c", - "MediaInfoAspectRatio": "\u0421\u043f\u0456\u0432\u0432\u0456\u0434\u043d\u043e\u0448\u0435\u043d\u043d\u044f \u0441\u0442\u043e\u0440\u0456\u043d", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "\u0410\u0443\u0434\u0456\u043e", - "MediaInfoStreamTypeData": "\u0414\u0430\u0442\u0430", - "MediaInfoStreamTypeVideo": "\u0412\u0456\u0434\u0435\u043e", - "MediaInfoStreamTypeSubtitle": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "\u0414\u044f\u043a\u0443\u044e", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "\u0412\u0438\u0434\u0430\u043b\u0438\u0442\u044c \u043f\u0440\u0438\u0441\u0442\u0440\u0456\u0439", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "\u0417\u0430\u043f\u0440\u043e\u0448\u0435\u043d\u043d\u044f \u043d\u0430\u0434\u0456\u0441\u043b\u0430\u043d\u043e", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "\u0414\u043e\u0437\u0432\u043e\u043b\u0435\u043d\u043e", - "ButtonReject": "\u0412\u0456\u0434\u0445\u0438\u043b\u0435\u043d\u043e", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "\u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0437\u0432\u0435\u0440\u043d\u0456\u0442\u044c\u0441\u044f \u0434\u043e \u0430\u0434\u043c\u0456\u043d\u0456\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0430 \u0434\u043b\u044f \u0441\u043a\u0438\u0434\u0430\u043d\u043d\u044f \u0432\u0430\u0448\u043e\u0433\u043e \u043f\u0430\u0440\u043e\u043b\u044e.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "\u0417\u0430\u043f\u0440\u043e\u0441\u0438\u0442\u0438 \u0433\u043e\u0441\u0442\u044f", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0456\u0437\u043e\u0432\u0430\u043d\u043e", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "\u0421\u043a\u0430\u0441\u043e\u0432\u0430\u043d\u043e", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "Poster", - "OptionPosterCard": "Poster card", - "OptionTimeline": "Timeline", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Banner", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "\u0406\u043c\u2019\u044f", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "IMDb Rating", - "OptionDatePlayed": "Date Played", - "OptionDateAdded": "Date Added", - "OptionPlayCount": "Play Count", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album Artist", - "OptionArtist": "\u0410\u043a\u0442\u043e\u0440", - "OptionAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c", - "OptionTrackName": "Track Name", - "OptionCommunityRating": "Community Rating", - "ButtonSort": "Sort", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "\u0424\u0456\u043b\u044c\u0442\u0440", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "Video Bitrate", - "OptionMetascore": "Metascore", - "OptionRevenue": "\u0417\u0431\u043e\u0440\u0438", - "OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0444\u0456\u043b\u044c\u043c\u0438", - "HeaderLatestEpisodes": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0435\u043f\u0456\u0437\u043e\u0434\u0438", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/vi.json b/dashboard-ui/strings/javascript/vi.json deleted file mode 100644 index aaa139d62f..0000000000 --- a/dashboard-ui/strings/javascript/vi.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "L\u01b0u c\u00e1c c\u00e0i \u0111\u1eb7t.", - "AddUser": "Th\u00eam ng\u01b0\u1eddi d\u00f9ng", - "Users": "Ng\u01b0\u1eddi d\u00f9ng", - "Delete": "X\u00f3a", - "Administrator": "Ng\u01b0\u1eddi qu\u1ea3n tr\u1ecb", - "Password": "M\u1eadt kh\u1ea9u", - "DeleteImage": "X\u00f3a h\u00ecnh \u1ea3nh", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "B\u1ea1n c\u00f3 ch\u1eafc mu\u1ed1n x\u00f3a h\u00ecnh \u1ea3nh n\u00e0y?", - "FileReadCancelled": "T\u1ec7p tin \u0111\u1ecdc \u0111\u00e3 b\u1ecb h\u1ee7y.", - "FileNotFound": "Kh\u00f4ng t\u00ecm th\u1ea5y t\u1ec7p tin.", - "FileReadError": "C\u00f3 m\u1ed9t l\u1ed7i x\u1ea3y ra khi \u0111\u1ecdc t\u1ec7p tin n\u00e0y.", - "DeleteUser": "X\u00f3a ng\u01b0\u1eddi d\u00f9ng", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "M\u1eadt kh\u1ea9u \u0111\u00e3 \u0111\u01b0\u1ee3c reset", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "B\u1ea1n c\u00f3 ch\u1eafc mu\u1ed1n reset m\u1eadt kh\u1ea9u?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "M\u1eadt kh\u1ea9u \u0111\u00e3 \u0111\u01b0\u1ee3c l\u01b0u.", - "PasswordMatchError": "M\u1eadt kh\u1ea9u v\u00e0 m\u1eadt kh\u1ea9u x\u00e1c nh\u1eadn c\u1ea7n ph\u1ea3i kh\u1edbp nhau .", - "OptionRelease": "Ph\u00e1t h\u00e0nh ch\u00ednh th\u1ee9c", - "OptionBeta": "Beta", - "OptionDev": "Kh\u00f4ng \u1ed5n \u0111\u1ecbnh", - "UninstallPluginHeader": "G\u1ee1 b\u1ecf Plugin", - "UninstallPluginConfirmation": "B\u1ea1n c\u00f3 ch\u1eafc mu\u1ed1n g\u1ee1 b\u1ecf{0}?", - "NoPluginConfigurationMessage": "Plugin n\u00e0y kh\u00f4ng c\u00f3 g\u00ec \u0111\u1ec3 c\u1ea5u h\u00ecnh.", - "NoPluginsInstalledMessage": "B\u1ea1n \u0111\u00e3 ch\u01b0a c\u00e0i \u0111\u1eb7t c\u00e1c plugin.", - "BrowsePluginCatalogMessage": "Duy\u1ec7t qua c\u00e1c danh m\u1ee5c plugin c\u1ee7a ch\u00fang t\u00f4i \u0111\u1ec3 xem c\u00e1c plugin c\u00f3 s\u1eb5n.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "Live TV", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "T\u1ef1 \u0111\u1ed9ng", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "d\u00f9ng", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "L\u01b0u", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "New Collection", - "NewCollectionNameExample": "Example: Star Wars Collection", - "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "\u0110\u1ebfn", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "Play", - "ButtonEdit": "Edit", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "All Recordings", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "Ch\u1ee7 Nh\u1eadt", - "OptionMonday": "Th\u1ee9 Hai", - "OptionTuesday": "Tuesday", - "OptionWednesday": "Wednesday", - "OptionThursday": "Thursday", - "OptionFriday": "Friday", - "OptionSaturday": "Th\u1ee9 B\u1ea3y", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "S\u01a1 y\u1ebfu l\u00fd l\u1ecbch", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "Th\u00eam", - "ButtonRemove": "G\u1ee1 b\u1ecf", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "Ok", - "ButtonCancel": "Tho\u00e1t", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "Scenes", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "T\u00ean", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "Channels", - "HeaderMediaFolders": "Media Folders", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "Ended", - "OptionContinuing": "Continuing", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "Parental Rating", - "OptionPeople": "People", - "OptionRuntime": "Th\u1eddi gian ph\u00e1t", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "M\u00e1y ch\u1ee7", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "Metadata", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "Advanced", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "L\u1ef1a ch\u1ecdn", - "ButtonNew": "M\u1edbi", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "T\u00ean:", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "C\u00e1c phim", - "TabSeries": "Series", - "TabEpisodes": "C\u00e1c t\u1eadp phim", - "TabTrailers": "Trailers", - "TabGames": "Games", - "TabAlbums": "C\u00e1c Album", - "TabSongs": "C\u00e1c ca kh\u00fac", - "TabMusicVideos": "C\u00e1c video \u00e2m nh\u1ea1c", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "Delete", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "Info", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\u00c1p ph\u00edch", - "OptionPosterCard": "Poster card", - "OptionTimeline": "D\u00f2ng th\u1eddi gian", - "OptionList": "List", - "OptionThumb": "Thumb", - "OptionThumbCard": "Thumb card", - "OptionBanner": "Bi\u1ec3n qu\u1ea3ng c\u00e1o", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "Record", - "ButtonOther": "Other", - "HeaderSortBy": "Sort By", - "HeaderSortOrder": "Sort Order", - "OptionAscending": "Ascending", - "OptionDescending": "Descending", - "OptionNameSort": "T\u00ean", - "OptionTvdbRating": "Tvdb Rating", - "OptionPremiereDate": "Premiere Date", - "OptionImdbRating": "\u0110\u00e1nh gi\u00e1 IMDb", - "OptionDatePlayed": "Ng\u00e0y ph\u00e1t", - "OptionDateAdded": "Ng\u00e0y th\u00eam", - "OptionPlayCount": "S\u1ed1 l\u1ea7n ph\u00e1t", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "Album ngh\u1ec7 s\u1ef9", - "OptionArtist": "Ngh\u1ec7 s\u1ef9", - "OptionAlbum": "Album", - "OptionTrackName": "T\u00ean b\u00e0i", - "OptionCommunityRating": "\u0110\u00e1nh gi\u00e1 c\u1ee7a c\u1ed9ng \u0111\u1ed3ng", - "ButtonSort": "Ph\u00e2n lo\u1ea1i", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "Filter", - "OptionCriticRating": "Critic Rating", - "OptionVideoBitrate": "T\u1ed1c \u0111\u1ed9 Bit c\u1ee7a Video", - "OptionMetascore": "Metascore", - "OptionRevenue": "Doanh thu", - "OptionBudget": "Ng\u00e2n s\u00e1ch", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "T\u00ecm ki\u1ebfm", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "Next Up", - "HeaderLatestMovies": "Phim m\u1edbi nh\u1ea5t", - "HeaderLatestEpisodes": "C\u00e1c t\u1eadp phim m\u1edbi nh\u1ea5t", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/zh-CN.json b/dashboard-ui/strings/javascript/zh-CN.json deleted file mode 100644 index 41db87edab..0000000000 --- a/dashboard-ui/strings/javascript/zh-CN.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "\u8bbe\u7f6e\u5df2\u4fdd\u5b58", - "AddUser": "\u6dfb\u52a0\u7528\u6237", - "Users": "\u7528\u6237", - "Delete": "\u5220\u9664", - "Administrator": "\u7ba1\u7406\u5458", - "Password": "\u5bc6\u7801", - "DeleteImage": "\u5220\u9664\u56fe\u50cf", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "\u4f60\u786e\u5b9a\u8981\u5220\u9664\u6b64\u56fe\u50cf\uff1f", - "FileReadCancelled": "\u6587\u4ef6\u8bfb\u53d6\u5df2\u88ab\u53d6\u6d88\u3002", - "FileNotFound": "\u672a\u627e\u5230\u6587\u4ef6\u3002", - "FileReadError": "\u8bfb\u53d6\u6587\u4ef6\u53d1\u751f\u9519\u8bef\u3002", - "DeleteUser": "\u5220\u9664\u7528\u6237", - "DeleteUserConfirmation": "\u4f60\u786e\u5b9a\u8981\u5220\u9664\u6b64\u7528\u6237\uff1f", - "PasswordResetHeader": "\u5bc6\u7801\u91cd\u7f6e", - "PasswordResetComplete": "\u5bc6\u7801\u5df2\u91cd\u7f6e", - "PinCodeResetComplete": "PIN\u7801\u5df2\u88ab\u200b\u200b\u91cd\u7f6e\u3002", - "PasswordResetConfirmation": "\u4f60\u786e\u5b9a\u8981\u91cd\u7f6e\u5bc6\u7801\uff1f", - "PinCodeResetConfirmation": "\u4f60\u786e\u5b9a\u8981\u91cd\u7f6ePIN\u7801\uff1f", - "HeaderPinCodeReset": "\u91cd\u7f6ePIN\u7801", - "PasswordSaved": "\u5bc6\u7801\u5df2\u4fdd\u5b58\u3002", - "PasswordMatchError": "\u5bc6\u7801\u548c\u786e\u8ba4\u5bc6\u7801\u5fc5\u987b\u5339\u914d\u3002", - "OptionRelease": "\u5b98\u65b9\u6b63\u5f0f\u7248", - "OptionBeta": "\u6d4b\u8bd5\u7248", - "OptionDev": "\u5f00\u53d1\u7248\uff08\u4e0d\u7a33\u5b9a\uff09", - "UninstallPluginHeader": "\u5378\u8f7d\u63d2\u4ef6", - "UninstallPluginConfirmation": "\u4f60\u786e\u5b9a\u8981\u5378\u8f7d {0}?", - "NoPluginConfigurationMessage": "\u6b64\u63d2\u4ef6\u6ca1\u6709\u914d\u7f6e\u9009\u9879\u3002", - "NoPluginsInstalledMessage": "\u4f60\u6ca1\u6709\u5b89\u88c5\u63d2\u4ef6\u3002", - "BrowsePluginCatalogMessage": "\u6d4f\u89c8\u6211\u4eec\u7684\u63d2\u4ef6\u76ee\u5f55\u6765\u67e5\u770b\u73b0\u6709\u63d2\u4ef6\u3002", - "HeaderNewApiKey": "\u65b0Api \u5bc6\u94a5", - "LabelAppName": "APP\u540d\u79f0", - "LabelAppNameExample": "\u4f8b\u5982\uff1a Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "\u5e8f\u53f7\u901a\u8fc7\u7535\u5b50\u90ae\u4ef6\u53d1\u9001\u7ed9 {0}.", - "MessageKeysLinked": "\u5e8f\u53f7\u5df2\u5173\u8054", - "HeaderConfirmation": "\u786e\u8ba4", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "\u4eab\u53d7\u5956\u52b1\u529f\u80fd", - "TitleLiveTV": "\u7535\u89c6\u76f4\u64ad", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "\u6dfb\u52a0\u6807\u7b7e", - "LabelTag": "\u6807\u7b7e\uff1a", - "ButtonSelectView": "Select view", - "TitleSync": "\u540c\u6b65", - "OptionAutomatic": "\u81ea\u52a8", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "\u8bc6\u522b", - "HeaderIdentifyItem": "\u8bc6\u522b\u9879", - "LabelRecurringDonationCanBeCancelledHelp": "\u5728\u60a8\u7684PayPal\u8d26\u6237\u5185\u4efb\u4f55\u65f6\u5019\u90fd\u53ef\u4ee5\u53d6\u6d88\u7ecf\u5e38\u6027\u6350\u8d60\u3002", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "\u901a\u77e5", - "ErrorLaunchingChromecast": "\u542f\u52a8chromecast\u9047\u5230\u9519\u8bef\uff0c\u8bf7\u786e\u8ba4\u8bbe\u5907\u5df2\u7ecf\u8fde\u63a5\u5230\u4f60\u7684\u65e0\u7ebf\u7f51\u7edc\u3002", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "\u7528\u6237", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "\u641c\u7d22", - "ValueDateCreated": "\u521b\u5efa\u65e5\u671f\uff1a {0}", - "LabelArtist": "\u827a\u672f\u5bb6", - "LabelMovie": "\u7535\u5f71", - "LabelMusicVideo": "\u97f3\u4e50\u89c6\u9891", - "LabelEpisode": "\u5267\u96c6", - "LabelSeries": "Series", - "LabelStopping": "\u505c\u6b62", - "LabelCancelled": "(\u5df2\u53d6\u6d88)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "\u50a8\u5b58", - "ButtonDownload": "\u4e0b\u8f7d", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "\u5408\u96c6", - "HeaderAddToCollection": "\u52a0\u5165\u5408\u96c6", - "HeaderNewCollection": "\u65b0\u5408\u96c6", - "NewCollectionNameExample": "\u4f8b\u5982\uff1a\u661f\u7403\u5927\u6218\u5408\u96c6", - "OptionSearchForInternetMetadata": "\u5728\u4e92\u8054\u7f51\u4e0a\u641c\u7d22\u5a92\u4f53\u56fe\u50cf\u548c\u8d44\u6599", - "LabelSelectCollection": "\u9009\u62e9\u5408\u96c6\uff1a", - "HeaderDevices": "\u8bbe\u5907", - "ButtonScheduledTasks": "\u8ba1\u5212\u4efb\u52a1", - "MessageItemsAdded": "\u9879\u76ee\u5df2\u6dfb\u52a0", - "ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "\u8fdb\u884c\u53c2\u89c2", - "HeaderWelcomeBack": "\u6b22\u8fce\u56de\u6765\uff01", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "\u8fdb\u884c\u53c2\u89c2\uff0c\u770b\u770b\u6709\u4ec0\u4e48\u65b0\u4e1c\u897f", - "MessageNoSyncJobsFound": "\u6ca1\u6709\u53d1\u73b0\u540c\u6b65\u4f5c\u4e1a\u3002\u4f7f\u7528Web\u754c\u9762\u4e2d\u7684\u540c\u6b65\u6309\u94ae\u6765\u521b\u5efa\u540c\u6b65\u4f5c\u4e1a\u3002", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "\u8bbe\u5907\u8bbf\u95ee", - "HeaderSelectDevices": "\u9009\u62e9\u8bbe\u5907", - "ButtonCancelItem": "\u53d6\u6d88\u9879\u76ee", - "ButtonQueueForRetry": "\u91cd\u8bd5\u961f\u5217", - "ButtonReenable": "\u91cd\u65b0\u542f\u7528", - "ButtonLearnMore": "\u4e86\u89e3\u66f4\u591a", - "SyncJobItemStatusSyncedMarkForRemoval": "\u6807\u8bb0\u4e3a\u5220\u9664", - "LabelAbortedByServerShutdown": "(\u56e0\u4e3a\u670d\u52a1\u5668\u5173\u95ed\u88ab\u4e2d\u6b62)", - "LabelScheduledTaskLastRan": "\u6700\u540e\u8fd0\u884c {0}, \u82b1\u8d39\u65f6\u95f4 {1}.", - "HeaderDeleteTaskTrigger": "\u5220\u9664\u4efb\u52a1\u89e6\u53d1\u6761\u4ef6", - "MessageDeleteTaskTrigger": "\u4f60\u786e\u5b9a\u5220\u9664\u8fd9\u4e2a\u4efb\u52a1\u89e6\u53d1\u6761\u4ef6\uff1f", - "MessageNoPluginsInstalled": "\u4f60\u6ca1\u6709\u5b89\u88c5\u63d2\u4ef6\u3002", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} \u5df2\u5b89\u88c5", - "LabelNumberReviews": "{0} \u8bc4\u8bba", - "LabelFree": "\u514d\u8d39", - "HeaderTo": "\u5230", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "\u9009\u62e9\u97f3\u9891", - "HeaderSelectSubtitles": "\u9009\u62e9\u5b57\u5e55", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(\u9ed8\u8ba4)", - "LabelForcedStream": "(\u5f3a\u5236)", - "LabelDefaultForcedStream": "(\u9ed8\u8ba4\/\u5f3a\u5236)", - "LabelUnknownLanguage": "\u672a\u77e5\u8bed\u8a00", - "MessageConfirmSyncJobItemCancellation": "\u4f60\u786e\u5b9a\u8981\u53d6\u6d88\u8fd9\u4e2a\u9879\u76ee\uff1f", - "ButtonMute": "\u9759\u97f3", - "ButtonUnmute": "\u53d6\u6d88\u9759\u97f3", - "ButtonStop": "\u505c\u6b62", - "ButtonNextTrack": "Next Track", - "ButtonPause": "\u6682\u505c", - "ButtonPlay": "\u64ad\u653e", - "ButtonEdit": "\u7f16\u8f91", - "ButtonQueue": "\u52a0\u5165\u961f\u5217", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "\u64ad\u653e\u5217\u8868", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "\u5df2\u542f\u7528", - "LabelDisabled": "\u5df2\u7981\u7528", - "ButtonMoreInformation": "\u66f4\u591a\u4fe1\u606f", - "LabelNoUnreadNotifications": "\u6ca1\u6709\u672a\u8bfb\u901a\u77e5\u3002", - "ButtonViewNotifications": "\u67e5\u770b\u901a\u77e5", - "ButtonMarkTheseRead": "\u6807\u8bb0\u8fd9\u4e9b\u5df2\u8bfb", - "ButtonClose": "\u5173\u95ed", - "LabelAllPlaysSentToPlayer": "\u6240\u6709\u64ad\u653e\u5185\u5bb9\u90fd\u5c06\u88ab\u53d1\u9001\u5230\u6240\u9009\u62e9\u7684\u64ad\u653e\u5668\u3002", - "MessageInvalidUser": "\u7528\u6237\u540d\u6216\u5bc6\u7801\u4e0d\u53ef\u7528\u3002\u8bf7\u91cd\u8bd5\u3002", - "HeaderLoginFailure": "\u767b\u5f55\u5931\u8d25", - "HeaderAllRecordings": "\u6240\u6709\u5f55\u5236\u7684\u8282\u76ee", - "RecommendationBecauseYouLike": "\u56e0\u4e3a\u4f60\u559c\u6b22 {0}", - "RecommendationBecauseYouWatched": "\u56e0\u4e3a\u4f60\u770b\u8fc7 {0}", - "RecommendationDirectedBy": "\u5bfc\u6f14 {0}", - "RecommendationStarring": "\u4e3b\u6f14 {0}", - "HeaderConfirmRecordingCancellation": "\u786e\u8ba4\u53d6\u6d88\u5f55\u5236", - "MessageConfirmRecordingCancellation": "\u4f60\u786e\u5b9a\u5e0c\u671b\u53d6\u6d88\u5f55\u5236\uff1f", - "MessageRecordingCancelled": "\u5f55\u5236\u5df2\u53d6\u6d88\u3002", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "\u786e\u8ba4\u7535\u89c6\u5267\u53d6\u6d88", - "MessageConfirmSeriesCancellation": "\u4f60\u786e\u5b9a\u5e0c\u671b\u53d6\u6d88\u6b64\u7535\u89c6\u5267\uff1f", - "MessageSeriesCancelled": "\u7535\u89c6\u5267\u5df2\u53d6\u6d88", - "HeaderConfirmRecordingDeletion": "\u786e\u8ba4\u5220\u9664\u5f55\u5f71", - "MessageConfirmRecordingDeletion": "\u4f60\u786e\u5b9a\u5e0c\u671b\u5220\u9664\u5f55\u5f71\uff1f", - "MessageRecordingDeleted": "\u5f55\u5f71\u5df2\u5220\u9664\u3002", - "ButonCancelRecording": "\u53d6\u6d88\u5f55\u5236", - "MessageRecordingSaved": "\u5f55\u5f71\u5df2\u4fdd\u5b58\u3002", - "OptionSunday": "\u661f\u671f\u5929", - "OptionMonday": "\u661f\u671f\u4e00", - "OptionTuesday": "\u661f\u671f\u4e8c", - "OptionWednesday": "\u661f\u671f\u4e09", - "OptionThursday": "\u661f\u671f\u56db", - "OptionFriday": "\u661f\u671f\u4e94", - "OptionSaturday": "\u661f\u671f\u516d", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "\u786e\u8ba4\u5220\u9664", - "MessageConfirmPathSubstitutionDeletion": "\u4f60\u786e\u5b9a\u5e0c\u671b\u5220\u9664\u6b64\u8def\u5f84\u66ff\u4ee3\uff1f", - "LiveTvUpdateAvailable": "(\u66f4\u65b0\u53ef\u7528)", - "LabelVersionUpToDate": "\u6700\u65b0\uff01", - "ButtonResetTuner": "\u590d\u4f4d\u8c03\u8c10\u5668", - "HeaderResetTuner": "\u590d\u4f4d\u8c03\u8c10\u5668", - "MessageConfirmResetTuner": "\u4f60\u786e\u8ba4\u5e0c\u671b\u590d\u4f4d\u6b64\u8c03\u8c10\u5668\uff1f\u6240\u6709\u6d3b\u52a8\u4e2d\u7684\u64ad\u653e\u5668\u6216\u5f55\u5236\u8bbe\u5907\u90fd\u5c06\u7a81\u7136\u505c\u6b62\u3002", - "ButtonCancelSeries": "\u53d6\u6d88\u7535\u89c6\u5267", - "HeaderSeriesRecordings": "\u7535\u89c6\u5267\u5f55\u5236", - "LabelAnytime": "\u968f\u65f6", - "StatusRecording": "\u5f55\u5236", - "StatusWatching": "\u89c2\u770b", - "StatusRecordingProgram": "\u5f55\u5236 {0}", - "StatusWatchingProgram": "\u89c2\u770b {0}", - "HeaderSplitMedia": "\u62c6\u5206\u5a92\u4f53", - "MessageConfirmSplitMedia": "\u60a8\u786e\u5b9a\u8981\u628a\u5a92\u4f53\u6e90\u62c6\u5206\u4e3a\u5355\u72ec\u7684\u9879\u76ee\uff1f", - "HeaderError": "\u9519\u8bef", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "\u8bf7\u81f3\u5c11\u9009\u62e9\u4e00\u4e2a\u9879\u76ee\u3002", - "MessagePleaseSelectTwoItems": "\u8bf7\u81f3\u5c11\u9009\u62e92\u4e2a\u9879\u76ee\u3002", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "\u6062\u590d\u64ad\u653e", - "HeaderMyViews": "\u6211\u7684\u754c\u9762", - "HeaderLibraryFolders": "\u5a92\u4f53\u6587\u4ef6\u5939", - "HeaderLatestMedia": "\u6700\u65b0\u5a92\u4f53", - "ButtonMoreItems": "More...", - "ButtonMore": "\u66f4\u591a", - "HeaderFavoriteMovies": "\u6700\u7231\u7684\u7535\u5f71", - "HeaderFavoriteShows": "\u6700\u7231\u7684\u8282\u76ee", - "HeaderFavoriteEpisodes": "\u6700\u7231\u7684\u5267\u96c6", - "HeaderFavoriteGames": "\u6700\u7231\u7684\u6e38\u620f", - "HeaderRatingsDownloads": "\u8bc4\u5206\/\u4e0b\u8f7d", - "HeaderConfirmProfileDeletion": "\u786e\u8ba4\u5220\u9664\u914d\u7f6e\u6587\u4ef6", - "MessageConfirmProfileDeletion": "\u4f60\u786e\u5b9a\u5e0c\u671b\u5220\u9664\u6b64\u914d\u7f6e\u6587\u4ef6\uff1f", - "HeaderSelectServerCachePath": "\u9009\u62e9\u670d\u52a1\u5668\u7f13\u5b58\u8def\u5f84", - "HeaderSelectTranscodingPath": "\u9009\u62e9\u4e34\u65f6\u89e3\u7801\u8def\u5f84", - "HeaderSelectImagesByNamePath": "\u9009\u62e9\u6309\u540d\u79f0\u5f52\u7c7b\u7684\u56fe\u7247\u8def\u5f84", - "HeaderSelectMetadataPath": "\u9009\u62e9\u5a92\u4f53\u8d44\u6599\u8def\u5f84\uff1a", - "HeaderSelectServerCachePathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u670d\u52a1\u5668\u7f13\u5b58\u6587\u4ef6\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", - "HeaderSelectTranscodingPathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u4e34\u65f6\u8f6c\u7801\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", - "HeaderSelectImagesByNamePathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u6309\u6587\u4ef6\u5939\u540d\u79f0\u5206\u7ec4\u7684\u9879\u76ee\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", - "HeaderSelectMetadataPathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u4fdd\u5b58\u5a92\u4f53\u8d44\u6599\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", - "HeaderSelectChannelDownloadPath": "\u9009\u62e9\u9891\u9053\u4e0b\u8f7d\u8def\u5f84", - "HeaderSelectChannelDownloadPathHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u4fdd\u5b58\u9891\u9053\u7f13\u5b58\u6587\u4ef6\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", - "OptionNewCollection": "\u66f4\u65b0...", - "ButtonAdd": "\u6dfb\u52a0", - "ButtonRemove": "\u79fb\u9664", - "LabelChapterDownloaders": "\u7ae0\u8282\u4e0b\u8f7d\u5668\uff1a", - "LabelChapterDownloadersHelp": "\u542f\u7528\u7ae0\u8282\u4e0b\u8f7d\u5668\u7684\u4f18\u5148\u7ea7\u6392\u5e8f\uff0c\u4f4e\u4f18\u5148\u7ea7\u7684\u4e0b\u8f7d\u5668\u53ea\u4f1a\u7528\u6765\u586b\u8865\u7f3a\u5c11\u7684\u4fe1\u606f\u3002", - "HeaderFavoriteAlbums": "\u6700\u7231\u7684\u4e13\u8f91", - "HeaderLatestChannelMedia": "\u6700\u65b0\u9891\u9053\u9879\u76ee", - "ButtonOrganizeFile": "\u6574\u7406\u6587\u4ef6", - "ButtonDeleteFile": "\u5220\u9664\u6587\u4ef6", - "HeaderOrganizeFile": "\u6574\u7406\u6587\u4ef6", - "HeaderDeleteFile": "\u5220\u9664\u6587\u4ef6", - "StatusSkipped": "\u8df3\u8fc7", - "StatusFailed": "\u5931\u8d25", - "StatusSuccess": "\u6210\u529f", - "MessageFileWillBeDeleted": "\u4ee5\u4e0b\u6587\u4ef6\u5c06\u88ab\u5220\u9664\uff1a", - "MessageSureYouWishToProceed": "\u4f60\u786e\u5b9a\u8981\u7ee7\u7eed\uff1f", - "MessageDuplicatesWillBeDeleted": "\u6b64\u5916\uff0c\u4ee5\u4e0b\u8fd9\u4e9b\u5c06\u88ab\u5220\u9664\uff1a", - "MessageFollowingFileWillBeMovedFrom": "\u4ee5\u4e0b\u6587\u4ef6\u5c06\u88ab\u79fb\u52a8\uff0c\u4ece\uff1a", - "MessageDestinationTo": "\u5230\uff1a", - "HeaderSelectWatchFolder": "\u9009\u62e9\u76d1\u63a7\u6587\u4ef6", - "HeaderSelectWatchFolderHelp": "\u6d4f\u89c8\u6216\u8f93\u5165\u4e00\u4e2a\u8def\u5f84\u7528\u4e8e\u76d1\u63a7\u6587\u4ef6\u5939\uff0c\u6b64\u6587\u4ef6\u5939\u5fc5\u987b\u53ef\u5199\u3002", - "OrganizePatternResult": "\u7ed3\u679c\uff1a {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "\u91cd\u542f", - "HeaderShutdown": "\u5173\u673a", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "\u73b0\u5728\u66f4\u65b0", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "\u4e00\u4e2a\u65b0\u7684\u7248\u672c {0} \u53ef\u7528!", - "VersionXIsAvailableForDownload": "\u7248\u672c {0} \u73b0\u5728\u5df2\u7ecf\u53ef\u4ee5\u4e0b\u8f7d\u3002", - "LabelVersionNumber": "\u7248\u672c {0}", - "LabelPlayMethodTranscoding": "\u8f6c\u7801", - "LabelPlayMethodDirectStream": "\u76f4\u63a5\u7528\u5a92\u4f53\u6d41", - "LabelPlayMethodDirectPlay": "\u76f4\u63a5\u64ad\u653e", - "LabelAudioCodec": "\u97f3\u9891\uff1a {0}", - "LabelVideoCodec": "\u89c6\u9891\uff1a{0}", - "LabelLocalAccessUrl": "\u672c\u5730\u8bbf\u95ee\uff1a {0}", - "LabelRemoteAccessUrl": "\u8fdc\u7a0b\u8bbf\u95ee\uff1a{0}", - "LabelRunningOnPort": "\u6b63\u8fd0\u884c\u4e8eHTTP\u7aef\u53e3 {0}.", - "LabelRunningOnPorts": "\u6b63\u8fd0\u884c\u4e8eHTTP\u7aef\u53e3 {0}\uff0c\u548c https\u7aef\u53e3{1}.", - "HeaderLatestFromChannel": "\u6700\u65b0\u7684 {0}", - "LabelUnknownLanaguage": "\u672a\u77e5\u8bed\u8a00", - "HeaderCurrentSubtitles": "\u5f53\u524d\u5b57\u5e55", - "MessageDownloadQueued": "\u4e0b\u8f7d\u5df2\u52a0\u5165\u961f\u5217\u3002", - "MessageAreYouSureDeleteSubtitles": "\u4f60\u786e\u5b9a\u5e0c\u671b\u5220\u9664\u6b64\u5b57\u5e55\u6587\u4ef6\uff1f", - "ButtonRemoteControl": "\u9065\u63a7", - "HeaderLatestTvRecordings": "\u6700\u65b0\u5f55\u5236\u7684\u8282\u76ee", - "ButtonOk": "\u786e\u5b9a", - "ButtonCancel": "\u53d6\u6d88", - "ButtonRefresh": "\u5237\u65b0", - "LabelCurrentPath": "\u5f53\u524d\u8def\u5f84\uff1a", - "HeaderSelectMediaPath": "\u9009\u62e9\u5a92\u4f53\u8def\u5f84", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "\u7f51\u7edc", - "MessageDirectoryPickerInstruction": "\u7f51\u7edc\u6309\u94ae\u65e0\u6cd5\u627e\u5230\u60a8\u7684\u8bbe\u5907\u7684\u60c5\u51b5\u4e0b\uff0c\u7f51\u7edc\u8def\u5f84\u53ef\u4ee5\u624b\u52a8\u8f93\u5165\u3002 \u4f8b\u5982\uff0c {0} \u6216\u8005 {1}\u3002", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "\u83dc\u5355", - "ButtonOpen": "\u6253\u5f00", - "ButtonOpenInNewTab": "\u5728\u65b0\u7a97\u53e3\u4e2d\u6253\u5f00", - "ButtonShuffle": "\u6401\u7f6e", - "ButtonInstantMix": "\u5373\u65f6\u6df7\u97f3", - "ButtonResume": "\u6062\u590d\u64ad\u653e", - "HeaderScenes": "\u573a\u666f", - "HeaderAudioTracks": "\u97f3\u8f68", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "\u5b57\u5e55", - "HeaderVideoQuality": "\u89c6\u9891\u8d28\u91cf", - "MessageErrorPlayingVideo": "\u64ad\u653e\u89c6\u9891\u51fa\u73b0\u9519\u8bef\u3002", - "MessageEnsureOpenTuner": "\u8bf7\u786e\u4fdd\u6709\u4e00\u4e2a\u6253\u5f00\u7684\u53ef\u7528\u8c03\u8c10\u5668", - "ButtonHome": "\u9996\u9875", - "ButtonDashboard": "\u63a7\u5236\u53f0", - "ButtonReports": "\u62a5\u544a", - "ButtonMetadataManager": "\u5a92\u4f53\u8d44\u6599\u7ba1\u7406", - "HeaderTime": "\u65f6\u95f4", - "HeaderName": "\u540d\u5b57", - "HeaderAlbum": "\u4e13\u8f91", - "HeaderAlbumArtist": "\u4e13\u8f91\u827a\u672f\u5bb6", - "HeaderArtist": "\u827a\u672f\u5bb6", - "LabelAddedOnDate": "\u6dfb\u52a0 {0}", - "ButtonStart": "\u5f00\u59cb", - "HeaderChannels": "\u9891\u9053", - "HeaderMediaFolders": "\u5a92\u4f53\u6587\u4ef6\u5939", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "\u5176\u4ed6", - "OptionBlockTvShows": "\u7535\u89c6\u8282\u76ee", - "OptionBlockTrailers": "\u9884\u544a\u7247", - "OptionBlockMusic": "\u97f3\u4e50", - "OptionBlockMovies": "\u7535\u5f71", - "OptionBlockBooks": "\u4e66\u7c4d", - "OptionBlockGames": "\u6e38\u620f", - "OptionBlockLiveTvPrograms": "\u7535\u89c6\u76f4\u64ad\u7a0b\u5e8f", - "OptionBlockLiveTvChannels": "\u7535\u89c6\u76f4\u64ad\u9891\u9053", - "OptionBlockChannelContent": "\u4e92\u8054\u7f51\u9891\u9053\u5185\u5bb9", - "ButtonRevoke": "\u64a4\u9500", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "\u64a4\u9500Api \u5bc6\u94a5", - "ValueContainer": "\u5a92\u4f53\u8f7d\u4f53\uff1a {0}", - "ValueAudioCodec": "\u97f3\u9891\u7f16\u89e3\u7801\u5668\uff1a {0}", - "ValueVideoCodec": "\u89c6\u9891\u7f16\u89e3\u7801\u5668\uff1a {0}", - "ValueCodec": "\u7f16\u89e3\u7801\u5668\uff1a{0}", - "ValueConditions": "\u6761\u4ef6\uff1a {0}", - "LabelAll": "\u6240\u6709", - "HeaderDeleteImage": "\u5220\u9664\u56fe\u7247", - "MessageFileNotFound": "\u672a\u627e\u5230\u6587\u4ef6\u3002", - "MessageFileReadError": "\u8bfb\u53d6\u6587\u4ef6\u53d1\u751f\u9519\u8bef\u3002", - "ButtonNextPage": "\u4e0b\u4e00\u9875", - "ButtonPreviousPage": "\u524d\u4e00\u9875", - "ButtonMoveLeft": "\u5de6\u79fb", - "ButtonMoveRight": "\u53f3\u79fb", - "ButtonBrowseOnlineImages": "\u6d4f\u89c8\u5728\u7ebf\u56fe\u7247", - "HeaderDeleteItem": "\u5220\u9664\u9879\u76ee", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "\u8bf7\u8f93\u5165\u4e00\u4e2a\u540d\u79f0\u6216\u4e00\u4e2a\u5916\u90e8ID\u3002", - "MessageValueNotCorrect": "\u8f93\u5165\u7684\u503c\u4e0d\u6b63\u786e\u3002\u8bf7\u91cd\u8bd5\u3002", - "MessageItemSaved": "\u9879\u76ee\u5df2\u4fdd\u5b58\u3002", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "\u7ed3\u675f", - "OptionContinuing": "\u7ee7\u7eed", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "\u8bbe\u7f6e", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "\u7535\u89c6\u76f4\u64ad", - "MissingLocalTrailer": "\u7f3a\u5c11\u672c\u5730\u9884\u544a\u7247\u3002", - "MissingPrimaryImage": "\u7f3a\u5c11\u5c01\u9762\u56fe\u3002", - "MissingBackdropImage": "\u7f3a\u5c11\u80cc\u666f\u56fe\u3002", - "MissingLogoImage": "\u7f3a\u5c11Logo\u56fe\u3002", - "MissingEpisode": "\u7f3a\u5c11\u5267\u96c6\u3002", - "OptionScreenshots": "\u622a\u5c4f", - "OptionBackdrops": "\u80cc\u666f", - "OptionImages": "\u56fe\u7247", - "OptionKeywords": "\u5173\u952e\u8bcd", - "OptionTags": "\u6807\u7b7e", - "OptionStudios": "\u5de5\u4f5c\u5ba4", - "OptionName": "\u540d\u5b57", - "OptionOverview": "\u6982\u8ff0", - "OptionGenres": "\u98ce\u683c", - "OptionParentalRating": "\u5bb6\u957f\u5206\u7ea7", - "OptionPeople": "\u6f14\u804c\u4eba\u5458", - "OptionRuntime": "\u64ad\u653e\u65f6\u95f4", - "OptionProductionLocations": "\u4ea7\u5730", - "OptionBirthLocation": "\u51fa\u751f\u5730", - "LabelAllChannels": "\u6240\u6709\u9891\u9053", - "LabelLiveProgram": "\u76f4\u64ad", - "LabelNewProgram": "\u65b0\u589e", - "LabelPremiereProgram": "\u9996\u6620\u5f0f", - "LabelHDProgram": "HD\u9ad8\u6e05", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "\u8b66\u62a5", - "MessagePleaseRestart": "\u8bf7\u91cd\u542f\u670d\u52a1\u5668\u4ee5\u5b8c\u6210\u66f4\u65b0\u3002", - "ButtonRestart": "\u91cd\u542f", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "\u9690\u85cf", - "MessageSettingsSaved": "\u8bbe\u7f6e\u5df2\u4fdd\u5b58\u3002", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "\u6211\u7684\u4e2a\u4eba\u914d\u7f6e", - "ButtonMyPreferences": "\u6211\u7684\u504f\u597d", - "MessageBrowserDoesNotSupportWebSockets": "\u6b64\u6d4f\u89c8\u5668\u4e0d\u652f\u6301web sockets\u3002\u4e3a\u4e86\u83b7\u5f97\u66f4\u597d\u7684\u4f53\u9a8c\uff0c\u8bf7\u5c1d\u8bd5\u4f7f\u7528\u65b0\u6d4f\u89c8\u5668\uff0c\u4f8b\u5982\uff1a Chrome, Firefox, IE10+, Safari (iOS) \u6216\u8005 Opera\u3002", - "LabelInstallingPackage": "\u6b63\u5728\u5b89\u88c5 {0}", - "LabelPackageInstallCompleted": "{0} \u5b89\u88c5\u5b8c\u6210\u3002", - "LabelPackageInstallFailed": "{0} \u5b89\u88c5\u5931\u8d25\u3002", - "LabelPackageInstallCancelled": "{0} \u5b89\u88c5\u88ab\u53d6\u6d88\u3002", - "TabServer": "\u670d\u52a1\u5668", - "TabUsers": "\u7528\u6237", - "TabLibrary": "\u5a92\u4f53\u5e93", - "TabMetadata": "\u5a92\u4f53\u8d44\u6599", - "TabDLNA": "DLNA", - "TabLiveTV": "\u7535\u89c6\u76f4\u64ad", - "TabAutoOrganize": "\u81ea\u52a8\u6574\u7406", - "TabPlugins": "\u63d2\u4ef6", - "TabAdvanced": "\u9ad8\u7ea7", - "TabHelp": "\u5e2e\u52a9", - "TabScheduledTasks": "\u8ba1\u5212\u4efb\u52a1", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "\u5b57\u5e55", - "ButtonScenes": "\u573a\u666f", - "ButtonQuality": "\u8d28\u91cf", - "HeaderNotifications": "\u901a\u77e5", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "\u9009\u62e9", - "ButtonNew": "\u65b0\u589e", - "MessageInternetExplorerWebm": "\u4e3a\u5728IE\u6d4f\u89c8\u5668\u4e0a\u8fbe\u5230\u6700\u597d\u7684\u6548\u679c\uff0c\u8bf7\u5b89\u88c5WebM\u64ad\u653e\u63d2\u4ef6\u3002", - "HeaderVideoError": "\u89c6\u9891\u9519\u8bef", - "ButtonAddToPlaylist": "\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868", - "HeaderAddToPlaylist": "\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868", - "LabelName": "\u540d\u5b57\uff1a", - "ButtonSubmit": "\u63d0\u4ea4", - "LabelSelectPlaylist": "\u64ad\u653e\u5217\u8868\uff1a", - "OptionNewPlaylist": "\u65b0\u5efa\u64ad\u653e\u5217\u8868...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "\u89c6\u56fe", - "ButtonViewSeriesRecording": "\u67e5\u770b\u7535\u89c6\u5267\u5f55\u50cf", - "ValueOriginalAirDate": "\u539f\u59cb\u64ad\u51fa\u65e5\u671f: {0}", - "ButtonRemoveFromPlaylist": "\u4ece\u64ad\u653e\u5217\u8868\u4e2d\u79fb\u9664", - "HeaderSpecials": "\u7279\u96c6", - "HeaderTrailers": "\u9884\u544a\u7247", - "HeaderAudio": "\u97f3\u9891", - "HeaderResolution": "\u5206\u8fa8\u7387", - "HeaderVideo": "\u89c6\u9891", - "HeaderRuntime": "\u64ad\u653e\u65f6\u95f4", - "HeaderCommunityRating": "\u516c\u4f17\u8bc4\u5206", - "HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "\u53d1\u884c\u65e5\u671f", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "\u5b63", - "HeaderSeasonNumber": "\u591a\u5c11\u5b63", - "HeaderNetwork": "\u7f51\u7edc", - "HeaderYear": "Year", - "HeaderGameSystem": "\u6e38\u620f\u7cfb\u7edf", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "\u5d4c\u5165\u5f0f\u56fe\u50cf", - "HeaderTrack": "\u97f3\u8f68", - "HeaderDisc": "\u5149\u76d8", - "OptionMovies": "\u7535\u5f71", - "OptionCollections": "\u5408\u96c6", - "OptionSeries": "\u7535\u89c6\u5267", - "OptionSeasons": "\u5b63", - "OptionEpisodes": "\u5267\u96c6", - "OptionGames": "\u6e38\u620f", - "OptionGameSystems": "\u6e38\u620f\u7cfb\u7edf", - "OptionMusicArtists": "\u97f3\u4e50\u827a\u672f\u5bb6", - "OptionMusicAlbums": "\u97f3\u4e50\u4e13\u8f91", - "OptionMusicVideos": "\u97f3\u4e50\u89c6\u9891", - "OptionSongs": "\u6b4c\u66f2", - "OptionHomeVideos": "\u5bb6\u5ead\u89c6\u9891", - "OptionBooks": "\u4e66\u7c4d", - "OptionAdultVideos": "\u6210\u4eba\u89c6\u9891", - "ButtonUp": "\u4e0a", - "ButtonDown": "\u4e0b", - "LabelMetadataReaders": "\u5a92\u4f53\u8d44\u6599\u8bfb\u53d6\u5668\uff1a", - "LabelMetadataReadersHelp": "\u4e3a\u60a8\u9996\u9009\u7684\u672c\u5730\u5a92\u4f53\u8d44\u6599\u6e90\u6309\u4f18\u5148\u7ea7\u6392\u5e8f\u3002\u627e\u5230\u7684\u7b2c\u4e00\u4e2a\u6587\u4ef6\u5c06\u88ab\u8bfb\u53d6\u3002", - "LabelMetadataDownloaders": "\u5a92\u4f53\u8d44\u6599\u4e0b\u8f7d\u5668\uff1a", - "LabelMetadataDownloadersHelp": "\u542f\u7528\u5a92\u4f53\u8d44\u6599\u4e0b\u8f7d\u5668\u7684\u4f18\u5148\u7ea7\u6392\u5e8f\uff0c\u4f4e\u4f18\u5148\u7ea7\u7684\u4e0b\u8f7d\u5668\u53ea\u4f1a\u7528\u6765\u586b\u8865\u7f3a\u5c11\u7684\u4fe1\u606f\u3002", - "LabelMetadataSavers": "\u5a92\u4f53\u8d44\u6599\u50a8\u5b58\u65b9\u5f0f\uff1a", - "LabelMetadataSaversHelp": "\u9009\u62e9\u50a8\u5b58\u5a92\u4f53\u8d44\u6599\u7684\u6587\u4ef6\u683c\u5f0f\u3002", - "LabelImageFetchers": "\u56fe\u7247\u83b7\u53d6\u7a0b\u5e8f\uff1a", - "LabelImageFetchersHelp": "\u542f\u7528\u60a8\u9996\u9009\u7684\u56fe\u7247\u83b7\u53d6\u7a0b\u5e8f\u7684\u4f18\u5148\u7ea7\u6392\u5e8f\u3002", - "ButtonQueueAllFromHere": "\u8fd9\u91cc\u7684\u5168\u90e8\u5185\u5bb9\u90fd\u52a0\u5165\u961f\u5217", - "ButtonPlayAllFromHere": "\u8fd9\u91cc\u7684\u5168\u90e8\u5185\u5bb9\u90fd\u5f00\u59cb\u64ad\u653e", - "LabelDynamicExternalId": "{0} Id\uff1a", - "HeaderIdentify": "\u8bc6\u522b\u9879", - "PersonTypePerson": "\u4eba\u7269", - "LabelTitleDisplayOrder": "\u6807\u9898\u663e\u793a\u7684\u987a\u5e8f\uff1a", - "OptionSortName": "\u6392\u5e8f\u540d\u79f0", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "\u5149\u76d8\u53f7", - "LabelParentNumber": "\u6bcd\u5e26\u53f7", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "\u97f3\u8f68\u53f7\u7801\uff1a", - "LabelNumber": "\u7f16\u53f7\uff1a", - "LabelReleaseDate": "\u53d1\u884c\u65e5\u671f\uff1a", - "LabelEndDate": "\u7ed3\u675f\u65e5\u671f\uff1a", - "LabelYear": "\u5e74\uff1a", - "LabelDateOfBirth": "\u51fa\u751f\u65e5\u671f\uff1a", - "LabelBirthYear": "\u51fa\u751f\u5e74\u4efd\uff1a", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "\u53bb\u4e16\u65e5\u671f\uff1a", - "HeaderRemoveMediaLocation": "\u79fb\u9664\u5a92\u4f53\u4f4d\u7f6e", - "MessageConfirmRemoveMediaLocation": "\u4f60\u786e\u5b9a\u8981\u79fb\u9664\u6b64\u4f4d\u7f6e\uff1f", - "HeaderRenameMediaFolder": "\u91cd\u547d\u540d\u5a92\u4f53\u6587\u4ef6\u5939", - "LabelNewName": "\u65b0\u540d\u5b57\uff1a", - "HeaderAddMediaFolder": "\u6dfb\u52a0\u5a92\u4f53\u6587\u4ef6\u5939", - "HeaderAddMediaFolderHelp": "\u540d\u79f0 (\u7535\u5f71, \u97f3\u4e50, \u7535\u89c6...\u7b49\u7b49)\uff1a", - "HeaderRemoveMediaFolder": "\u79fb\u9664\u5a92\u4f53\u6587\u4ef6\u5939", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "\u4ee5\u4e0b\u5a92\u4f53\u4f4d\u7f6e\u5c06\u4ece\u60a8\u7684\u5a92\u4f53\u5e93\u4e2d\u79fb\u9664\uff1a", - "MessageAreYouSureYouWishToRemoveMediaFolder": "\u4f60\u786e\u5b9a\u5e0c\u671b\u79fb\u9664\u6b64\u5a92\u4f53\u6587\u4ef6\u5939\uff1f", - "ButtonRename": "\u91cd\u547d\u540d", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "\u5a92\u4f53\u4f4d\u7f6e", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "\u53ef\u9009\uff1a\u66ff\u4ee3\u8def\u5f84\u80fd\u628a\u670d\u52a1\u5668\u8def\u5f84\u6620\u5c04\u5230\u7f51\u7edc\u5171\u4eab\uff0c\u4ece\u800c\u4f7f\u5ba2\u6237\u7aef\u53ef\u4ee5\u76f4\u63a5\u64ad\u653e\u3002", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "\u7535\u5f71", - "FolderTypeMusic": "\u97f3\u4e50", - "FolderTypeAdultVideos": "\u6210\u4eba\u89c6\u9891", - "FolderTypePhotos": "\u56fe\u7247", - "FolderTypeMusicVideos": "\u97f3\u4e50\u89c6\u9891", - "FolderTypeHomeVideos": "\u5bb6\u5ead\u89c6\u9891", - "FolderTypeGames": "\u6e38\u620f", - "FolderTypeBooks": "\u4e66\u7c4d", - "FolderTypeTvShows": "\u7535\u89c6", - "TabMovies": "\u7535\u5f71", - "TabSeries": "\u7535\u89c6\u5267", - "TabEpisodes": "\u5267\u96c6", - "TabTrailers": "\u9884\u544a\u7247", - "TabGames": "\u6e38\u620f", - "TabAlbums": "\u4e13\u8f91", - "TabSongs": "\u6b4c\u66f2", - "TabMusicVideos": "\u97f3\u4e50\u89c6\u9891", - "BirthPlaceValue": "\u51fa\u751f\u5730: {0}", - "DeathDateValue": "\u53bb\u4e16\uff1a {0}", - "BirthDateValue": "\u51fa\u751f\uff1a {0}", - "HeaderLatestReviews": "\u6700\u65b0\u8bc4\u8bba", - "HeaderPluginInstallation": "\u63d2\u4ef6\u5b89\u88c5", - "MessageAlreadyInstalled": "\u6b64\u7248\u672c\u5df2\u5b89\u88c5\u5b8c\u6210\u3002", - "ValueReviewCount": "{0} \u8bc4\u8bba", - "MessageYouHaveVersionInstalled": "\u4f60\u76ee\u524d\u5b89\u88c5\u4e86 {0} \u7248\u672c\u3002", - "MessageTrialExpired": "\u6b64\u529f\u80fd\u7684\u8bd5\u7528\u671f\u5df2\u7ed3\u675f", - "MessageTrialWillExpireIn": "\u6b64\u529f\u80fd\u7684\u8bd5\u7528\u671f\u8fd8\u5269 {0} \u5929", - "MessageInstallPluginFromApp": "\u8fd9\u4e2a\u63d2\u4ef6\u5fc5\u987b\u4ece\u4f60\u6253\u7b97\u4f7f\u7528\u7684\u5e94\u7528\u7a0b\u5e8f\u4e2d\u5b89\u88c5\u3002", - "ValuePriceUSD": "\u4ef7\u683c\uff1a {0} (\u7f8e\u5143)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "\u5220\u9664", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "\u4f7f\u7528\u5916\u90e8\u64ad\u653e\u5668\u64ad\u653e", - "HeaderSelectExternalPlayer": "\u9009\u62e9\u5916\u90e8\u64ad\u653e\u5668", - "HeaderExternalPlayerPlayback": "\u5916\u90e8\u64ad\u653e\u5668\u64ad\u653e", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "\u6307\u5b9a\u60a8\u4e0b\u4e00\u6b21\u5e0c\u671b\u5982\u4f55\u6062\u590d\u64ad\u653e\u6b64\u89c6\u9891\u3002", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1\u5f20\u4e13\u8f91", - "ValueAlbumCount": "{0} \u5f20\u4e13\u8f91", - "ValueOneSong": "1\u9996\u6b4c", - "ValueSongCount": "{0} \u9996\u6b4c", - "ValueOneMusicVideo": "1\u4e2a\u97f3\u4e50\u89c6\u9891", - "ValueMusicVideoCount": "{0} \u4e2a\u97f3\u4e50\u89c6\u9891", - "HeaderOffline": "\u79bb\u7ebf", - "HeaderUnaired": "\u672a\u64ad\u51fa", - "HeaderMissing": "\u7f3a\u5931", - "ButtonWebsite": "\u7f51\u7ad9", - "TooltipFavorite": "\u6211\u7684\u6700\u7231", - "TooltipLike": "\u559c\u6b22", - "TooltipDislike": "\u4e0d\u559c\u6b22", - "TooltipPlayed": "\u5df2\u64ad\u653e", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "\u83b7\u5956\uff1a {0}", - "ValueBudget": "\u6295\u8d44\u989d\uff1a {0}", - "ValueRevenue": "\u6536\u5165\uff1a {0}", - "ValuePremiered": "\u9996\u6620 {0}", - "ValuePremieres": "\u9996\u6620 {0}", - "ValueStudio": "\u5de5\u4f5c\u5ba4\uff1a {0}", - "ValueStudios": "\u5de5\u4f5c\u5ba4\uff1a {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "\u7279\u522b - {0}", - "LabelLimit": "\u9650\u5236\uff1a", - "ValueLinks": "\u94fe\u63a5\uff1a {0}", - "HeaderPeople": "\u4eba\u7269", - "HeaderCastAndCrew": "\u6f14\u5458\u8868", - "ValueArtist": "\u827a\u672f\u5bb6\uff1a {0}", - "ValueArtists": "\u827a\u672f\u5bb6\uff1a {0}", - "HeaderTags": "\u6807\u7b7e", - "MediaInfoCameraMake": "\u76f8\u673a\u5236\u9020\u5546", - "MediaInfoCameraModel": "\u76f8\u673a\u578b\u53f7", - "MediaInfoAltitude": "\u9ad8\u5ea6", - "MediaInfoAperture": "\u5149\u5708", - "MediaInfoExposureTime": "\u66dd\u5149\u65f6\u95f4", - "MediaInfoFocalLength": "\u7126\u8ddd", - "MediaInfoOrientation": "\u65b9\u4f4d", - "MediaInfoIsoSpeedRating": "ISO\u611f\u5149\u5ea6", - "MediaInfoLatitude": "\u7eac\u5ea6", - "MediaInfoLongitude": "\u7ecf\u5ea6", - "MediaInfoShutterSpeed": "\u5feb\u95e8\u901f\u5ea6", - "MediaInfoSoftware": "\u8f6f\u4ef6", - "HeaderIfYouLikeCheckTheseOut": "\u5982\u679c\u4f60\u559c\u6b22{0}\uff0c\u67e5\u770b\u8fd9\u4e9b\u2026", - "HeaderPlotKeywords": "\u60c5\u8282\u5173\u952e\u5b57", - "HeaderMovies": "\u7535\u5f71", - "HeaderAlbums": "\u4e13\u8f91", - "HeaderGames": "\u6e38\u620f", - "HeaderBooks": "\u4e66\u7c4d", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "\u5b63", - "HeaderTracks": "\u97f3\u8f68", - "HeaderItems": "\u9879\u76ee", - "HeaderOtherItems": "\u5176\u4ed6\u9879\u76ee", - "ButtonFullReview": "\u5168\u9762\u56de\u987e", - "ValueAsRole": "\u626e\u6f14 {0}", - "ValueGuestStar": "\u7279\u9080\u660e\u661f", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "\u64ad\u653e", - "TabNotifications": "\u901a\u77e5", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "\u9009\u62e9\u81ea\u5b9a\u4e49\u4ecb\u7ecd\u8def\u5f84", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "\u67e5\u770b\u60a8\u6700\u8fd1\u6dfb\u52a0\u7684\u5a92\u4f53\uff0c\u4e0b\u4e00\u96c6\u5267\u96c6\uff0c\u548c\u5176\u4ed6\u66f4\u591a\u4fe1\u606f\u3002\u7eff\u8272\u5706\u5708\u63d0\u793a\u60a8\u6709\u591a\u5c11\u9879\u76ee\u5c1a\u672a\u64ad\u653e\u3002", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "\u914d\u7f6e\u80cc\u666f\u3001\u4e3b\u9898\u6b4c\u548c\u5916\u90e8\u64ad\u653e\u5668", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "\u8bbe\u5907", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "\u5fd8\u8bb0\u5bc6\u7801", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "\u540c\u6b65", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "\u540c\u6b65", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "\u4fe1\u606f", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "\u9ad8\u7ea7", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "\u9ad8\u7ea7\u5237\u65b0", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\u6d77\u62a5", - "OptionPosterCard": "Poster card", - "OptionTimeline": "\u65f6\u95f4\u8868", - "OptionList": "\u5217\u8868", - "OptionThumb": "\u7f29\u7565\u56fe", - "OptionThumbCard": "Thumb card", - "OptionBanner": "\u6a2a\u5e45", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "\u5f55\u5236", - "ButtonOther": "Other", - "HeaderSortBy": "\u6392\u5e8f\u65b9\u5f0f\uff1a", - "HeaderSortOrder": "\u6392\u5e8f\u987a\u5e8f\uff1a", - "OptionAscending": "\u5347\u5e8f", - "OptionDescending": "\u964d\u5e8f", - "OptionNameSort": "\u540d\u5b57", - "OptionTvdbRating": "Tvdb \u8bc4\u5206", - "OptionPremiereDate": "\u9996\u6620\u65e5\u671f", - "OptionImdbRating": "IMDb \u8bc4\u5206", - "OptionDatePlayed": "\u64ad\u653e\u65e5\u671f", - "OptionDateAdded": "\u52a0\u5165\u65e5\u671f", - "OptionPlayCount": "\u64ad\u653e\u6b21\u6570", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "\u4e13\u8f91\u827a\u672f\u5bb6", - "OptionArtist": "\u827a\u672f\u5bb6", - "OptionAlbum": "\u4e13\u8f91", - "OptionTrackName": "\u66f2\u76ee\u540d\u79f0", - "OptionCommunityRating": "\u516c\u4f17\u8bc4\u5206", - "ButtonSort": "\u6392\u5e8f", - "ButtonMenu": "Menu", - "OptionDefaultSort": "\u9ed8\u8ba4", - "ButtonFilter": "\u7b5b\u9009", - "OptionCriticRating": "\u5f71\u8bc4\u4eba\u8bc4\u5206", - "OptionVideoBitrate": "\u89c6\u9891\u6bd4\u7279\u7387", - "OptionMetascore": "\u8bc4\u5206", - "OptionRevenue": "\u6536\u5165", - "OptionBudget": "\u9884\u7b97", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "\u641c\u7d22", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "\u4e0b\u4e00\u96c6", - "HeaderLatestMovies": "\u6700\u65b0\u7535\u5f71", - "HeaderLatestEpisodes": "\u6700\u65b0\u5267\u96c6", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "\u5f71\u9662\u6a21\u5f0f", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/zh-HK.json b/dashboard-ui/strings/javascript/zh-HK.json deleted file mode 100644 index 778e929d16..0000000000 --- a/dashboard-ui/strings/javascript/zh-HK.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "Settings saved.", - "AddUser": "Add User", - "Users": "\u7528\u6236", - "Delete": "Delete", - "Administrator": "Administrator", - "Password": "Password", - "DeleteImage": "Delete Image", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "\u652f\u6301 Emby \u767c\u5c55.", - "DeleteImageConfirmation": "Are you sure you wish to delete this image?", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "File not found.", - "FileReadError": "An error occurred while reading the file.", - "DeleteUser": "Delete User", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "The password has been reset.", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "Are you sure you wish to reset the password?", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "Password saved.", - "PasswordMatchError": "Password and password confirmation must match.", - "OptionRelease": "\u5b98\u65b9\u767c\u4f48", - "OptionBeta": "\u516c\u6e2c", - "OptionDev": "\u958b\u767c\uff08\u4e0d\u7a69\u5b9a\uff09", - "UninstallPluginHeader": "Uninstall Plugin", - "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", - "NoPluginConfigurationMessage": "This plugin has nothing to configure.", - "NoPluginsInstalledMessage": "You have no plugins installed.", - "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "\u8d0a\u52a9\u6211\u5011\u7684\u5718\u968a", - "TextEnjoyBonusFeatures": "\u4eab\u53d7\u66f4\u591a\u529f\u80fd", - "TitleLiveTV": "\u96fb\u8996\u76f4\u64ad", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "\u81ea\u52d5", - "HeaderSelectDate": "\u9078\u64c7\u65e5\u671f", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "\u60a8\u53ef\u4ee5\u5728\u4efb\u4f55\u6642\u9593\u65bc PayPal \u8cec\u6236\u5167\u53d6\u6d88\u5b9a\u671f\u6350\u8d08\u3002", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "\u901a\u77e5", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "\u7528\u6236", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "\u901a\u77e5", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "MV", - "LabelEpisode": "Episode", - "LabelSeries": "\u96fb\u8996\u5287", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "\u5e6b\u52a9", - "ButtonSave": "\u5132\u5b58", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf\u5eab", - "HeaderNewCollection": "\u65b0\u6536\u85cf\u5eab", - "NewCollectionNameExample": "\u4f8b\u5982\uff1a\u661f\u7403\u5927\u6230\u6536\u85cf\u5eab", - "OptionSearchForInternetMetadata": "\u5f9e\u4e92\u806f\u7db2\u641c\u5c0b\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027", - "LabelSelectCollection": "\u9078\u64c7\u6536\u85cf\u5eab", - "HeaderDevices": "\u88dd\u7f6e", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "\u6b61\u8fce\u4f86\u5230 Emby \u4f3a\u670d\u5668\u72c0\u614b\u9801", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "\u6aa2\u67e5\u72c0\u6cc1", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "\u63d2\u4ef6", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "\u5141\u8a31\u88dd\u7f6e\u901a\u884c", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "\u5230", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "\u9078\u64c7\u5b57\u5e55", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "\u64ad\u653e", - "ButtonEdit": "\u7de8\u8f2f", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "\u6240\u6709\u9304\u5f71", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "\u5df2\u53d6\u6d88\u96fb\u8996\u5287", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "\u661f\u671f\u65e5", - "OptionMonday": "\u661f\u671f\u4e00", - "OptionTuesday": "\u661f\u671f\u4e8c", - "OptionWednesday": "\u661f\u671f\u4e09", - "OptionThursday": "\u661f\u671f\u56db", - "OptionFriday": "\u661f\u671f\u4e94", - "OptionSaturday": "\u661f\u671f\u516d", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "\u8acb\u76e1\u5feb\u66f4\u65b0", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "\u5df2\u53d6\u6d88\u96fb\u8996\u5287", - "HeaderSeriesRecordings": "\u96fb\u8996\u5287\u9304\u5f71", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "\u6062\u5fa9\u64ad\u653e", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "\u6211\u7684\u6700\u611b\u5287\u96c6", - "HeaderFavoriteGames": "\u6211\u7684\u6700\u611b\u904a\u6232", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "\u65b0\u589e", - "ButtonRemove": "\u6e05\u9664", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "\u555f\u7528\u7ae0\u7bc0\u4e0b\u8f09\u5668\u7684\u512a\u5148\u6b21\u5e8f\uff0c\u6108\u4e0b\u6b21\u5e8f\u53ea\u6703\u7528\u4f86\u586b\u88dc\u7f3a\u5c11\u7684\u4fe1\u606f\u3002", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "\u91cd\u65b0\u555f\u52d5", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "\u60a8\u78ba\u8a8d\u91cd\u65b0\u555f\u52d5\u4f3a\u670d\u5668?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "\u97f3\u8a0a\uff1a{0}", - "LabelVideoCodec": "\u5f71\u7247\uff1a{0}", - "LabelLocalAccessUrl": "\u672c\u5730\u5730\u5740: {0}", - "LabelRemoteAccessUrl": "\u9060\u7aef\u5730\u5740: {0}", - "LabelRunningOnPort": "\u904b\u884c\u65bc http \u9023\u63a5\u57e0 {0}.", - "LabelRunningOnPorts": "\u904b\u884c\u65bc http \u9023\u63a5\u57e0 {0}, \u548c https \u9023\u63a5\u57e0 {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "\u73fe\u6642\u5b57\u5e55", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "\u60a8\u78ba\u5b9a\u5e0c\u671b\u522a\u9664\u6b64\u5b57\u5e55\u6587\u4ef6\uff1f", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "\u78ba\u5b9a", - "ButtonCancel": "\u53d6\u6d88", - "ButtonRefresh": "\u91cd\u65b0\u6574\u7406", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "\u5834\u666f", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "\u5b57\u5e55", - "HeaderVideoQuality": "\u5f71\u7247\u8cea\u7d20", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "\u72c0\u614b", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "\u540d\u7a31", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "\u983b\u9053", - "HeaderMediaFolders": "\u5a92\u9ad4\u6587\u4ef6\u593e", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "\u66f8\u7c4d", - "OptionBlockGames": "\u904a\u6232", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "\u5b8c\u6210", - "OptionContinuing": "\u7e7c\u7e8c", - "OptionOff": "Off", - "OptionOn": "On", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "\u5bb6\u9577\u8a55\u7d1a", - "OptionPeople": "\u5e55\u5f8c\u73ed\u5e95", - "OptionRuntime": "\u904b\u884c\u6642\u9593", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "\u8acb\u91cd\u65b0\u555f\u52d5\u4f86\u5b8c\u6210\u66f4\u65b0", - "ButtonRestart": "\u91cd\u65b0\u555f\u52d5", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "\u767b\u51fa", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "\u4f3a\u670d\u5668", - "TabUsers": "\u7528\u6236", - "TabLibrary": "\u5a92\u9ad4\u5eab", - "TabMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "\u9032\u968e", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "\u5b57\u5e55", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "\u901a\u77e5", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "\u9078\u64c7", - "ButtonNew": "\u6700\u65b0", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "\u540d\u7a31\uff1a", - "ButtonSubmit": "\u63d0\u4ea4", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "\u67e5\u770b\u96fb\u8996\u5287\u9304\u5f71", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "\u97f3\u8a0a", - "HeaderResolution": "Resolution", - "HeaderVideo": "\u5f71\u7247", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "\u96fb\u8996\u5287", - "HeaderSeason": "\u5287\u96c6\u5b63\u5ea6", - "HeaderSeasonNumber": "\u5287\u96c6\u5b63\u5ea6\u6578\u76ee", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "\u904a\u6232\u7cfb\u7d71", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "\u96fb\u5f71", - "OptionCollections": "\u85cf\u54c1", - "OptionSeries": "\u96fb\u8996\u5287", - "OptionSeasons": "\u5287\u96c6\u5b63\u5ea6", - "OptionEpisodes": "\u5287\u96c6", - "OptionGames": "\u904a\u6232", - "OptionGameSystems": "\u904a\u6232\u7cfb\u7d71", - "OptionMusicArtists": "\u6b4c\u624b", - "OptionMusicAlbums": "\u5c08\u8f2f", - "OptionMusicVideos": "MV", - "OptionSongs": "\u6b4c\u66f2", - "OptionHomeVideos": "\u500b\u4eba\u5f71\u7247", - "OptionBooks": "\u66f8\u7c4d", - "OptionAdultVideos": "\u6210\u4eba\u5f71\u7247", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "\u8cc7\u6599\u5c6c\u6027\u95b1\u8b80\u5668\uff1a", - "LabelMetadataReadersHelp": "\u512a\u5148\u6392\u5e8f\u60a8\u7684\u9996\u9078\u8cc7\u6599\u5c6c\u6027\u4f86\u6e90\u3002\u9996\u500b\u627e\u5230\u7684\u6587\u4ef6\u5c07\u88ab\u8b80\u53d6\u3002", - "LabelMetadataDownloaders": "\u5a92\u9ad4\u5c6c\u6027\u4e0b\u8f09\u5668\uff1a", - "LabelMetadataDownloadersHelp": "\u555f\u7528\u5a92\u9ad4\u5c6c\u6027\u4e0b\u8f09\u5668\u7684\u512a\u5148\u6b21\u5e8f\uff0c\u6108\u4e0b\u6b21\u5e8f\u53ea\u6703\u7528\u4f86\u586b\u88dc\u7f3a\u5c11\u7684\u4fe1\u606f\u3002", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "\u5a92\u9ad4\u5716\u7247\u7372\u53d6\u7a0b\u5f0f\uff1a", - "LabelImageFetchersHelp": "\u555f\u7528\u5a92\u9ad4\u5716\u7247\u7372\u53d6\u7a0b\u5f0f\u7684\u512a\u5148\u6b21\u5e8f", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "\u5b63\u5ea6\u5287\u96c6", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "\u91cd\u65b0\u547d\u540d\u5a92\u9ad4\u6587\u4ef6\u593e", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "\u91cd\u65b0\u547d\u540d", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "\u5a92\u9ad4\u8def\u5f91", - "LabelContentTypeValue": "\u5167\u5bb9\u985e\u578b\uff1a{0}", - "LabelPathSubstitutionHelp": "\u81ea\u9078\uff1a\u66f4\u6539\u8def\u5f91\u53ef\u4ee5\u8b93\u5141\u8a31\u76f4\u63a5\u64ad\u653e\u7684\u5ba2\u6236\u7aef\u9032\u884c\u9023\u63a5\u3002", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "\u96fb\u5f71", - "FolderTypeMusic": "\u97f3\u6a02", - "FolderTypeAdultVideos": "\u6210\u4eba\u5f71\u7247", - "FolderTypePhotos": "\u76f8\u7247", - "FolderTypeMusicVideos": "MV", - "FolderTypeHomeVideos": "\u500b\u4eba\u5f71\u7247", - "FolderTypeGames": "\u904a\u6232", - "FolderTypeBooks": "\u66f8\u85c9", - "FolderTypeTvShows": "\u96fb\u8996\u7bc0\u76ee", - "TabMovies": "\u96fb\u5f71", - "TabSeries": "\u96fb\u8996\u5287", - "TabEpisodes": "\u5287\u96c6", - "TabTrailers": "\u9810\u544a", - "TabGames": "\u904a\u6232", - "TabAlbums": "\u5c08\u8f2f", - "TabSongs": "\u6b4c\u66f2", - "TabMusicVideos": "MV", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "\u5220\u9664", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 \u5287\u96c6", - "ValueSeriesCount": "{0} \u5287\u96c6", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} \u5287\u96c6", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} \u904a\u6232", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} \u9996\u6b4c", - "ValueOneMusicVideo": "1\u500b MV", - "ValueMusicVideoCount": "{0} \u500b MV", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "\u4eba\u7269", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "\u904a\u6232", - "HeaderBooks": "\u66f8\u7c4d", - "HeaderEpisodes": "\u5287\u96c6", - "HeaderSeasons": "\u5b63\u5ea6\u5287\u96c6", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "\u7279\u7d04\u660e\u661f", - "MediaInfoSize": "Size", - "MediaInfoPath": "\u8def\u5f91", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "\u97f3\u8a0a", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "\u5f71\u7247", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "\u901a\u77e5", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "\u67e5\u770b\u6700\u8fd1\u6dfb\u52a0\u7684\u5a92\u9ad4\uff0c\u4e0b\u96c6\u5287\u96c6\uff0c\u548c\u5176\u4ed6\u8cc7\u8a0a\u3002\u7da0\u8272\u5713\u5708\u6703\u63d0\u793a\u5c1a\u672a\u64ad\u653e\u7684\u9805\u76ee\u3002", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "\u8a2d\u5b9a\u80cc\u666f\uff0c\u4e3b\u984c\u66f2\u548c\u5916\u7f6e\u64ad\u653e\u5668", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "\u81ea\u52d5\u70ba\u60a8\u4efb\u4f55\u8a9e\u8a00\u7684\u5f71\u7247\u4e0b\u8f09\u5b57\u5e55\u3002", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "\u88dd\u7f6e", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "\u5141\u8a31\u76f8\u7247\u4e0a\u50b3\uff1a", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "\u767b\u5165 Emby \u5f8c\uff0c\u81ea\u52d5\u5728\u80cc\u666f\u9032\u884c\u4e0a\u50b3\u3002", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "\u9700\u8981\u5b89\u88dd\u66f8\u67b6\u985e\u63d2\u4ef6", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "\u8cc7\u8a0a", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "\u5a92\u9ad4\u5eab", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "\u9032\u968e", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "\u7de8\u8f2f\u5b57\u5e55", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "\u9032\u968e\u91cd\u65b0\u6574\u7406", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "\u540c\u6b65", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\u6d77\u5831", - "OptionPosterCard": "\u6d77\u5831\u5361\u7247", - "OptionTimeline": "\u6642\u9593\u8ef8", - "OptionList": "List", - "OptionThumb": "\u7e2e\u5716", - "OptionThumbCard": "\u7e2e\u5716\u5361\u7247", - "OptionBanner": "\u6a6b\u5e45", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "\u9304\u5f71", - "ButtonOther": "Other", - "HeaderSortBy": "\u6392\u5e8f\u65b9\u5f0f\uff1a", - "HeaderSortOrder": "\u6392\u5e8f\uff1a", - "OptionAscending": "\u905e\u5347", - "OptionDescending": "\u905e\u964d", - "OptionNameSort": "\u540d\u7a31", - "OptionTvdbRating": "Tvdb \u8a55\u5206", - "OptionPremiereDate": "\u9996\u6620\u65e5\u671f", - "OptionImdbRating": "IMDB \u8a55\u5206", - "OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f", - "OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f", - "OptionPlayCount": "\u64ad\u653e\u6b21\u6578", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "\u5531\u7247\u6b4c\u624b", - "OptionArtist": "\u6b4c\u624b", - "OptionAlbum": "\u5531\u7247", - "OptionTrackName": "\u66f2\u76ee\u540d\u7a31", - "OptionCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206", - "ButtonSort": "\u6392\u5e8f", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "\u904e\u6ffe", - "OptionCriticRating": "\u8a55\u8ad6\u5bb6\u8a55\u5206", - "OptionVideoBitrate": "\u5f71\u7247\u6bd4\u7279\u7387", - "OptionMetascore": "\u5c08\u6b04\u8a55\u5206", - "OptionRevenue": "\u6536\u5165", - "OptionBudget": "\u9810\u7b97", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "\u662f", - "ButtonNo": "\u5426", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "\u5a92\u9ad4\u5eab", - "ButtonSearch": "Search", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "\u63a5\u4e0b\u4f86", - "HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71", - "HeaderLatestEpisodes": "\u6700\u65b0\u5287\u96c6", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/javascript/zh-TW.json b/dashboard-ui/strings/javascript/zh-TW.json deleted file mode 100644 index 464feb66b6..0000000000 --- a/dashboard-ui/strings/javascript/zh-TW.json +++ /dev/null @@ -1,965 +0,0 @@ -{ - "SettingsSaved": "\u8a2d\u7f6e\u5df2\u4fdd\u5b58\u3002", - "AddUser": "\u6dfb\u52a0\u7528\u6236", - "Users": "\u7528\u6236", - "Delete": "\u522a\u9664", - "Administrator": "\u7ba1\u7406\u54e1", - "Password": "\u5bc6\u78bc", - "DeleteImage": "\u522a\u9664\u5716\u50cf", - "MessageThankYouForSupporting": "Thank you for supporting Emby.", - "MessagePleaseSupportProject": "Please support Emby.", - "DeleteImageConfirmation": "\u4f60\u78ba\u5b9a\u8981\u522a\u9664\u9019\u5f35\u5716\u50cf\uff1f", - "FileReadCancelled": "The file read has been canceled.", - "FileNotFound": "\u672a\u627e\u5230\u6a94\u6848\u3002", - "FileReadError": "\u5728\u8b80\u53d6\u6a94\u6848\u6642\u767c\u751f\u932f\u8aa4\u3002", - "DeleteUser": "\u522a\u9664\u7528\u6236", - "DeleteUserConfirmation": "Are you sure you wish to delete this user?", - "PasswordResetHeader": "Reset Password", - "PasswordResetComplete": "\u5bc6\u78bc\u5df2\u91cd\u8a2d", - "PinCodeResetComplete": "The pin code has been reset.", - "PasswordResetConfirmation": "\u4f60\u78ba\u5b9a\u8981\u91cd\u8a2d\u5bc6\u78bc\uff1f", - "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", - "HeaderPinCodeReset": "Reset Pin Code", - "PasswordSaved": "\u5bc6\u78bc\u5df2\u4fdd\u5b58\u3002", - "PasswordMatchError": "\u5bc6\u78bc\u548c\u5bc6\u78bc\u78ba\u8a8d\u5fc5\u9808\u4e00\u81f4\u3002", - "OptionRelease": "Official Release", - "OptionBeta": "\u516c\u6e2c\u7248\u672c", - "OptionDev": "Dev (Unstable)", - "UninstallPluginHeader": "\u5378\u8f09\u63d2\u4ef6", - "UninstallPluginConfirmation": "\u4f60\u78ba\u5b9a\u8981\u5378\u8f09{0}\uff1f", - "NoPluginConfigurationMessage": "\u9019\u500b\u63d2\u4ef6\u6c92\u6709\u8a2d\u5b9a\u9078\u9805\u3002", - "NoPluginsInstalledMessage": "\u4f60\u6c92\u6709\u5b89\u88dd\u63d2\u4ef6\u3002", - "BrowsePluginCatalogMessage": "\u700f\u89bd\u6211\u5011\u7684\u63d2\u4ef6\u76ee\u9304\u4f86\u67e5\u770b\u53ef\u7528\u7684\u63d2\u4ef6\u3002", - "HeaderNewApiKey": "New Api Key", - "LabelAppName": "App name", - "LabelAppNameExample": "Example: Sickbeard, NzbDrone", - "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", - "MessageKeyEmailedTo": "Key emailed to {0}.", - "MessageKeysLinked": "Keys linked.", - "HeaderConfirmation": "Confirmation", - "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", - "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", - "HeaderSupportTheTeam": "Support the Emby Team", - "TextEnjoyBonusFeatures": "Enjoy Bonus Features", - "TitleLiveTV": "\u96fb\u8996\u529f\u80fd", - "ButtonCancelSyncJob": "Cancel sync", - "HeaderAddTag": "Add Tag", - "LabelTag": "Tag:", - "ButtonSelectView": "Select view", - "TitleSync": "Sync", - "OptionAutomatic": "\u81ea\u52d5", - "HeaderSelectDate": "Select Date", - "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", - "ButtonIdentify": "Identify", - "HeaderIdentifyItem": "Identify Item", - "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", - "LabelFromHelp": "Example: {0} (on the server)", - "HeaderMyMedia": "My Media", - "ButtonRemoveFromCollection": "Remove from Collection", - "LabelAutomaticUpdateLevel": "Automatic update level:", - "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", - "TitleNotifications": "Notifications", - "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", - "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", - "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", - "HeaderConfirmRemoveUser": "Remove User", - "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", - "ValueTimeLimitSingleHour": "Time limit: 1 hour", - "ValueTimeLimitMultiHour": "Time limit: {0} hours", - "HeaderUsers": "\u7528\u6236", - "PluginCategoryGeneral": "General", - "PluginCategoryContentProvider": "Content Providers", - "PluginCategoryScreenSaver": "Screen Savers", - "PluginCategoryTheme": "Themes", - "PluginCategorySync": "Sync", - "PluginCategorySocialIntegration": "Social Networks", - "PluginCategoryNotifications": "Notifications", - "PluginCategoryMetadata": "Metadata", - "PluginCategoryLiveTV": "Live TV", - "PluginCategoryChannel": "Channels", - "HeaderSearch": "Search", - "ValueDateCreated": "Date created: {0}", - "LabelArtist": "Artist", - "LabelMovie": "Movie", - "LabelMusicVideo": "Music Video", - "LabelEpisode": "Episode", - "LabelSeries": "Series", - "LabelStopping": "Stopping", - "LabelCancelled": "(cancelled)", - "LabelFailed": "(failed)", - "ButtonHelp": "Help", - "ButtonSave": "\u4fdd\u5b58", - "ButtonDownload": "Download", - "SyncJobStatusQueued": "Queued", - "SyncJobStatusConverting": "Converting", - "SyncJobStatusFailed": "Failed", - "SyncJobStatusCancelled": "Cancelled", - "SyncJobStatusCompleted": "Synced", - "SyncJobStatusReadyToTransfer": "Ready to Transfer", - "SyncJobStatusTransferring": "Transferring", - "SyncJobStatusCompletedWithError": "Synced with errors", - "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", - "LabelCollection": "Collection", - "HeaderAddToCollection": "Add to Collection", - "HeaderNewCollection": "\u65b0\u5408\u96c6", - "NewCollectionNameExample": "\u4f8b\u5b50\uff1a\u661f\u7403\u5927\u6230\u5408\u96c6", - "OptionSearchForInternetMetadata": "\u5728\u4e92\u806f\u7db2\u4e0a\u641c\u7d22\u5a92\u9ad4\u5716\u50cf\u548c\u8cc7\u6599", - "LabelSelectCollection": "Select collection:", - "HeaderDevices": "Devices", - "ButtonScheduledTasks": "Scheduled tasks", - "MessageItemsAdded": "Items added", - "ButtonAddToCollection": "Add to collection", - "HeaderSelectCertificatePath": "Select Certificate Path", - "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", - "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", - "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", - "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", - "HeaderWelcomeToProjectWebClient": "Welcome to Emby", - "ButtonTakeTheTour": "Take the tour", - "HeaderWelcomeBack": "Welcome back!", - "TitlePlugins": "Plugins", - "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", - "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", - "HeaderLibraryAccess": "Library Access", - "HeaderChannelAccess": "Channel Access", - "HeaderDeviceAccess": "Device Access", - "HeaderSelectDevices": "Select Devices", - "ButtonCancelItem": "Cancel item", - "ButtonQueueForRetry": "Queue for retry", - "ButtonReenable": "Re-enable", - "ButtonLearnMore": "Learn more", - "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", - "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", - "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", - "HeaderDeleteTaskTrigger": "Delete Task Trigger", - "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", - "MessageNoPluginsInstalled": "You have no plugins installed.", - "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", - "LabelVersionInstalled": "{0} installed", - "LabelNumberReviews": "{0} Reviews", - "LabelFree": "Free", - "HeaderTo": "\u5230", - "HeaderPlaybackError": "Playback Error", - "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", - "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", - "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", - "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", - "HeaderSelectAudio": "Select Audio", - "HeaderSelectSubtitles": "Select Subtitles", - "ButtonMarkForRemoval": "Remove from device", - "ButtonUnmarkForRemoval": "Cancel removal from device", - "LabelDefaultStream": "(Default)", - "LabelForcedStream": "(Forced)", - "LabelDefaultForcedStream": "(Default\/Forced)", - "LabelUnknownLanguage": "Unknown language", - "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", - "ButtonMute": "Mute", - "ButtonUnmute": "Unmute", - "ButtonStop": "Stop", - "ButtonNextTrack": "Next Track", - "ButtonPause": "Pause", - "ButtonPlay": "\u64ad\u653e", - "ButtonEdit": "\u7de8\u8f2f", - "ButtonQueue": "Queue", - "ButtonPlayTrailer": "Play trailer", - "ButtonPlaylist": "Playlist", - "ButtonPreviousTrack": "Previous Track", - "LabelEnabled": "Enabled", - "LabelDisabled": "Disabled", - "ButtonMoreInformation": "More Information", - "LabelNoUnreadNotifications": "No unread notifications.", - "ButtonViewNotifications": "View notifications", - "ButtonMarkTheseRead": "Mark these read", - "ButtonClose": "Close", - "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", - "MessageInvalidUser": "Invalid username or password. Please try again.", - "HeaderLoginFailure": "Login Failure", - "HeaderAllRecordings": "\u6240\u6709\u9304\u5f71", - "RecommendationBecauseYouLike": "Because you like {0}", - "RecommendationBecauseYouWatched": "Because you watched {0}", - "RecommendationDirectedBy": "Directed by {0}", - "RecommendationStarring": "Starring {0}", - "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", - "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", - "MessageRecordingCancelled": "Recording cancelled.", - "MessageRecordingScheduled": "Recording scheduled.", - "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", - "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", - "MessageSeriesCancelled": "Series cancelled.", - "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", - "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", - "MessageRecordingDeleted": "Recording deleted.", - "ButonCancelRecording": "Cancel Recording", - "MessageRecordingSaved": "Recording saved.", - "OptionSunday": "\u661f\u671f\u5929", - "OptionMonday": "\u661f\u671f\u4e00", - "OptionTuesday": "\u661f\u671f\u4e8c", - "OptionWednesday": "\u661f\u671f\u4e09", - "OptionThursday": "\u661f\u671f\u56db", - "OptionFriday": "\u661f\u671f\u4e94", - "OptionSaturday": "\u661f\u671f\u516d", - "OptionEveryday": "Every day", - "OptionWeekend": "Weekends", - "OptionWeekday": "Weekdays", - "HeaderConfirmDeletion": "Confirm Deletion", - "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", - "LiveTvUpdateAvailable": "(Update available)", - "LabelVersionUpToDate": "Up to date!", - "ButtonResetTuner": "Reset tuner", - "HeaderResetTuner": "Reset Tuner", - "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", - "ButtonCancelSeries": "Cancel Series", - "HeaderSeriesRecordings": "Series Recordings", - "LabelAnytime": "Any time", - "StatusRecording": "Recording", - "StatusWatching": "Watching", - "StatusRecordingProgram": "Recording {0}", - "StatusWatchingProgram": "Watching {0}", - "HeaderSplitMedia": "Split Media Apart", - "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", - "HeaderError": "Error", - "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", - "MessagePleaseSelectOneItem": "Please select at least one item.", - "MessagePleaseSelectTwoItems": "Please select at least two items.", - "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", - "HeaderResume": "Resume", - "HeaderMyViews": "My Views", - "HeaderLibraryFolders": "Media Folders", - "HeaderLatestMedia": "Latest Media", - "ButtonMoreItems": "More...", - "ButtonMore": "More", - "HeaderFavoriteMovies": "Favorite Movies", - "HeaderFavoriteShows": "Favorite Shows", - "HeaderFavoriteEpisodes": "Favorite Episodes", - "HeaderFavoriteGames": "Favorite Games", - "HeaderRatingsDownloads": "Rating \/ Downloads", - "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", - "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", - "HeaderSelectServerCachePath": "Select Server Cache Path", - "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", - "HeaderSelectImagesByNamePath": "Select Images By Name Path", - "HeaderSelectMetadataPath": "Select Metadata Path", - "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", - "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", - "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", - "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", - "HeaderSelectChannelDownloadPath": "Select Channel Download Path", - "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", - "OptionNewCollection": "New...", - "ButtonAdd": "\u6dfb\u52a0", - "ButtonRemove": "\u6e05\u9664", - "LabelChapterDownloaders": "Chapter downloaders:", - "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "HeaderFavoriteAlbums": "Favorite Albums", - "HeaderLatestChannelMedia": "Latest Channel Items", - "ButtonOrganizeFile": "Organize File", - "ButtonDeleteFile": "Delete File", - "HeaderOrganizeFile": "Organize File", - "HeaderDeleteFile": "Delete File", - "StatusSkipped": "Skipped", - "StatusFailed": "Failed", - "StatusSuccess": "Success", - "MessageFileWillBeDeleted": "The following file will be deleted:", - "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", - "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", - "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", - "MessageDestinationTo": "to:", - "HeaderSelectWatchFolder": "Select Watch Folder", - "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", - "OrganizePatternResult": "Result: {0}", - "AutoOrganizeError": "Error Organizing File", - "FileOrganizeManually": "Organize File", - "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", - "HeaderRestart": "Restart", - "HeaderShutdown": "Shutdown", - "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", - "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", - "ButtonUpdateNow": "Update Now", - "ValueItemCount": "{0} item", - "ValueItemCountPlural": "{0} items", - "NewVersionOfSomethingAvailable": "A new version of {0} is available!", - "VersionXIsAvailableForDownload": "Version {0} is now available for download.", - "LabelVersionNumber": "Version {0}", - "LabelPlayMethodTranscoding": "Transcoding", - "LabelPlayMethodDirectStream": "Direct Streaming", - "LabelPlayMethodDirectPlay": "Direct Playing", - "LabelAudioCodec": "Audio: {0}", - "LabelVideoCodec": "Video: {0}", - "LabelLocalAccessUrl": "Local access: {0}", - "LabelRemoteAccessUrl": "Remote access: {0}", - "LabelRunningOnPort": "Running on http port {0}.", - "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", - "HeaderLatestFromChannel": "Latest from {0}", - "LabelUnknownLanaguage": "Unknown language", - "HeaderCurrentSubtitles": "Current Subtitles", - "MessageDownloadQueued": "The download has been queued.", - "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", - "ButtonRemoteControl": "Remote Control", - "HeaderLatestTvRecordings": "Latest Recordings", - "ButtonOk": "OK", - "ButtonCancel": "\u53d6\u6d88", - "ButtonRefresh": "Refresh", - "LabelCurrentPath": "Current path:", - "HeaderSelectMediaPath": "Select Media Path", - "HeaderSelectPath": "Select Path", - "ButtonNetwork": "Network", - "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", - "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", - "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", - "HeaderMenu": "Menu", - "ButtonOpen": "Open", - "ButtonOpenInNewTab": "Open in new tab", - "ButtonShuffle": "Shuffle", - "ButtonInstantMix": "Instant mix", - "ButtonResume": "Resume", - "HeaderScenes": "\u5834\u666f", - "HeaderAudioTracks": "Audio Tracks", - "HeaderLibraries": "Libraries", - "HeaderSubtitles": "Subtitles", - "HeaderVideoQuality": "Video Quality", - "MessageErrorPlayingVideo": "There was an error playing the video.", - "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", - "ButtonHome": "Home", - "ButtonDashboard": "Dashboard", - "ButtonReports": "Reports", - "ButtonMetadataManager": "Metadata Manager", - "HeaderTime": "Time", - "HeaderName": "Name", - "HeaderAlbum": "Album", - "HeaderAlbumArtist": "Album Artist", - "HeaderArtist": "Artist", - "LabelAddedOnDate": "Added {0}", - "ButtonStart": "Start", - "HeaderChannels": "\u983b\u5ea6", - "HeaderMediaFolders": "\u5a92\u9ad4\u6587\u4ef6\u593e", - "HeaderBlockItemsWithNoRating": "Block content with no rating information:", - "OptionBlockOthers": "Others", - "OptionBlockTvShows": "TV Shows", - "OptionBlockTrailers": "Trailers", - "OptionBlockMusic": "Music", - "OptionBlockMovies": "Movies", - "OptionBlockBooks": "Books", - "OptionBlockGames": "Games", - "OptionBlockLiveTvPrograms": "Live TV Programs", - "OptionBlockLiveTvChannels": "Live TV Channels", - "OptionBlockChannelContent": "Internet Channel Content", - "ButtonRevoke": "Revoke", - "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", - "HeaderConfirmRevokeApiKey": "Revoke Api Key", - "ValueContainer": "Container: {0}", - "ValueAudioCodec": "Audio Codec: {0}", - "ValueVideoCodec": "Video Codec: {0}", - "ValueCodec": "Codec: {0}", - "ValueConditions": "Conditions: {0}", - "LabelAll": "All", - "HeaderDeleteImage": "Delete Image", - "MessageFileNotFound": "File not found.", - "MessageFileReadError": "An error occurred reading this file.", - "ButtonNextPage": "Next Page", - "ButtonPreviousPage": "Previous Page", - "ButtonMoveLeft": "Move left", - "ButtonMoveRight": "Move right", - "ButtonBrowseOnlineImages": "Browse online images", - "HeaderDeleteItem": "Delete Item", - "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", - "HeaderDeleteItems": "Delete Items", - "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", - "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", - "MessageValueNotCorrect": "The value entered is not correct. Please try again.", - "MessageItemSaved": "Item saved.", - "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", - "OptionEnded": "\u5b8c\u7d50", - "OptionContinuing": "\u6301\u7e8c", - "OptionOff": "\u95dc\u9589", - "OptionOn": "\u958b\u555f", - "ButtonSettings": "Settings", - "ButtonUninstall": "Uninstall", - "HeaderEnabledFields": "Enabled Fields", - "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", - "HeaderLiveTV": "Live TV", - "MissingLocalTrailer": "Missing local trailer.", - "MissingPrimaryImage": "Missing primary image.", - "MissingBackdropImage": "Missing backdrop image.", - "MissingLogoImage": "Missing logo image.", - "MissingEpisode": "Missing episode.", - "OptionScreenshots": "Screenshots", - "OptionBackdrops": "Backdrops", - "OptionImages": "Images", - "OptionKeywords": "Keywords", - "OptionTags": "Tags", - "OptionStudios": "Studios", - "OptionName": "Name", - "OptionOverview": "Overview", - "OptionGenres": "Genres", - "OptionParentalRating": "\u5bb6\u9577\u8a55\u7d1a", - "OptionPeople": "People", - "OptionRuntime": "\u64ad\u653e\u9577\u5ea6", - "OptionProductionLocations": "Production Locations", - "OptionBirthLocation": "Birth Location", - "LabelAllChannels": "All channels", - "LabelLiveProgram": "LIVE", - "LabelNewProgram": "NEW", - "LabelPremiereProgram": "PREMIERE", - "LabelHDProgram": "HD", - "HeaderChangeFolderType": "Change Content Type", - "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", - "HeaderAlert": "Alert", - "MessagePleaseRestart": "Please restart to finish updating.", - "ButtonRestart": "Restart", - "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", - "ButtonHide": "Hide", - "MessageSettingsSaved": "Settings saved.", - "ButtonSignOut": "Sign Out", - "ButtonMyProfile": "My Profile", - "ButtonMyPreferences": "My Preferences", - "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", - "LabelInstallingPackage": "Installing {0}", - "LabelPackageInstallCompleted": "{0} installation completed.", - "LabelPackageInstallFailed": "{0} installation failed.", - "LabelPackageInstallCancelled": "{0} installation cancelled.", - "TabServer": "\u4f3a\u670d\u5668", - "TabUsers": "Users", - "TabLibrary": "Library", - "TabMetadata": "\u5a92\u9ad4\u8cc7\u6599", - "TabDLNA": "DLNA", - "TabLiveTV": "Live TV", - "TabAutoOrganize": "Auto-Organize", - "TabPlugins": "Plugins", - "TabAdvanced": "\u9032\u968e", - "TabHelp": "Help", - "TabScheduledTasks": "Scheduled Tasks", - "ButtonFullscreen": "Fullscreen", - "ButtonAudioTracks": "Audio Tracks", - "ButtonSubtitles": "Subtitles", - "ButtonScenes": "Scenes", - "ButtonQuality": "Quality", - "HeaderNotifications": "Notifications", - "HeaderSelectPlayer": "Select Player", - "ButtonSelect": "\u9078\u64c7", - "ButtonNew": "\u5275\u5efa", - "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", - "HeaderVideoError": "Video Error", - "ButtonAddToPlaylist": "Add to playlist", - "HeaderAddToPlaylist": "Add to Playlist", - "LabelName": "\u540d\u5b57\uff1a", - "ButtonSubmit": "Submit", - "LabelSelectPlaylist": "Playlist:", - "OptionNewPlaylist": "New playlist...", - "MessageAddedToPlaylistSuccess": "Ok", - "ButtonView": "View", - "ButtonViewSeriesRecording": "View series recording", - "ValueOriginalAirDate": "Original air date: {0}", - "ButtonRemoveFromPlaylist": "Remove from playlist", - "HeaderSpecials": "Specials", - "HeaderTrailers": "Trailers", - "HeaderAudio": "Audio", - "HeaderResolution": "Resolution", - "HeaderVideo": "Video", - "HeaderRuntime": "Runtime", - "HeaderCommunityRating": "Community rating", - "HeaderPasswordReset": "Password Reset", - "HeaderParentalRating": "Parental rating", - "HeaderReleaseDate": "Release date", - "HeaderDateAdded": "Date added", - "HeaderSeries": "Series", - "HeaderSeason": "Season", - "HeaderSeasonNumber": "Season number", - "HeaderNetwork": "Network", - "HeaderYear": "Year", - "HeaderGameSystem": "Game system", - "HeaderPlayers": "Players", - "HeaderEmbeddedImage": "Embedded image", - "HeaderTrack": "Track", - "HeaderDisc": "Disc", - "OptionMovies": "Movies", - "OptionCollections": "Collections", - "OptionSeries": "Series", - "OptionSeasons": "Seasons", - "OptionEpisodes": "Episodes", - "OptionGames": "Games", - "OptionGameSystems": "Game systems", - "OptionMusicArtists": "Music artists", - "OptionMusicAlbums": "Music albums", - "OptionMusicVideos": "Music videos", - "OptionSongs": "Songs", - "OptionHomeVideos": "Home videos", - "OptionBooks": "Books", - "OptionAdultVideos": "Adult videos", - "ButtonUp": "Up", - "ButtonDown": "Down", - "LabelMetadataReaders": "Metadata readers:", - "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", - "LabelMetadataDownloaders": "Metadata downloaders:", - "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", - "LabelMetadataSavers": "Metadata savers:", - "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", - "LabelImageFetchers": "Image fetchers:", - "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", - "ButtonQueueAllFromHere": "Queue all from here", - "ButtonPlayAllFromHere": "Play all from here", - "LabelDynamicExternalId": "{0} Id:", - "HeaderIdentify": "Identify Item", - "PersonTypePerson": "Person", - "LabelTitleDisplayOrder": "Title display order:", - "OptionSortName": "Sort name", - "OptionReleaseDate": "Release date", - "LabelSeasonNumber": "Season number:", - "LabelDiscNumber": "Disc number", - "LabelParentNumber": "Parent number", - "LabelEpisodeNumber": "Episode number:", - "LabelTrackNumber": "Track number:", - "LabelNumber": "Number:", - "LabelReleaseDate": "Release date:", - "LabelEndDate": "End date:", - "LabelYear": "Year:", - "LabelDateOfBirth": "Date of birth:", - "LabelBirthYear": "Birth year:", - "LabelBirthDate": "Birth date:", - "LabelDeathDate": "Death date:", - "HeaderRemoveMediaLocation": "Remove Media Location", - "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", - "HeaderRenameMediaFolder": "Rename Media Folder", - "LabelNewName": "New name:", - "HeaderAddMediaFolder": "Add Media Folder", - "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", - "HeaderRemoveMediaFolder": "Remove Media Folder", - "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", - "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", - "ButtonRename": "Rename", - "ButtonChangeContentType": "Change content type", - "HeaderMediaLocations": "Media Locations", - "LabelContentTypeValue": "Content type: {0}", - "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", - "FolderTypeUnset": "Unset (mixed content)", - "FolderTypeMovies": "Movies", - "FolderTypeMusic": "Music", - "FolderTypeAdultVideos": "Adult videos", - "FolderTypePhotos": "Photos", - "FolderTypeMusicVideos": "Music videos", - "FolderTypeHomeVideos": "Home videos", - "FolderTypeGames": "Games", - "FolderTypeBooks": "Books", - "FolderTypeTvShows": "TV", - "TabMovies": "\u96fb\u5f71", - "TabSeries": "\u96fb\u8996\u5287", - "TabEpisodes": "\u55ae\u5143", - "TabTrailers": "\u9810\u544a", - "TabGames": "\u904a\u6232", - "TabAlbums": "\u5c08\u8f2f", - "TabSongs": "\u6b4c\u66f2", - "TabMusicVideos": "Music Videos", - "BirthPlaceValue": "Birth place: {0}", - "DeathDateValue": "Died: {0}", - "BirthDateValue": "Born: {0}", - "HeaderLatestReviews": "Latest Reviews", - "HeaderPluginInstallation": "Plugin Installation", - "MessageAlreadyInstalled": "This version is already installed.", - "ValueReviewCount": "{0} Reviews", - "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", - "MessageTrialExpired": "The trial period for this feature has expired", - "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", - "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", - "ValuePriceUSD": "Price: {0} (USD)", - "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", - "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", - "ButtonDelete": "\u522a\u9664", - "HeaderEmbyAccountAdded": "Emby Account Added", - "MessageEmbyAccountAdded": "The Emby account has been added to this user.", - "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.", - "HeaderEmbyAccountRemoved": "Emby Account Removed", - "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", - "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", - "HeaderUnrated": "Unrated", - "ValueDiscNumber": "Disc {0}", - "HeaderUnknownDate": "Unknown Date", - "HeaderUnknownYear": "Unknown Year", - "ValueMinutes": "{0} min", - "ButtonPlayExternalPlayer": "Play with external player", - "HeaderSelectExternalPlayer": "Select External Player", - "HeaderExternalPlayerPlayback": "External Player Playback", - "ButtonImDone": "I'm Done", - "OptionWatched": "Watched", - "OptionUnwatched": "Unwatched", - "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", - "LabelMarkAs": "Mark as:", - "OptionInProgress": "In-Progress", - "LabelResumePoint": "Resume point:", - "ValueOneMovie": "1 movie", - "ValueMovieCount": "{0} movies", - "ValueOneTrailer": "1 trailer", - "ValueTrailerCount": "{0} trailers", - "ValueOneSeries": "1 series", - "ValueSeriesCount": "{0} series", - "ValueOneEpisode": "1 episode", - "ValueEpisodeCount": "{0} episodes", - "ValueOneGame": "1 game", - "ValueGameCount": "{0} games", - "ValueOneAlbum": "1 album", - "ValueAlbumCount": "{0} albums", - "ValueOneSong": "1 song", - "ValueSongCount": "{0} songs", - "ValueOneMusicVideo": "1 music video", - "ValueMusicVideoCount": "{0} music videos", - "HeaderOffline": "Offline", - "HeaderUnaired": "Unaired", - "HeaderMissing": "Missing", - "ButtonWebsite": "Website", - "TooltipFavorite": "Favorite", - "TooltipLike": "Like", - "TooltipDislike": "Dislike", - "TooltipPlayed": "Played", - "ValueSeriesYearToPresent": "{0}-Present", - "ValueAwards": "Awards: {0}", - "ValueBudget": "Budget: {0}", - "ValueRevenue": "Revenue: {0}", - "ValuePremiered": "Premiered {0}", - "ValuePremieres": "Premieres {0}", - "ValueStudio": "Studio: {0}", - "ValueStudios": "Studios: {0}", - "ValueStatus": "Status: {0}", - "ValueSpecialEpisodeName": "Special - {0}", - "LabelLimit": "Limit:", - "ValueLinks": "Links: {0}", - "HeaderPeople": "People", - "HeaderCastAndCrew": "Cast & Crew", - "ValueArtist": "Artist: {0}", - "ValueArtists": "Artists: {0}", - "HeaderTags": "Tags", - "MediaInfoCameraMake": "Camera make", - "MediaInfoCameraModel": "Camera model", - "MediaInfoAltitude": "Altitude", - "MediaInfoAperture": "Aperture", - "MediaInfoExposureTime": "Exposure time", - "MediaInfoFocalLength": "Focal length", - "MediaInfoOrientation": "Orientation", - "MediaInfoIsoSpeedRating": "Iso speed rating", - "MediaInfoLatitude": "Latitude", - "MediaInfoLongitude": "Longitude", - "MediaInfoShutterSpeed": "Shutter speed", - "MediaInfoSoftware": "Software", - "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", - "HeaderPlotKeywords": "Plot Keywords", - "HeaderMovies": "Movies", - "HeaderAlbums": "Albums", - "HeaderGames": "Games", - "HeaderBooks": "Books", - "HeaderEpisodes": "Episodes", - "HeaderSeasons": "Seasons", - "HeaderTracks": "Tracks", - "HeaderItems": "Items", - "HeaderOtherItems": "Other Items", - "ButtonFullReview": "Full review", - "ValueAsRole": "as {0}", - "ValueGuestStar": "Guest star", - "MediaInfoSize": "Size", - "MediaInfoPath": "Path", - "MediaInfoFile": "File", - "MediaInfoFormat": "Format", - "MediaInfoContainer": "Container", - "MediaInfoDefault": "Default", - "MediaInfoForced": "Forced", - "MediaInfoExternal": "External", - "MediaInfoTimestamp": "Timestamp", - "MediaInfoPixelFormat": "Pixel format", - "MediaInfoBitDepth": "Bit depth", - "MediaInfoSampleRate": "Sample rate", - "MediaInfoBitrate": "Bitrate", - "MediaInfoChannels": "Channels", - "MediaInfoLayout": "Layout", - "MediaInfoLanguage": "Language", - "MediaInfoCodec": "Codec", - "MediaInfoCodecTag": "Codec tag", - "MediaInfoProfile": "Profile", - "MediaInfoLevel": "Level", - "MediaInfoAspectRatio": "Aspect ratio", - "MediaInfoResolution": "Resolution", - "MediaInfoAnamorphic": "Anamorphic", - "MediaInfoInterlaced": "Interlaced", - "MediaInfoFramerate": "Framerate", - "MediaInfoStreamTypeAudio": "Audio", - "MediaInfoStreamTypeData": "Data", - "MediaInfoStreamTypeVideo": "Video", - "MediaInfoStreamTypeSubtitle": "Subtitle", - "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", - "MediaInfoRefFrames": "Ref frames", - "TabPlayback": "Playback", - "TabNotifications": "Notifications", - "TabExpert": "Expert", - "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", - "HeaderRateAndReview": "Rate and Review", - "HeaderThankYou": "Thank You", - "MessageThankYouForYourReview": "Thank you for your review.", - "LabelYourRating": "Your rating:", - "LabelFullReview": "Full review:", - "LabelShortRatingDescription": "Short rating summary:", - "OptionIRecommendThisItem": "I recommend this item", - "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", - "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", - "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", - "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", - "WebClientTourMetadataManager": "Click edit to open the metadata manager", - "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", - "WebClientTourCollections": "Create movie collections to group box sets together", - "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", - "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", - "WebClientTourUserPreferences3": "Design the web client home page to your liking", - "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", - "WebClientTourMobile1": "The web client works great on smartphones and tablets...", - "WebClientTourMobile2": "and easily controls other devices and Emby apps", - "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", - "MessageEnjoyYourStay": "Enjoy your stay", - "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", - "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", - "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", - "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", - "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", - "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", - "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", - "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", - "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", - "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", - "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", - "MessageRefreshQueued": "Refresh queued", - "TabDevices": "Devices", - "TabExtras": "Extras", - "HeaderUploadImage": "Upload Image", - "DeviceLastUsedByUserName": "Last used by {0}", - "HeaderDeleteDevice": "Delete Device", - "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", - "LabelEnableCameraUploadFor": "Enable camera upload for:", - "HeaderSelectUploadPath": "Select Upload Path", - "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", - "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", - "ButtonLibraryAccess": "Library access", - "ButtonParentalControl": "Parental control", - "HeaderInvitationSent": "Invitation Sent", - "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", - "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", - "HeaderConnectionFailure": "Connection Failure", - "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", - "ButtonSelectServer": "Select Server", - "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", - "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", - "DefaultErrorMessage": "There was an error processing the request. Please try again later.", - "ButtonAccept": "Accept", - "ButtonReject": "Reject", - "HeaderForgotPassword": "Forgot Password", - "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", - "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", - "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", - "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", - "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", - "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", - "HeaderInviteGuest": "Invite Guest", - "ButtonLinkMyEmbyAccount": "Link my account now", - "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", - "ButtonSync": "Sync", - "SyncMedia": "Sync Media", - "HeaderCancelSyncJob": "Cancel Sync", - "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", - "TabSync": "Sync", - "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", - "MessageSyncJobCreated": "Sync job created.", - "LabelSyncTo": "Sync to:", - "LabelSyncJobName": "Sync job name:", - "LabelQuality": "Quality:", - "HeaderSettings": "Settings", - "OptionAutomaticallySyncNewContent": "Automatically sync new content", - "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", - "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", - "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", - "LabelItemLimit": "Item limit:", - "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", - "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", - "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", - "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", - "SyncJobItemStatusQueued": "Queued", - "SyncJobItemStatusConverting": "Converting", - "SyncJobItemStatusTransferring": "Transferring", - "SyncJobItemStatusSynced": "Synced", - "SyncJobItemStatusFailed": "Failed", - "SyncJobItemStatusRemovedFromDevice": "Removed from device", - "SyncJobItemStatusCancelled": "Cancelled", - "LabelProfile": "Profile:", - "LabelBitrateMbps": "Bitrate (Mbps):", - "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", - "ButtonNewServer": "New Server", - "ButtonSignInWithConnect": "Sign in with Emby Connect", - "HeaderNewServer": "New Server", - "MyDevice": "My Device", - "ButtonRemote": "Remote", - "TabInfo": "\u8cc7\u8a0a", - "TabCast": "Cast", - "TabScenes": "Scenes", - "HeaderUnlockApp": "Unlock App", - "HeaderUnlockSync": "Unlock Emby Sync", - "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.", - "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", - "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", - "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", - "ButtonUnlockWithPurchase": "Unlock with Purchase", - "ButtonUnlockPrice": "Unlock {0}", - "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", - "OptionEnableFullscreen": "Enable Fullscreen", - "ButtonServer": "Server", - "HeaderAdmin": "Admin", - "HeaderLibrary": "Library", - "HeaderMedia": "Media", - "ButtonInbox": "Inbox", - "HeaderAdvanced": "Advanced", - "HeaderGroupVersions": "Group Versions", - "HeaderSaySomethingLike": "Say Something Like...", - "ButtonTryAgain": "Try Again", - "HeaderYouSaid": "You Said...", - "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", - "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", - "MessageNoItemsFound": "No items found.", - "ButtonManageServer": "Manage Server", - "ButtonEditSubtitles": "Edit subtitles", - "ButtonPreferences": "Preferences", - "ButtonViewArtist": "View artist", - "ButtonViewAlbum": "View album", - "ButtonEditImages": "Edit images", - "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", - "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", - "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", - "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", - "HeaderShare": "Share", - "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", - "ButtonShare": "Share", - "HeaderConfirm": "Confirm", - "ButtonAdvancedRefresh": "Advanced Refresh", - "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", - "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", - "HeaderDeleteProvider": "Delete Provider", - "HeaderAddProvider": "Add Provider", - "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", - "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", - "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", - "MessageCreateAccountAt": "Create an account at {0}", - "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", - "HeaderTryEmbyPremiere": "Try Emby Premiere", - "ButtonBecomeSupporter": "Get Emby Premiere", - "ButtonClosePlayVideo": "Close and play my media", - "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.", - "OptionEnableDisplayMirroring": "Enable display mirroring", - "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", - "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", - "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", - "HeaderSync": "Sync", - "LabelLocalSyncStatusValue": "Status: {0}", - "MessageSyncStarted": "Sync started", - "OptionPoster": "\u6d77\u5831", - "OptionPosterCard": "Poster card", - "OptionTimeline": "\u6642\u9593\u8ef8", - "OptionList": "List", - "OptionThumb": "\u7e2e\u7565\u5716", - "OptionThumbCard": "Thumb card", - "OptionBanner": "\u6a6b\u5411\u5716", - "NoSlideshowContentFound": "No slideshow images were found.", - "OptionPhotoSlideshow": "Photo slideshow", - "OptionBackdropSlideshow": "Backdrop slideshow", - "HeaderTopPlugins": "Top Plugins", - "ButtonRecord": "\u958b\u59cb\u9304\u5f71", - "ButtonOther": "Other", - "HeaderSortBy": "\u6392\u5e8f\u65b9\u5f0f\uff1a", - "HeaderSortOrder": "\u6392\u5e8f\u6b21\u5e8f\uff1a", - "OptionAscending": "\u5347\u5e8f", - "OptionDescending": "\u964d\u5e8f", - "OptionNameSort": "\u540d\u5b57", - "OptionTvdbRating": "Tvdb\u8a55\u5206", - "OptionPremiereDate": "\u9996\u6620\u65e5\u671f", - "OptionImdbRating": "IMDB\u8a55\u5206", - "OptionDatePlayed": "\u64ad\u653e\u65e5\u671f", - "OptionDateAdded": "\u6dfb\u52a0\u65e5\u671f", - "OptionPlayCount": "\u64ad\u653e\u6b21\u6578", - "ButtonDisconnect": "Disconnect", - "OptionAlbumArtist": "\u5c08\u8f2f\u6b4c\u624b", - "OptionArtist": "\u6b4c\u624b", - "OptionAlbum": "\u5c08\u8f2f", - "OptionTrackName": "\u66f2\u76ee\u540d\u7a31", - "OptionCommunityRating": "\u793e\u5340\u8a55\u5206", - "ButtonSort": "\u6392\u5e8f", - "ButtonMenu": "Menu", - "OptionDefaultSort": "Default", - "ButtonFilter": "\u904e\u6ffe", - "OptionCriticRating": "\u8a55\u8ad6\u5bb6\u8a55\u50f9", - "OptionVideoBitrate": "\u8996\u983b\u6bd4\u7279\u7387", - "OptionMetascore": "\u8a55\u5206", - "OptionRevenue": "\u6536\u5165", - "OptionBudget": "\u9810\u7b97", - "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", - "ButtonGuide": "Guide", - "ButtonRecordedTv": "Recorded TV", - "HeaderDisconnectFromPlayer": "Disconnect from Player", - "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", - "ButtonYes": "Yes", - "ButtonNo": "No", - "ButtonRestorePreviousPurchase": "Restore Purchase", - "AlreadyPaid": "Already Paid?", - "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", - "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", - "ButtonForYou": "For You", - "ButtonLibrary": "Library", - "ButtonSearch": "\u641c\u7d22", - "ButtonNowPlaying": "Now Playing", - "ButtonViewNewApp": "View new app", - "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", - "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", - "HeaderNextUp": "\u4e0b\u4e00\u96c6", - "HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71", - "HeaderLatestEpisodes": "\u6700\u65b0\u7bc0\u76ee\u55ae\u5143", - "EmbyPremiereMonthly": "Emby Premiere Monthly", - "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", - "HeaderEmailAddress": "E-Mail Address", - "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", - "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", - "TermsOfUse": "Terms of use", - "HeaderTryMultiSelect": "Try Multi-Select", - "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", - "NumLocationsValue": "{0} folders", - "ButtonAddMediaLibrary": "Add Media Library", - "ButtonManageFolders": "Manage folders", - "HeaderTryDragAndDrop": "Try Drag and Drop", - "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", - "HeaderTryMicrosoftEdge": "Try Microsoft Edge", - "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", - "HeaderTryModernBrowser": "Try a Modern Web Browser", - "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", - "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", - "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", - "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", - "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", - "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", - "HeaderFavoriteArtists": "Favorite Artists", - "HeaderFavoriteSongs": "Favorite Songs", - "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", - "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", - "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", - "ButtonPlayOneMinute": "Play one minute", - "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", - "HeaderTryPlayback": "Try Playback", - "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", - "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", - "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", - "HeaderMobileSync": "Mobile Sync", - "HeaderCloudSync": "Cloud Sync", - "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", - "HeaderFreeApps": "Free Emby Apps", - "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", - "HeaderCinemaMode": "Cinema Mode", - "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", - "CoverArt": "Cover Art", - "ButtonOff": "Off", - "TitleHardwareAcceleration": "Hardware Acceleration", - "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", - "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", - "ButtonLocalRefresh": "Local refresh", - "ButtonAddMissingData": "Add missing data only", - "ButtonFullRefresh": "Full refresh", - "ValueExample": "1:00 PM", - "ButtonGotIt": "Got It" -} \ No newline at end of file diff --git a/dashboard-ui/strings/html/kk.json b/dashboard-ui/strings/kk.json similarity index 100% rename from dashboard-ui/strings/html/kk.json rename to dashboard-ui/strings/kk.json diff --git a/dashboard-ui/strings/html/ko.json b/dashboard-ui/strings/ko.json similarity index 100% rename from dashboard-ui/strings/html/ko.json rename to dashboard-ui/strings/ko.json diff --git a/dashboard-ui/strings/html/ms.json b/dashboard-ui/strings/ms.json similarity index 100% rename from dashboard-ui/strings/html/ms.json rename to dashboard-ui/strings/ms.json diff --git a/dashboard-ui/strings/html/nb.json b/dashboard-ui/strings/nb.json similarity index 100% rename from dashboard-ui/strings/html/nb.json rename to dashboard-ui/strings/nb.json diff --git a/dashboard-ui/strings/html/nl.json b/dashboard-ui/strings/nl.json similarity index 100% rename from dashboard-ui/strings/html/nl.json rename to dashboard-ui/strings/nl.json diff --git a/dashboard-ui/strings/html/pl.json b/dashboard-ui/strings/pl.json similarity index 100% rename from dashboard-ui/strings/html/pl.json rename to dashboard-ui/strings/pl.json diff --git a/dashboard-ui/strings/html/pt-BR.json b/dashboard-ui/strings/pt-BR.json similarity index 100% rename from dashboard-ui/strings/html/pt-BR.json rename to dashboard-ui/strings/pt-BR.json diff --git a/dashboard-ui/strings/html/pt-PT.json b/dashboard-ui/strings/pt-PT.json similarity index 100% rename from dashboard-ui/strings/html/pt-PT.json rename to dashboard-ui/strings/pt-PT.json diff --git a/dashboard-ui/strings/html/ro.json b/dashboard-ui/strings/ro.json similarity index 100% rename from dashboard-ui/strings/html/ro.json rename to dashboard-ui/strings/ro.json diff --git a/dashboard-ui/strings/html/ru.json b/dashboard-ui/strings/ru.json similarity index 100% rename from dashboard-ui/strings/html/ru.json rename to dashboard-ui/strings/ru.json diff --git a/dashboard-ui/strings/html/server.json b/dashboard-ui/strings/server.json similarity index 62% rename from dashboard-ui/strings/html/server.json rename to dashboard-ui/strings/server.json index d07d99e1f5..c600fed901 100644 --- a/dashboard-ui/strings/html/server.json +++ b/dashboard-ui/strings/server.json @@ -1545,5 +1545,978 @@ "OptionReplaceExistingImages": "Replace existing images", "OptionPlayNextEpisodeAutomatically": "Play next episode automatically", "OptionDownloadImagesInAdvance": "Download all images in advance", - "OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported." + "SettingsSaved": "Settings saved.", + "OptionDownloadImagesInAdvanceHelp": "By default, most secondary images are only downloaded when requested by an Emby app. Enable this option to download all images in advance, as new media is imported.", + "Users": "Users", + "Delete": "Delete", + "Administrator": "Administrator", + "Password": "Password", + "DeleteImage": "Delete Image", + "MessageThankYouForSupporting": "Thank you for supporting Emby.", + "MessagePleaseSupportProject": "Please support Emby.", + "DeleteImageConfirmation": "Are you sure you wish to delete this image?", + "FileReadCancelled": "The file read has been canceled.", + "FileNotFound": "File not found.", + "FileReadError": "An error occurred while reading the file.", + "DeleteUser": "Delete User", + "DeleteUserConfirmation": "Are you sure you wish to delete this user?", + "PasswordResetHeader": "Reset Password", + "PasswordResetComplete": "The password has been reset.", + "PinCodeResetComplete": "The pin code has been reset.", + "PasswordResetConfirmation": "Are you sure you wish to reset the password?", + "PinCodeResetConfirmation": "Are you sure you wish to reset the pin code?", + "HeaderPinCodeReset": "Reset Pin Code", + "PasswordSaved": "Password saved.", + "PasswordMatchError": "Password and password confirmation must match.", + "OptionRelease": "Official Release", + "OptionBeta": "Beta", + "OptionDev": "Dev (Unstable)", + "UninstallPluginHeader": "Uninstall Plugin", + "UninstallPluginConfirmation": "Are you sure you wish to uninstall {0}?", + "NoPluginConfigurationMessage": "This plugin has nothing to configure.", + "NoPluginsInstalledMessage": "You have no plugins installed.", + "BrowsePluginCatalogMessage": "Browse our plugin catalog to view available plugins.", + "HeaderNewApiKey": "New Api Key", + "LabelAppName": "App name", + "LabelAppNameExample": "Example: Sickbeard, NzbDrone", + "HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.", + "MessageKeyEmailedTo": "Key emailed to {0}.", + "MessageKeysLinked": "Keys linked.", + "HeaderConfirmation": "Confirmation", + "MessageKeyUpdated": "Thank you. Your Emby Premiere key has been updated.", + "MessageKeyRemoved": "Thank you. Your Emby Premiere key has been removed.", + "HeaderSupportTheTeam": "Support the Emby Team", + "TextEnjoyBonusFeatures": "Enjoy Bonus Features", + "TitleLiveTV": "Live TV", + "ButtonCancelSyncJob": "Cancel sync", + "HeaderAddTag": "Add Tag", + "LabelTag": "Tag:", + "ButtonSelectView": "Select view", + "TitleSync": "Sync", + "OptionAutomatic": "Auto", + "HeaderSelectDate": "Select Date", + "ServerUpdateNeeded": "This Emby Server needs to be updated. To download the latest version, please visit {0}", + "ButtonIdentify": "Identify", + "HeaderIdentifyItem": "Identify Item", + "LabelRecurringDonationCanBeCancelledHelp": "Recurring donations can be cancelled at any time from within your PayPal account.", + "LabelFromHelp": "Example: {0} (on the server)", + "HeaderMyMedia": "My Media", + "ButtonRemoveFromCollection": "Remove from Collection", + "LabelAutomaticUpdateLevel": "Automatic update level:", + "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:", + "TitleNotifications": "Notifications", + "ErrorLaunchingChromecast": "There was an error launching chromecast. Please ensure your device is connected to your wireless network.", + "MessageErrorLoadingSupporterInfo": "There was an error loading Emby Premiere information. Please try again later.", + "MessageLinkYourSupporterKey": "Link your Emby Premiere key with up to {0} Emby Connect members to enjoy free access to the following apps:", + "HeaderConfirmRemoveUser": "Remove User", + "MessageConfirmRemoveConnectSupporter": "Are you sure you wish to remove additional Emby Premiere benefits from this user?", + "ValueTimeLimitSingleHour": "Time limit: 1 hour", + "ValueTimeLimitMultiHour": "Time limit: {0} hours", + "HeaderUsers": "Users", + "PluginCategoryGeneral": "General", + "PluginCategoryContentProvider": "Content Providers", + "PluginCategoryScreenSaver": "Screen Savers", + "PluginCategoryTheme": "Themes", + "PluginCategorySync": "Sync", + "PluginCategorySocialIntegration": "Social Networks", + "PluginCategoryNotifications": "Notifications", + "PluginCategoryMetadata": "Metadata", + "PluginCategoryLiveTV": "Live TV", + "PluginCategoryChannel": "Channels", + "HeaderSearch": "Search", + "ValueDateCreated": "Date created: {0}", + "LabelArtist": "Artist", + "LabelMovie": "Movie", + "LabelMusicVideo": "Music Video", + "LabelEpisode": "Episode", + "LabelSeries": "Series", + "LabelStopping": "Stopping", + "LabelCancelled": "(cancelled)", + "LabelFailed": "(failed)", + "ButtonHelp": "Help", + "ButtonSave": "Save", + "ButtonDownload": "Download", + "SyncJobStatusQueued": "Queued", + "SyncJobStatusConverting": "Converting", + "SyncJobStatusFailed": "Failed", + "SyncJobStatusCancelled": "Cancelled", + "SyncJobStatusCompleted": "Synced", + "SyncJobStatusReadyToTransfer": "Ready to Transfer", + "SyncJobStatusTransferring": "Transferring", + "SyncJobStatusCompletedWithError": "Synced with errors", + "SyncJobItemStatusReadyToTransfer": "Ready to Transfer", + "LabelCollection": "Collection", + "HeaderAddToCollection": "Add to Collection", + "HeaderNewCollection": "New Collection", + "NewCollectionNameExample": "Example: Star Wars Collection", + "OptionSearchForInternetMetadata": "Search the internet for artwork and metadata", + "LabelSelectCollection": "Select collection:", + "HeaderDevices": "Devices", + "ButtonScheduledTasks": "Scheduled tasks", + "MessageItemsAdded": "Items added", + "ButtonAddToCollection": "Add to collection", + "HeaderSelectCertificatePath": "Select Certificate Path", + "ConfirmMessageScheduledTaskButton": "This operation normally runs automatically as a scheduled task and does not require any manual effort. To configure the scheduled task, see:", + "HeaderSupporterBenefit": "An active Emby Premiere subscription provides additional benefits such as access to sync, premium plugins, internet channel content, and more. {0}Learn more{1}.", + "LabelSyncNoTargetsHelp": "It looks like you don't currently have any apps that support sync.", + "HeaderWelcomeToProjectServerDashboard": "Welcome to the Emby Server Dashboard", + "HeaderWelcomeToProjectWebClient": "Welcome to Emby", + "ButtonTakeTheTour": "Take the tour", + "HeaderWelcomeBack": "Welcome back!", + "TitlePlugins": "Plugins", + "ButtonTakeTheTourToSeeWhatsNew": "Take the tour to see what's new", + "MessageNoSyncJobsFound": "No sync jobs found. Create sync jobs using the Sync buttons found throughout the web interface.", + "HeaderLibraryAccess": "Library Access", + "HeaderChannelAccess": "Channel Access", + "HeaderDeviceAccess": "Device Access", + "HeaderSelectDevices": "Select Devices", + "ButtonCancelItem": "Cancel item", + "ButtonQueueForRetry": "Queue for retry", + "ButtonReenable": "Re-enable", + "ButtonLearnMore": "Learn more", + "SyncJobItemStatusSyncedMarkForRemoval": "Marked for removal", + "LabelAbortedByServerShutdown": "(Aborted by server shutdown)", + "LabelScheduledTaskLastRan": "Last ran {0}, taking {1}.", + "HeaderDeleteTaskTrigger": "Delete Task Trigger", + "MessageDeleteTaskTrigger": "Are you sure you wish to delete this task trigger?", + "MessageNoPluginsInstalled": "You have no plugins installed.", + "MessageNoPluginsDueToAppStore": "To manage plugins, please use the Emby web app.", + "LabelVersionInstalled": "{0} installed", + "LabelNumberReviews": "{0} Reviews", + "LabelFree": "Free", + "HeaderTo": "To", + "HeaderPlaybackError": "Playback Error", + "MessagePlaybackErrorNotAllowed": "You're currently not authorized to play this content. Please contact your system administrator for details.", + "MessagePlaybackErrorNoCompatibleStream": "No compatible streams are currently available. Please try again later or contact your system administrator for details.", + "MessagePlaybackErrorRateLimitExceeded": "Your playback rate limit has been exceeded. Please contact your system administrator for details.", + "MessagePlaybackErrorPlaceHolder": "The content chosen is not playable from this device.", + "HeaderSelectAudio": "Select Audio", + "HeaderSelectSubtitles": "Select Subtitles", + "ButtonMarkForRemoval": "Remove from device", + "ButtonUnmarkForRemoval": "Cancel removal from device", + "LabelDefaultStream": "(Default)", + "LabelForcedStream": "(Forced)", + "LabelDefaultForcedStream": "(Default/Forced)", + "LabelUnknownLanguage": "Unknown language", + "HeaderConfirmation": "Confirmation", + "MessageConfirmSyncJobItemCancellation": "Are you sure you wish to cancel this item?", + "ButtonMute": "Mute", + "ButtonUnmute": "Unmute", + "ButtonStop": "Stop", + "ButtonNextTrack": "Next Track", + "ButtonPause": "Pause", + "ButtonPlay": "Play", + "ButtonEdit": "Edit", + "ButtonQueue": "Queue", + "ButtonPlayTrailer": "Play trailer", + "ButtonPlaylist": "Playlist", + "ButtonPreviousTrack": "Previous Track", + "LabelEnabled": "Enabled", + "LabelDisabled": "Disabled", + "ButtonMoreInformation": "More Information", + "LabelNoUnreadNotifications": "No unread notifications.", + "ButtonViewNotifications": "View notifications", + "ButtonMarkTheseRead": "Mark these read", + "ButtonClose": "Close", + "LabelAllPlaysSentToPlayer": "All plays will be sent to the selected player.", + "MessageInvalidUser": "Invalid username or password. Please try again.", + "HeaderLoginFailure": "Login Failure", + "HeaderAllRecordings": "All Recordings", + "RecommendationBecauseYouLike": "Because you like {0}", + "RecommendationBecauseYouWatched": "Because you watched {0}", + "RecommendationDirectedBy": "Directed by {0}", + "RecommendationStarring": "Starring {0}", + "HeaderConfirmRecordingCancellation": "Confirm Recording Cancellation", + "MessageConfirmRecordingCancellation": "Are you sure you wish to cancel this recording?", + "MessageRecordingCancelled": "Recording cancelled.", + "MessageRecordingScheduled": "Recording scheduled.", + "HeaderConfirmSeriesCancellation": "Confirm Series Cancellation", + "MessageConfirmSeriesCancellation": "Are you sure you wish to cancel this series?", + "MessageSeriesCancelled": "Series cancelled.", + "HeaderConfirmRecordingDeletion": "Confirm Recording Deletion", + "MessageConfirmRecordingDeletion": "Are you sure you wish to delete this recording?", + "MessageRecordingDeleted": "Recording deleted.", + "ButonCancelRecording": "Cancel Recording", + "MessageRecordingSaved": "Recording saved.", + "OptionSunday": "Sunday", + "OptionMonday": "Monday", + "OptionTuesday": "Tuesday", + "OptionWednesday": "Wednesday", + "OptionThursday": "Thursday", + "OptionFriday": "Friday", + "OptionSaturday": "Saturday", + "OptionEveryday": "Every day", + "OptionWeekend": "Weekends", + "OptionWeekday": "Weekdays", + "HeaderConfirmDeletion": "Confirm Deletion", + "MessageConfirmPathSubstitutionDeletion": "Are you sure you wish to delete this path substitution?", + "LiveTvUpdateAvailable": "(Update available)", + "LabelVersionUpToDate": "Up to date!", + "ButtonResetTuner": "Reset tuner", + "HeaderResetTuner": "Reset Tuner", + "MessageConfirmResetTuner": "Are you sure you wish to reset this tuner? Any active players or recordings will be abruptly stopped.", + "ButtonCancelSeries": "Cancel Series", + "HeaderSeriesRecordings": "Series Recordings", + "LabelAnytime": "Any time", + "StatusRecording": "Recording", + "StatusWatching": "Watching", + "StatusRecordingProgram": "Recording {0}", + "StatusWatchingProgram": "Watching {0}", + "HeaderSplitMedia": "Split Media Apart", + "MessageConfirmSplitMedia": "Are you sure you wish to split the media sources into separate items?", + "HeaderError": "Error", + "MessageChromecastConnectionError": "Your Chromecast receiver is unable to connect to your Emby Server. Please check their connections and try again.", + "MessagePleaseSelectOneItem": "Please select at least one item.", + "MessagePleaseSelectTwoItems": "Please select at least two items.", + "MessageTheSelectedItemsWillBeGrouped": "The selected videos will be grouped into one virtual item. Emby apps will automatically choose which version to play based on device and network performance. Are you sure you wish to continue?", + "HeaderResume": "Resume", + "HeaderMyViews": "My Views", + "HeaderLibraryFolders": "Media Folders", + "HeaderLatestMedia": "Latest Media", + "ButtonMoreItems": "More...", + "ButtonMore": "More", + "HeaderFavoriteMovies": "Favorite Movies", + "HeaderFavoriteShows": "Favorite Shows", + "HeaderFavoriteEpisodes": "Favorite Episodes", + "HeaderFavoriteGames": "Favorite Games", + "HeaderRatingsDownloads": "Rating / Downloads", + "HeaderConfirmProfileDeletion": "Confirm Profile Deletion", + "MessageConfirmProfileDeletion": "Are you sure you wish to delete this profile?", + "HeaderSelectServerCachePath": "Select Server Cache Path", + "HeaderSelectTranscodingPath": "Select Transcoding Temporary Path", + "HeaderSelectImagesByNamePath": "Select Images By Name Path", + "HeaderSelectMetadataPath": "Select Metadata Path", + "HeaderSelectServerCachePathHelp": "Browse or enter the path to use for server cache files. The folder must be writeable.", + "HeaderSelectTranscodingPathHelp": "Browse or enter the path to use for transcoding temporary files. The folder must be writeable.", + "HeaderSelectImagesByNamePathHelp": "Browse or enter the path to your items by name folder. The folder must be writeable.", + "HeaderSelectMetadataPathHelp": "Browse or enter the path you'd like to store metadata within. The folder must be writeable.", + "HeaderSelectChannelDownloadPath": "Select Channel Download Path", + "HeaderSelectChannelDownloadPathHelp": "Browse or enter the path to use for storing channel cache files. The folder must be writeable.", + "OptionNewCollection": "New...", + "ButtonAdd": "Add", + "ButtonRemove": "Remove", + "LabelChapterDownloaders": "Chapter downloaders:", + "LabelChapterDownloadersHelp": "Enable and rank your preferred chapter downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", + "HeaderFavoriteAlbums": "Favorite Albums", + "HeaderLatestChannelMedia": "Latest Channel Items", + "ButtonOrganizeFile": "Organize File", + "ButtonDeleteFile": "Delete File", + "HeaderOrganizeFile": "Organize File", + "HeaderDeleteFile": "Delete File", + "StatusSkipped": "Skipped", + "StatusFailed": "Failed", + "StatusSuccess": "Success", + "MessageFileWillBeDeleted": "The following file will be deleted:", + "MessageSureYouWishToProceed": "Are you sure you wish to proceed?", + "MessageDuplicatesWillBeDeleted": "In addition the following dupliates will be deleted:", + "MessageFollowingFileWillBeMovedFrom": "The following file will be moved from:", + "MessageDestinationTo": "to:", + "HeaderSelectWatchFolder": "Select Watch Folder", + "HeaderSelectWatchFolderHelp": "Browse or enter the path to your watch folder. The folder must be writeable.", + "OrganizePatternResult": "Result: {0}", + "AutoOrganizeError": "Error Organizing File", + "FileOrganizeManually": "Organize File", + "ErrorOrganizingFileWithErrorCode": "There was an error organizing the file. Error code: {0}.", + "HeaderRestart": "Restart", + "HeaderShutdown": "Shutdown", + "MessageConfirmRestart": "Are you sure you wish to restart Emby Server?", + "MessageConfirmShutdown": "Are you sure you wish to shutdown Emby Server?", + "ButtonUpdateNow": "Update Now", + "ValueItemCount": "{0} item", + "ValueItemCountPlural": "{0} items", + "NewVersionOfSomethingAvailable": "A new version of {0} is available!", + "VersionXIsAvailableForDownload": "Version {0} is now available for download.", + "LabelVersionNumber": "Version {0}", + "LabelPlayMethodTranscoding": "Transcoding", + "LabelPlayMethodDirectStream": "Direct Streaming", + "LabelPlayMethodDirectPlay": "Direct Playing", + "LabelAudioCodec": "Audio: {0}", + "LabelVideoCodec": "Video: {0}", + "LabelLocalAccessUrl": "Local access: {0}", + "LabelRemoteAccessUrl": "Remote access: {0}", + "LabelRunningOnPort": "Running on http port {0}.", + "LabelRunningOnPorts": "Running on http port {0}, and https port {1}.", + "HeaderLatestFromChannel": "Latest from {0}", + "ButtonDownload": "Download", + "LabelUnknownLanaguage": "Unknown language", + "HeaderCurrentSubtitles": "Current Subtitles", + "MessageDownloadQueued": "The download has been queued.", + "MessageAreYouSureDeleteSubtitles": "Are you sure you wish to delete this subtitle file?", + "ButtonRemoteControl": "Remote Control", + "HeaderLatestTvRecordings": "Latest Recordings", + "ButtonOk": "Ok", + "ButtonCancel": "Cancel", + "ButtonRefresh": "Refresh", + "LabelCurrentPath": "Current path:", + "HeaderSelectMediaPath": "Select Media Path", + "HeaderSelectPath": "Select Path", + "ButtonNetwork": "Network", + "MessageDirectoryPickerInstruction": "Network paths can be entered manually in the event the Network button fails to locate your devices. For example, {0} or {1}.", + "MessageDirectoryPickerBSDInstruction": "For BSD, you may need to configure storage within your FreeNAS Jail in order to allow Emby to access it.", + "MessageDirectoryPickerLinuxInstruction": "For Linux, you must grant the Emby system user at least read access to your storage locations.", + "HeaderMenu": "Menu", + "ButtonOpen": "Open", + "ButtonOpenInNewTab": "Open in new tab", + "ButtonShuffle": "Shuffle", + "ButtonInstantMix": "Instant mix", + "ButtonResume": "Resume", + "HeaderScenes": "Scenes", + "HeaderAudioTracks": "Audio Tracks", + "HeaderLibraries": "Libraries", + "LabelUnknownLanguage": "Unknown language", + "HeaderSubtitles": "Subtitles", + "HeaderVideoQuality": "Video Quality", + "MessageErrorPlayingVideo": "There was an error playing the video.", + "MessageEnsureOpenTuner": "Please ensure there is an open tuner availalble.", + "ButtonHome": "Home", + "ButtonDashboard": "Dashboard", + "ButtonReports": "Reports", + "ButtonMetadataManager": "Metadata Manager", + "HeaderTime": "Time", + "HeaderName": "Name", + "HeaderAlbum": "Album", + "HeaderAlbumArtist": "Album Artist", + "HeaderArtist": "Artist", + "LabelAddedOnDate": "Added {0}", + "ButtonStart": "Start", + "HeaderChannels": "Channels", + "HeaderMediaFolders": "Media Folders", + "HeaderBlockItemsWithNoRating": "Block content with no rating information:", + "OptionBlockOthers": "Others", + "OptionBlockTvShows": "TV Shows", + "OptionBlockTrailers": "Trailers", + "OptionBlockMusic": "Music", + "OptionBlockMovies": "Movies", + "OptionBlockBooks": "Books", + "OptionBlockGames": "Games", + "OptionBlockLiveTvPrograms": "Live TV Programs", + "OptionBlockLiveTvChannels": "Live TV Channels", + "OptionBlockChannelContent": "Internet Channel Content", + "ButtonRevoke": "Revoke", + "MessageConfirmRevokeApiKey": "Are you sure you wish to revoke this api key? The application's connection to Emby Server will be abruptly terminated.", + "HeaderConfirmRevokeApiKey": "Revoke Api Key", + "ValueContainer": "Container: {0}", + "ValueAudioCodec": "Audio Codec: {0}", + "ValueVideoCodec": "Video Codec: {0}", + "ValueCodec": "Codec: {0}", + "ValueConditions": "Conditions: {0}", + "LabelAll": "All", + "HeaderDeleteImage": "Delete Image", + "DeleteImageConfirmation": "Are you sure you wish to delete this image?", + "MessageFileNotFound": "File not found.", + "MessageFileReadError": "An error occurred reading this file.", + "ButtonNextPage": "Next Page", + "ButtonPreviousPage": "Previous Page", + "ButtonMoveLeft": "Move left", + "ButtonMoveRight": "Move right", + "ButtonBrowseOnlineImages": "Browse online images", + "HeaderDeleteItem": "Delete Item", + "ConfirmDeleteItem": "Deleting this item will delete it from both the file system and your media library. Are you sure you wish to continue?", + "HeaderDeleteItems": "Delete Items", + "ConfirmDeleteItems": "Deleting these items will delete them from both the file system and your media library. Are you sure you wish to continue?", + "MessagePleaseEnterNameOrId": "Please enter a name or an external Id.", + "MessageValueNotCorrect": "The value entered is not correct. Please try again.", + "MessageItemSaved": "Item saved.", + "MessagePleaseAcceptTermsOfServiceBeforeContinuing": "Please accept the terms of service before continuing.", + "OptionEnded": "Ended", + "OptionContinuing": "Continuing", + "OptionOff": "Off", + "OptionOn": "On", + "ButtonSettings": "Settings", + "ButtonUninstall": "Uninstall", + "HeaderEnabledFields": "Enabled Fields", + "HeaderEnabledFieldsHelp": "Uncheck a field to lock it and prevent it's data from being changed.", + "HeaderLiveTV": "Live TV", + "HeaderMediaFolders": "Media Folders", + "MissingLocalTrailer": "Missing local trailer.", + "MissingPrimaryImage": "Missing primary image.", + "MissingBackdropImage": "Missing backdrop image.", + "MissingLogoImage": "Missing logo image.", + "MissingEpisode": "Missing episode.", + "OptionScreenshots": "Screenshots", + "OptionBackdrops": "Backdrops", + "OptionImages": "Images", + "OptionKeywords": "Keywords", + "OptionTags": "Tags", + "OptionStudios": "Studios", + "OptionName": "Name", + "OptionOverview": "Overview", + "OptionGenres": "Genres", + "OptionParentalRating": "Parental Rating", + "OptionPeople": "People", + "OptionRuntime": "Runtime", + "OptionProductionLocations": "Production Locations", + "OptionBirthLocation": "Birth Location", + "LabelAllChannels": "All channels", + "LabelLiveProgram": "LIVE", + "LabelNewProgram": "NEW", + "LabelPremiereProgram": "PREMIERE", + "LabelHDProgram": "HD", + "HeaderChangeFolderType": "Change Content Type", + "HeaderChangeFolderTypeHelp": "To change the type, please remove and rebuild the library with the new type.", + "HeaderAlert": "Alert", + "MessagePleaseRestart": "Please restart to finish updating.", + "ButtonRestart": "Restart", + "ButtonRefresh": "Refresh", + "MessagePleaseRefreshPage": "Please refresh this page to receive new updates from Emby Server.", + "ButtonHide": "Hide", + "MessageSettingsSaved": "Settings saved.", + "ButtonSignOut": "Sign Out", + "ButtonMyProfile": "My Profile", + "ButtonMyPreferences": "My Preferences", + "MessageBrowserDoesNotSupportWebSockets": "This browser does not support web sockets. For a better experience, try a newer browser such as Chrome, Firefox, IE10+, Safari (iOS) or Opera.", + "LabelInstallingPackage": "Installing {0}", + "LabelPackageInstallCompleted": "{0} installation completed.", + "LabelPackageInstallFailed": "{0} installation failed.", + "LabelPackageInstallCancelled": "{0} installation cancelled.", + "TabServer": "Server", + "TabUsers": "Users", + "TabLibrary": "Library", + "TabMetadata": "Metadata", + "TabDLNA": "DLNA", + "TabLiveTV": "Live TV", + "TabAutoOrganize": "Auto-Organize", + "TabPlugins": "Plugins", + "TabAdvanced": "Advanced", + "TabHelp": "Help", + "TabScheduledTasks": "Scheduled Tasks", + "ButtonFullscreen": "Fullscreen", + "ButtonMute": "Mute", + "ButtonUnmute": "Unmute", + "ButtonAudioTracks": "Audio Tracks", + "ButtonSubtitles": "Subtitles", + "ButtonScenes": "Scenes", + "ButtonQuality": "Quality", + "HeaderNotifications": "Notifications", + "HeaderSelectPlayer": "Select Player", + "ButtonSelect": "Select", + "ButtonNew": "New", + "MessageInternetExplorerWebm": "For best results with Internet Explorer please install the WebM playback plugin.", + "HeaderVideoError": "Video Error", + "ButtonAddToPlaylist": "Add to playlist", + "HeaderAddToPlaylist": "Add to Playlist", + "LabelName": "Name:", + "ButtonSubmit": "Submit", + "LabelSelectPlaylist": "Playlist:", + "OptionNewPlaylist": "New playlist...", + "MessageAddedToPlaylistSuccess": "Ok", + "ButtonView": "View", + "ButtonViewSeriesRecording": "View series recording", + "ValueOriginalAirDate": "Original air date: {0}", + "ButtonRemoveFromPlaylist": "Remove from playlist", + "HeaderSpecials": "Specials", + "HeaderTrailers": "Trailers", + "HeaderAudio": "Audio", + "HeaderResolution": "Resolution", + "HeaderVideo": "Video", + "HeaderRuntime": "Runtime", + "HeaderCommunityRating": "Community rating", + "HeaderPasswordReset": "Password Reset", + "HeaderParentalRating": "Parental rating", + "HeaderReleaseDate": "Release date", + "HeaderDateAdded": "Date added", + "HeaderSeries": "Series", + "HeaderSeason": "Season", + "HeaderSeasonNumber": "Season number", + "HeaderNetwork": "Network", + "HeaderYear": "Year", + "HeaderGameSystem": "Game system", + "HeaderPlayers": "Players", + "HeaderEmbeddedImage": "Embedded image", + "HeaderTrack": "Track", + "HeaderDisc": "Disc", + "OptionMovies": "Movies", + "OptionCollections": "Collections", + "OptionSeries": "Series", + "OptionSeasons": "Seasons", + "OptionEpisodes": "Episodes", + "OptionGames": "Games", + "OptionGameSystems": "Game systems", + "OptionMusicArtists": "Music artists", + "OptionMusicAlbums": "Music albums", + "OptionMusicVideos": "Music videos", + "OptionSongs": "Songs", + "OptionHomeVideos": "Home videos", + "OptionBooks": "Books", + "OptionAdultVideos": "Adult videos", + "ButtonUp": "Up", + "ButtonDown": "Down", + "LabelMetadataReaders": "Metadata readers:", + "LabelMetadataReadersHelp": "Rank your preferred local metadata sources in order of priority. The first file found will be read.", + "LabelMetadataDownloaders": "Metadata downloaders:", + "LabelMetadataDownloadersHelp": "Enable and rank your preferred metadata downloaders in order of priority. Lower priority downloaders will only be used to fill in missing information.", + "LabelMetadataSavers": "Metadata savers:", + "LabelMetadataSaversHelp": "Choose the file formats to save your metadata to.", + "LabelImageFetchers": "Image fetchers:", + "LabelImageFetchersHelp": "Enable and rank your preferred image fetchers in order of priority.", + "ButtonQueueAllFromHere": "Queue all from here", + "ButtonPlayAllFromHere": "Play all from here", + "LabelDynamicExternalId": "{0} Id:", + "HeaderIdentify": "Identify Item", + "PersonTypePerson": "Person", + "LabelTitleDisplayOrder": "Title display order:", + "OptionSortName": "Sort name", + "OptionReleaseDate": "Release date", + "LabelSeasonNumber": "Season number:", + "LabelDiscNumber": "Disc number", + "LabelParentNumber": "Parent number", + "LabelEpisodeNumber": "Episode number:", + "LabelTrackNumber": "Track number:", + "LabelNumber": "Number:", + "LabelReleaseDate": "Release date:", + "LabelEndDate": "End date:", + "LabelYear": "Year:", + "LabelDateOfBirth": "Date of birth:", + "LabelBirthYear": "Birth year:", + "LabelBirthDate": "Birth date:", + "LabelDeathDate": "Death date:", + "HeaderRemoveMediaLocation": "Remove Media Location", + "MessageConfirmRemoveMediaLocation": "Are you sure you wish to remove this location?", + "HeaderRenameMediaFolder": "Rename Media Folder", + "LabelNewName": "New name:", + "HeaderAddMediaFolder": "Add Media Folder", + "HeaderAddMediaFolderHelp": "Name (Movies, Music, TV, etc):", + "HeaderRemoveMediaFolder": "Remove Media Folder", + "MessageTheFollowingLocationWillBeRemovedFromLibrary": "The following media locations will be removed from your library:", + "MessageAreYouSureYouWishToRemoveMediaFolder": "Are you sure you wish to remove this media folder?", + "ButtonRename": "Rename", + "ButtonChangeContentType": "Change content type", + "ButtonRemove": "Remove", + "HeaderMediaLocations": "Media Locations", + "LabelContentTypeValue": "Content type: {0}", + "LabelPathSubstitutionHelp": "Optional: Path substitution can map server paths to network shares that clients can access for direct playback.", + "FolderTypeUnset": "Unset (mixed content)", + "FolderTypeMovies": "Movies", + "FolderTypeMusic": "Music", + "FolderTypeAdultVideos": "Adult videos", + "FolderTypePhotos": "Photos", + "FolderTypeMusicVideos": "Music videos", + "FolderTypeHomeVideos": "Home videos", + "FolderTypeGames": "Games", + "FolderTypeBooks": "Books", + "FolderTypeTvShows": "TV", + "TabMovies": "Movies", + "TabSeries": "Series", + "TabEpisodes": "Episodes", + "TabTrailers": "Trailers", + "TabGames": "Games", + "TabAlbums": "Albums", + "TabSongs": "Songs", + "TabMusicVideos": "Music Videos", + "BirthPlaceValue": "Birth place: {0}", + "DeathDateValue": "Died: {0}", + "BirthDateValue": "Born: {0}", + "HeaderLatestReviews": "Latest Reviews", + "HeaderPluginInstallation": "Plugin Installation", + "MessageAlreadyInstalled": "This version is already installed.", + "ValueReviewCount": "{0} Reviews", + "MessageYouHaveVersionInstalled": "You currently have version {0} installed.", + "MessageTrialExpired": "The trial period for this feature has expired", + "MessageTrialWillExpireIn": "The trial period for this feature will expire in {0} day(s)", + "MessageInstallPluginFromApp": "This plugin must be installed from with in the app you intend to use it in.", + "ValuePriceUSD": "Price: {0} (USD)", + "MessageFeatureIncludedWithSupporter": "You are registered for this feature, and will be able to continue using it with an active Emby Premiere subscription.", + "MessageChangeRecurringPlanConfirm": "After completing this transaction you will need to cancel your previous recurring donation from within your PayPal account. Thank you for supporting Emby.", + "ButtonDelete": "Delete", + "HeaderEmbyAccountAdded": "Emby Account Added", + "MessageEmbyAccountAdded": "The Emby account has been added to this user.", + "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.", + "HeaderEmbyAccountRemoved": "Emby Account Removed", + "MessageEmbyAccontRemoved": "The Emby account has been removed from this user.", + "TooltipLinkedToEmbyConnect": "Linked to Emby Connect", + "HeaderUnrated": "Unrated", + "ValueDiscNumber": "Disc {0}", + "HeaderUnknownDate": "Unknown Date", + "HeaderUnknownYear": "Unknown Year", + "ValueMinutes": "{0} min", + "ButtonPlayExternalPlayer": "Play with external player", + "HeaderSelectExternalPlayer": "Select External Player", + "HeaderExternalPlayerPlayback": "External Player Playback", + "ButtonImDone": "I'm Done", + "OptionWatched": "Watched", + "OptionUnwatched": "Unwatched", + "ExternalPlayerPlaystateOptionsHelp": "Specify how you would like to resume playing this video next time.", + "LabelMarkAs": "Mark as:", + "OptionInProgress": "In-Progress", + "LabelResumePoint": "Resume point:", + "ValueOneMovie": "1 movie", + "ValueMovieCount": "{0} movies", + "ValueOneTrailer": "1 trailer", + "ValueTrailerCount": "{0} trailers", + "ValueOneSeries": "1 series", + "ValueSeriesCount": "{0} series", + "ValueOneEpisode": "1 episode", + "ValueEpisodeCount": "{0} episodes", + "ValueOneGame": "1 game", + "ValueGameCount": "{0} games", + "ValueOneAlbum": "1 album", + "ValueAlbumCount": "{0} albums", + "ValueOneSong": "1 song", + "ValueSongCount": "{0} songs", + "ValueOneMusicVideo": "1 music video", + "ValueMusicVideoCount": "{0} music videos", + "HeaderOffline": "Offline", + "HeaderUnaired": "Unaired", + "HeaderMissing": "Missing", + "ButtonWebsite": "Website", + "TooltipFavorite": "Favorite", + "TooltipLike": "Like", + "TooltipDislike": "Dislike", + "TooltipPlayed": "Played", + "ValueSeriesYearToPresent": "{0}-Present", + "ValueAwards": "Awards: {0}", + "ValueBudget": "Budget: {0}", + "ValueRevenue": "Revenue: {0}", + "ValuePremiered": "Premiered {0}", + "ValuePremieres": "Premieres {0}", + "ValueStudio": "Studio: {0}", + "ValueStudios": "Studios: {0}", + "ValueStatus": "Status: {0}", + "ValueSpecialEpisodeName": "Special - {0}", + "LabelLimit": "Limit:", + "ValueLinks": "Links: {0}", + "HeaderPeople": "People", + "HeaderCastAndCrew": "Cast & Crew", + "ValueArtist": "Artist: {0}", + "ValueArtists": "Artists: {0}", + "HeaderTags": "Tags", + "MediaInfoCameraMake": "Camera make", + "MediaInfoCameraModel": "Camera model", + "MediaInfoAltitude": "Altitude", + "MediaInfoAperture": "Aperture", + "MediaInfoExposureTime": "Exposure time", + "MediaInfoFocalLength": "Focal length", + "MediaInfoOrientation": "Orientation", + "MediaInfoIsoSpeedRating": "Iso speed rating", + "MediaInfoLatitude": "Latitude", + "MediaInfoLongitude": "Longitude", + "MediaInfoShutterSpeed": "Shutter speed", + "MediaInfoSoftware": "Software", + "HeaderIfYouLikeCheckTheseOut": "If you like {0}, check these out...", + "HeaderPlotKeywords": "Plot Keywords", + "HeaderMovies": "Movies", + "HeaderSeries": "Series", + "HeaderAlbums": "Albums", + "HeaderGames": "Games", + "HeaderBooks": "Books", + "HeaderEpisodes": "Episodes", + "HeaderSeasons": "Seasons", + "HeaderTracks": "Tracks", + "HeaderItems": "Items", + "HeaderOtherItems": "Other Items", + "ButtonFullReview": "Full review", + "ValueAsRole": "as {0}", + "ValueGuestStar": "Guest star", + "MediaInfoSize": "Size", + "MediaInfoPath": "Path", + "MediaInfoFile": "File", + "MediaInfoFormat": "Format", + "MediaInfoContainer": "Container", + "MediaInfoDefault": "Default", + "MediaInfoForced": "Forced", + "MediaInfoExternal": "External", + "MediaInfoTimestamp": "Timestamp", + "MediaInfoPixelFormat": "Pixel format", + "MediaInfoBitDepth": "Bit depth", + "MediaInfoSampleRate": "Sample rate", + "MediaInfoBitrate": "Bitrate", + "MediaInfoChannels": "Channels", + "MediaInfoLayout": "Layout", + "MediaInfoLanguage": "Language", + "MediaInfoCodec": "Codec", + "MediaInfoCodecTag": "Codec tag", + "MediaInfoProfile": "Profile", + "MediaInfoLevel": "Level", + "MediaInfoAspectRatio": "Aspect ratio", + "MediaInfoResolution": "Resolution", + "MediaInfoAnamorphic": "Anamorphic", + "MediaInfoInterlaced": "Interlaced", + "MediaInfoFramerate": "Framerate", + "MediaInfoStreamTypeAudio": "Audio", + "MediaInfoStreamTypeData": "Data", + "MediaInfoStreamTypeVideo": "Video", + "MediaInfoStreamTypeSubtitle": "Subtitle", + "MediaInfoStreamTypeEmbeddedImage": "Embedded Image", + "MediaInfoRefFrames": "Ref frames", + "TabPlayback": "Playback", + "TabNotifications": "Notifications", + "TabExpert": "Expert", + "HeaderSelectCustomIntrosPath": "Select Custom Intros Path", + "HeaderRateAndReview": "Rate and Review", + "HeaderThankYou": "Thank You", + "MessageThankYouForYourReview": "Thank you for your review.", + "LabelYourRating": "Your rating:", + "LabelFullReview": "Full review:", + "LabelShortRatingDescription": "Short rating summary:", + "OptionIRecommendThisItem": "I recommend this item", + "WebClientTourContent": "View your recently added media, next episodes, and more. The green circles indicate how many unplayed items you have.", + "WebClientTourMovies": "Play movies, trailers and more from any device with a web browser", + "WebClientTourMouseOver": "Hold the mouse over any poster for quick access to important information", + "WebClientTourTapHold": "Tap and hold or right click any poster for a context menu", + "WebClientTourMetadataManager": "Click edit to open the metadata manager", + "WebClientTourPlaylists": "Easily create playlists and instant mixes, and play them on any device", + "WebClientTourCollections": "Create movie collections to group box sets together", + "WebClientTourUserPreferences1": "User preferences allow you to customize the way your library is presented in all of your Emby apps", + "WebClientTourUserPreferences2": "Configure your audio and subtitle language settings once, for every Emby app", + "WebClientTourUserPreferences3": "Design the web client home page to your liking", + "WebClientTourUserPreferences4": "Configure backdrops, theme songs and external players", + "WebClientTourMobile1": "The web client works great on smartphones and tablets...", + "WebClientTourMobile2": "and easily controls other devices and Emby apps", + "WebClientTourMySync": "Sync your personal media to your devices for offline viewing.", + "MessageEnjoyYourStay": "Enjoy your stay", + "DashboardTourDashboard": "The server dashboard allows you to monitor your server and your users. You'll always know who is doing what and where they are.", + "DashboardTourHelp": "In-app help provides easy buttons to open wiki pages relating to the on-screen content.", + "DashboardTourUsers": "Easily create user accounts for your friends and family, each with their own permissions, library access, parental controls and more.", + "DashboardTourCinemaMode": "Cinema mode brings the theater experience straight to your living room with the ability to play trailers and custom intros before the main feature.", + "DashboardTourChapters": "Enable chapter image generation for your videos for a more pleasing presentation while viewing.", + "DashboardTourSubtitles": "Automatically download subtitles for your videos in any language.", + "DashboardTourPlugins": "Install plugins such as internet video channels, live tv, metadata scanners, and more.", + "DashboardTourNotifications": "Automatically send notifications of server events to your mobile device, email and more.", + "DashboardTourScheduledTasks": "Easily manage long running operations with scheduled tasks. Decide when they run, and how often.", + "DashboardTourMobile": "The Emby Server dashboard works great on smartphones and tablets. Manage your server from the palm of your hand anytime, anywhere.", + "DashboardTourSync": "Sync your personal media to your devices for offline viewing.", + "MessageRefreshQueued": "Refresh queued", + "TabDevices": "Devices", + "TabExtras": "Extras", + "HeaderUploadImage": "Upload Image", + "DeviceLastUsedByUserName": "Last used by {0}", + "HeaderDeleteDevice": "Delete Device", + "DeleteDeviceConfirmation": "Are you sure you wish to delete this device? It will reappear the next time a user signs in with it.", + "LabelEnableCameraUploadFor": "Enable camera upload for:", + "HeaderSelectUploadPath": "Select Upload Path", + "LabelEnableCameraUploadForHelp": "Uploads will occur automatically in the background when signed into Emby.", + "ErrorMessageStartHourGreaterThanEnd": "End time must be greater than the start time.", + "ButtonLibraryAccess": "Library access", + "ButtonParentalControl": "Parental control", + "HeaderInvitationSent": "Invitation Sent", + "MessageInvitationSentToUser": "An email has been sent to {0}, inviting them to accept your sharing invitation.", + "MessageInvitationSentToNewUser": "An email has been sent to {0} inviting them to sign up with Emby.", + "HeaderConnectionFailure": "Connection Failure", + "MessageUnableToConnectToServer": "We're unable to connect to the selected server right now. Please ensure it is running and try again.", + "ButtonSelectServer": "Select Server", + "MessagePluginConfigurationRequiresLocalAccess": "To configure this plugin please sign in to your local server directly.", + "MessageLoggedOutParentalControl": "Access is currently restricted. Please try again later.", + "DefaultErrorMessage": "There was an error processing the request. Please try again later.", + "ButtonAccept": "Accept", + "ButtonReject": "Reject", + "HeaderForgotPassword": "Forgot Password", + "MessageContactAdminToResetPassword": "Please contact your system administrator to reset your password.", + "MessageForgotPasswordInNetworkRequired": "Please try again within your home network to initiate the password reset process.", + "MessageForgotPasswordFileCreated": "The following file has been created on your server and contains instructions on how to proceed:", + "MessageForgotPasswordFileExpiration": "The reset pin will expire at {0}.", + "MessageInvalidForgotPasswordPin": "An invalid or expired pin was entered. Please try again.", + "MessagePasswordResetForUsers": "Passwords have been removed for the following users. To login, sign in with a blank password.", + "HeaderInviteGuest": "Invite Guest", + "ButtonLinkMyEmbyAccount": "Link my account now", + "MessageConnectAccountRequiredToInviteGuest": "In order to invite guests you need to first link your Emby account to this server.", + "ButtonSync": "Sync", + "SyncMedia": "Sync Media", + "HeaderCancelSyncJob": "Cancel Sync", + "CancelSyncJobConfirmation": "Cancelling the sync job will remove synced media from the device during the next sync process. Are you sure you wish to proceed?", + "TabSync": "Sync", + "MessagePleaseSelectDeviceToSyncTo": "Please select a device to sync to.", + "MessageSyncJobCreated": "Sync job created.", + "LabelSyncTo": "Sync to:", + "LabelSyncJobName": "Sync job name:", + "LabelQuality": "Quality:", + "HeaderSettings": "Settings", + "OptionAutomaticallySyncNewContent": "Automatically sync new content", + "OptionAutomaticallySyncNewContentHelp": "New content added to will be automatically synced to the device.", + "OptionSyncUnwatchedVideosOnly": "Sync unwatched videos only", + "OptionSyncUnwatchedVideosOnlyHelp": "Only unwatched videos will be synced, and videos will be removed from the device as they are watched.", + "LabelItemLimit": "Item limit:", + "LabelItemLimitHelp": "Optional. Set a limit to the number of items that will be synced.", + "MessageBookPluginRequired": "Requires installation of the Bookshelf plugin", + "MessageGamePluginRequired": "Requires installation of the GameBrowser plugin", + "MessageUnsetContentHelp": "Content will be displayed as plain folders. For best results use the metadata manager to set the content types of sub-folders.", + "SyncJobItemStatusQueued": "Queued", + "SyncJobItemStatusConverting": "Converting", + "SyncJobItemStatusTransferring": "Transferring", + "SyncJobItemStatusSynced": "Synced", + "SyncJobItemStatusFailed": "Failed", + "SyncJobItemStatusRemovedFromDevice": "Removed from device", + "SyncJobItemStatusCancelled": "Cancelled", + "LabelProfile": "Profile:", + "LabelBitrateMbps": "Bitrate (Mbps):", + "EmbyIntroDownloadMessage": "To download and install Emby Server visit {0}.", + "ButtonNewServer": "New Server", + "ButtonSignInWithConnect": "Sign in with Emby Connect", + "HeaderNewServer": "New Server", + "MyDevice": "My Device", + "ButtonRemote": "Remote", + "TabInfo": "Info", + "TabCast": "Cast", + "TabScenes": "Scenes", + "HeaderUnlockApp": "Unlock App", + "HeaderUnlockSync": "Unlock Emby Sync", + "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.", + "MessageToValidateSupporter": "If you have an active Emby Premiere subscription, simply sign into the app once using your Wifi connection within your home network.", + "MessagePaymentServicesUnavailable": "Payment services are currently unavailable. Please try again later.", + "MessagePleaseSignInLocalNetwork": "Before proceeding, please ensure that you're connected to your local network using a Wifi or LAN connection.", + "ButtonUnlockWithPurchase": "Unlock with Purchase", + "ButtonUnlockPrice": "Unlock {0}", + "MessageLiveTvGuideRequiresUnlock": "The Live TV Guide is currently limited to {0} channels. Click the unlock button to learn how to enjoy the full experience.", + "OptionEnableFullscreen": "Enable Fullscreen", + "ButtonServer": "Server", + "HeaderAdmin": "Admin", + "HeaderLibrary": "Library", + "HeaderMedia": "Media", + "ButtonInbox": "Inbox", + "HeaderAdvanced": "Advanced", + "HeaderGroupVersions": "Group Versions", + "HeaderSaySomethingLike": "Say Something Like...", + "ButtonTryAgain": "Try Again", + "HeaderYouSaid": "You Said...", + "MessageWeDidntRecognizeCommand": "We're sorry, we didn't recognize that command.", + "MessageIfYouBlockedVoice": "If you denied voice access to the app you'll need to reconfigure before trying again.", + "MessageNoItemsFound": "No items found.", + "ButtonManageServer": "Manage Server", + "ButtonEditSubtitles": "Edit subtitles", + "ButtonPreferences": "Preferences", + "ButtonViewArtist": "View artist", + "ButtonViewAlbum": "View album", + "ButtonEditImages": "Edit images", + "ErrorMessagePasswordNotMatchConfirm": "The password and password confirmation must match.", + "ErrorMessageUsernameInUse": "The username is already in use. Please choose a new name and try again.", + "ErrorMessageEmailInUse": "The email address is already in use. Please enter a new email address and try again, or use the forgot password feature.", + "MessageThankYouForConnectSignUp": "Thank you for signing up for Emby Connect. An email will be sent to your address with instructions on how to confirm your new account. Please confirm the account and then return here to sign in.", + "HeaderShare": "Share", + "ButtonShareHelp": "Share a web page containing media information with social media. Media files are never shared publicly.", + "ButtonShare": "Share", + "HeaderConfirm": "Confirm", + "ButtonAdvancedRefresh": "Advanced Refresh", + "MessageConfirmDeleteTunerDevice": "Are you sure you wish to delete this device?", + "MessageConfirmDeleteGuideProvider": "Are you sure you wish to delete this guide provider?", + "HeaderDeleteProvider": "Delete Provider", + "HeaderAddProvider": "Add Provider", + "ErrorAddingTunerDevice": "There was an error adding the tuner device. Please ensure it is accessible and try again.", + "ErrorSavingTvProvider": "There was an error saving the TV provider. Please ensure it is accessible and try again.", + "ErrorGettingTvLineups": "There was an error downloading tv lineups. Please ensure your information is correct and try again.", + "MessageCreateAccountAt": "Create an account at {0}", + "ErrorPleaseSelectLineup": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.", + "HeaderTryEmbyPremiere": "Try Emby Premiere", + "ButtonBecomeSupporter": "Get Emby Premiere", + "ButtonClosePlayVideo": "Close and play my media", + "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.", + "OptionEnableDisplayMirroring": "Enable display mirroring", + "HeaderSyncRequiresSupporterMembership": "Sync requires an active Emby Premiere subscription.", + "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Emby Premiere subscription.", + "ErrorValidatingSupporterInfo": "There was an error validating your Emby Premiere information. Please try again later.", + "HeaderSync": "Sync", + "LabelLocalSyncStatusValue": "Status: {0}", + "MessageSyncStarted": "Sync started", + "OptionPoster": "Poster", + "OptionPosterCard": "Poster card", + "OptionTimeline": "Timeline", + "OptionList": "List", + "OptionThumb": "Thumb", + "OptionThumbCard": "Thumb card", + "OptionBanner": "Banner", + "NoSlideshowContentFound": "No slideshow images were found.", + "OptionPhotoSlideshow": "Photo slideshow", + "OptionBackdropSlideshow": "Backdrop slideshow", + "HeaderTopPlugins": "Top Plugins", + "ButtonRecord": "Record", + "ButtonOther": "Other", + "HeaderSortBy": "Sort By", + "HeaderSortOrder": "Sort Order", + "OptionAscending": "Ascending", + "OptionDescending": "Descending", + "OptionNameSort": "Name", + "OptionTvdbRating": "Tvdb Rating", + "OptionPremiereDate": "Premiere Date", + "OptionImdbRating": "IMDb Rating", + "OptionDatePlayed": "Date Played", + "OptionDateAdded": "Date Added", + "OptionPlayCount": "Play Count", + "ButtonDisconnect": "Disconnect", + "OptionAlbumArtist": "Album Artist", + "OptionArtist": "Artist", + "OptionAlbum": "Album", + "OptionTrackName": "Track Name", + "OptionCommunityRating": "Community Rating", + "ButtonSort": "Sort", + "ButtonMenu": "Menu", + "OptionDefaultSort": "Default", + "ButtonFilter": "Filter", + "OptionCriticRating": "Critic Rating", + "OptionVideoBitrate": "Video Bitrate", + "OptionMetascore": "Metascore", + "OptionRevenue": "Revenue", + "OptionBudget": "Budget", + "ForAdditionalLiveTvOptions": "For additional Live TV providers, click on the External Services tab to see the available options.", + "ButtonGuide": "Guide", + "ButtonRecordedTv": "Recorded TV", + "HeaderDisconnectFromPlayer": "Disconnect from Player", + "ConfirmEndPlayerSession": "Would you like to close Emby on the device?", + "ButtonYes": "Yes", + "AddUser": "Add User", + "ButtonNo": "No", + "ButtonRestorePreviousPurchase": "Restore Purchase", + "AlreadyPaid": "Already Paid?", + "AlreadyPaidHelp1": "If you already paid to install an older version of Media Browser for Android, you don't need to pay again in order to activate this app. Click OK to send us an email at {0} and we'll get it activated for you.", + "AlreadyPaidHelp2": "Got Emby Premiere? Just cancel this dialog, sign into the app from within your home WIFI network, and it will be unlocked automatically.", + "ButtonForYou": "For You", + "ButtonLibrary": "Library", + "ButtonSearch": "Search", + "ButtonNowPlaying": "Now Playing", + "ButtonViewNewApp": "View new app", + "HeaderEmbyForAndroidHasMoved": "Emby for Android has moved!", + "MessageEmbyForAndroidHasMoved": "Emby for Android has moved to a new home in the app store. Please consider checking out the new app. You may continue to use this app for as long as you wish.", + "HeaderNextUp": "Next Up", + "HeaderLatestMovies": "Latest Movies", + "HeaderLatestEpisodes": "Latest Episodes", + "EmbyPremiereMonthly": "Emby Premiere Monthly", + "EmbyPremiereMonthlyWithPrice": "Emby Premiere Monthly {0}", + "HeaderEmailAddress": "E-Mail Address", + "TextPleaseEnterYourEmailAddressForSubscription": "Please enter your e-mail address.", + "LoginDisclaimer": "Emby is designed to help you manage your personal media library, such as home videos and photos. Please see our terms of use. The use of any Emby software constitutes acceptance of these terms.", + "TermsOfUse": "Terms of use", + "HeaderTryMultiSelect": "Try Multi-Select", + "TryMultiSelectMessage": "To edit multiple media items, just click and hold any poster and select the items you want to manage. Try it!", + "NumLocationsValue": "{0} folders", + "ButtonAddMediaLibrary": "Add Media Library", + "ButtonManageFolders": "Manage folders", + "HeaderTryDragAndDrop": "Try Drag and Drop", + "TryDragAndDropMessage": "To re-arrange playlist items, just drag and drop. Try it!", + "HeaderTryMicrosoftEdge": "Try Microsoft Edge", + "MessageTryMicrosoftEdge": "For a better experience on Windows 10, try the new Microsoft Edge Browser.", + "HeaderTryModernBrowser": "Try a Modern Web Browser", + "MessageTryModernBrowser": "For a better experience on Windows, try a modern web browser such as Google Chrome, Firefox, or Opera.", + "ErrorAddingListingsToSchedulesDirect": "There was an error adding the lineup to your Schedules Direct account. Schedules Direct only allows a limited number of lineups per account. You may need to log into the Schedules Direct website and remove others listings from your account before proceeeding.", + "PleaseAddAtLeastOneFolder": "Please add at least one folder to this library by clicking the Add button.", + "ErrorAddingMediaPathToVirtualFolder": "There was an error adding the media path. Please ensure the path is valid and the Emby Server process has access to that location.", + "ErrorRemovingEmbyConnectAccount": "There was an error removing the Emby Connect account. 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}.", + "ErrorAddingEmbyConnectAccount2": "Please ensure the Emby account has been activated by following the instructions in the email sent after creating the account. If you did not receive this email then please send an email to {0} from the email address used with the Emby account.", + "HeaderFavoriteArtists": "Favorite Artists", + "HeaderFavoriteSongs": "Favorite Songs", + "HeaderConfirmPluginInstallation": "Confirm Plugin Installation", + "PleaseConfirmPluginInstallation": "Please click OK to confirm you've read the above and wish to proceed with the plugin installation.", + "MessagePluginInstallDisclaimer": "Plugins built by Emby community members are a great way to enhance your Emby experience with additional features and benefits. Before installing, please be aware of the effects they may have on your Emby Server, such as longer library scans, additional background processing, and decreased system stability.", + "ButtonPlayOneMinute": "Play one minute", + "ThankYouForTryingEnjoyOneMinute": "Please enjoy one minute of playback. Thank you for trying Emby.", + "HeaderTryPlayback": "Try Playback", + "HeaderBenefitsEmbyPremiere": "Benefits of Emby Premiere", + "MobileSyncFeatureDescription": "Sync your media to your smart phones and tablets for easy offline access.", + "CoverArtFeatureDescription": "Cover Art creates fun covers and other treatments to help you personalize your media images.", + "HeaderMobileSync": "Mobile Sync", + "HeaderCloudSync": "Cloud Sync", + "CloudSyncFeatureDescription": "Sync your media to the cloud for easy backup, archiving, and converting.", + "HeaderFreeApps": "Free Emby Apps", + "FreeAppsFeatureDescription": "Enjoy free access to select Emby apps for your devices.", + "HeaderCinemaMode": "Cinema Mode", + "CinemaModeFeatureDescription": "Cinema Mode gives you the true cinema experience with trailers and custom intros before the feature.", + "CoverArt": "Cover Art", + "ButtonOff": "Off", + "TitleHardwareAcceleration": "Hardware Acceleration", + "HardwareAccelerationWarning": "Enabling hardware acceleration may cause instability in some environments. If you have difficulty playing video after enabling this, you'll need to change the setting back to Auto.", + "HeaderSelectCodecIntrosPath": "Select Codec Intros Path", + "ButtonLocalRefresh": "Local refresh", + "ButtonAddMissingData": "Add missing data only", + "ButtonFullRefresh": "Full refresh", + "ValueExample": "1:00 PM", + "ButtonGotIt": "Got It" } diff --git a/dashboard-ui/strings/html/sl-SI.json b/dashboard-ui/strings/sl-SI.json similarity index 100% rename from dashboard-ui/strings/html/sl-SI.json rename to dashboard-ui/strings/sl-SI.json diff --git a/dashboard-ui/strings/html/sv.json b/dashboard-ui/strings/sv.json similarity index 100% rename from dashboard-ui/strings/html/sv.json rename to dashboard-ui/strings/sv.json diff --git a/dashboard-ui/strings/html/tr.json b/dashboard-ui/strings/tr.json similarity index 100% rename from dashboard-ui/strings/html/tr.json rename to dashboard-ui/strings/tr.json diff --git a/dashboard-ui/strings/html/uk.json b/dashboard-ui/strings/uk.json similarity index 100% rename from dashboard-ui/strings/html/uk.json rename to dashboard-ui/strings/uk.json diff --git a/dashboard-ui/strings/html/vi.json b/dashboard-ui/strings/vi.json similarity index 100% rename from dashboard-ui/strings/html/vi.json rename to dashboard-ui/strings/vi.json diff --git a/dashboard-ui/strings/html/zh-CN.json b/dashboard-ui/strings/zh-CN.json similarity index 100% rename from dashboard-ui/strings/html/zh-CN.json rename to dashboard-ui/strings/zh-CN.json diff --git a/dashboard-ui/strings/html/zh-HK.json b/dashboard-ui/strings/zh-HK.json similarity index 100% rename from dashboard-ui/strings/html/zh-HK.json rename to dashboard-ui/strings/zh-HK.json diff --git a/dashboard-ui/strings/html/zh-TW.json b/dashboard-ui/strings/zh-TW.json similarity index 100% rename from dashboard-ui/strings/html/zh-TW.json rename to dashboard-ui/strings/zh-TW.json