diff --git a/dashboard-ui/cordova/android/newapp.js b/dashboard-ui/cordova/android/newapp.js
new file mode 100644
index 0000000000..e0d36fa4f9
--- /dev/null
+++ b/dashboard-ui/cordova/android/newapp.js
@@ -0,0 +1,75 @@
+(function () {
+
+ function showInfo(url) {
+
+ var html = '';
+ html += '
';
+ html += '
';
+
+
+ html += '
';
+
+ html += '
';
+ html += '
';
+
+ $(document.body).append(html);
+ }
+
+ function showNewAppIfReady() {
+
+ var platform = (window.device ? device.platform : '') || '';
+ platform = platform.toLowerCase();
+ var oldApp = platform.indexOf('amazon') == -1 ? 'com.mb.android.google' : 'com.mb.android.amazon';
+
+ HttpClient.send({
+ type: "GET",
+ url: "https://mb3admin.com/admin/service/appstore/newAppInfo?oldApp=" + oldApp,
+ dataType: 'json'
+
+ }).done(function (result) {
+
+ // Overly defensive, but don't want any failures here
+ result = result || {};
+
+ if (result.newAppActive) {
+ showInfo(result.newAppUrl);
+ }
+
+ }).fail(function () {
+ Logger.log('showNewAppIfReady failed');
+ });
+ }
+
+ function showInfoIfNeeded() {
+
+ var key = 'lastNewAppShow';
+ var lastShow = parseInt(appStorage.getItem(key) || '0');
+
+ if ((new Date().getTime() - lastShow) > 86400000) {
+ showNewAppIfReady();
+ appStorage.setItem(key, new Date().getTime().toString());
+ } else {
+ //showNewAppIfReady();
+ }
+ }
+
+ setTimeout(showInfoIfNeeded, 1000);
+ document.addEventListener("resume", showInfoIfNeeded, false);
+
+})();
\ No newline at end of file
diff --git a/dashboard-ui/cordova/ios/backgroundfetch.js b/dashboard-ui/cordova/ios/backgroundfetch.js
index a48fa26079..824239b20d 100644
--- a/dashboard-ui/cordova/ios/backgroundfetch.js
+++ b/dashboard-ui/cordova/ios/backgroundfetch.js
@@ -1,5 +1,7 @@
(function () {
+ var lastStart = 0;
+
function onDeviceReady() {
var fetcher = window.BackgroundFetch;
@@ -25,9 +27,8 @@
fetcher.finish(); // <-- N.B. You MUST called #finish so that native-side can signal completion of the background-thread to the os.
}
- function onBackgroundFetch() {
-
- Logger.log('BackgroundFetch initiated');
+ function startSync(uploadPhotos) {
+ lastStart = new Date().getTime();
require(['localsync'], function () {
@@ -37,16 +38,42 @@
}
var syncOptions = {
- uploadPhotos: false
+ uploadPhotos: uploadPhotos
};
LocalSync.sync(syncOptions).done(onSyncFinish).fail(onSyncFail);
});
}
+ function onBackgroundFetch() {
+
+ Logger.log('BackgroundFetch initiated');
+ startSync(false);
+ }
+
function onBackgroundFetchFailed() {
Logger.log('- BackgroundFetch failed');
}
+ var syncInterval = 1800000;
+
+ function restartInterval() {
+ if (LocalSync.isSupported) {
+ setInterval(function () {
+
+ LocalSync.startSync();
+
+ }, syncInterval);
+
+ if (lastStart > 0 && (now - lastStart) >= syncInterval) {
+ LocalSync.startSync();
+ }
+ }
+ //LocalSync.startSync();
+ }
+
+ Dashboard.ready(restartInterval);
+ document.addEventListener("resume", restartInterval, false);
+
onDeviceReady();
})();
\ No newline at end of file
diff --git a/dashboard-ui/cordova/ios/tabbar.js b/dashboard-ui/cordova/ios/tabbar.js
index 9f7d91cbcd..60edc9f15f 100644
--- a/dashboard-ui/cordova/ios/tabbar.js
+++ b/dashboard-ui/cordova/ios/tabbar.js
@@ -86,7 +86,7 @@
showTabs();
ignoreNextSelection = true;
- TabBar.selectItem('Featured');
+ TabBar.selectItem('Library');
}
function showTabs() {
diff --git a/dashboard-ui/cordova/registrationservices.js b/dashboard-ui/cordova/registrationservices.js
index d8e8a141bc..c26cae9eac 100644
--- a/dashboard-ui/cordova/registrationservices.js
+++ b/dashboard-ui/cordova/registrationservices.js
@@ -121,7 +121,6 @@
function getInAppPurchaseElement(info) {
- require(['paperbuttonstyle']);
cancelInAppPurchase();
var html = '';
diff --git a/dashboard-ui/scripts/localsync.js b/dashboard-ui/scripts/localsync.js
index a1c8909f97..e3e027ee71 100644
--- a/dashboard-ui/scripts/localsync.js
+++ b/dashboard-ui/scripts/localsync.js
@@ -1,7 +1,6 @@
(function () {
var syncPromise;
- var lastStart = 0;
window.LocalSync = {
@@ -19,8 +18,6 @@
require(['multiserversync'], function () {
- lastStart = new Date().getTime();
-
options = options || {};
if ($.browser.safari) {
@@ -49,24 +46,4 @@
return 'Idle';
}
};
-
- var syncInterval = 1800000;
-
- function restartInterval() {
- if (LocalSync.isSupported) {
- setInterval(function () {
-
- //LocalSync.startSync();
-
- }, syncInterval);
-
- if (lastStart > 0 && (now - lastStart) >= syncInterval) {
- //LocalSync.startSync();
- }
- }
- //LocalSync.startSync();
- }
-
- Dashboard.ready(restartInterval);
- document.addEventListener("resume", restartInterval, false);
})();
\ No newline at end of file
diff --git a/dashboard-ui/scripts/site.js b/dashboard-ui/scripts/site.js
index faa7f00e8c..da2d1c315e 100644
--- a/dashboard-ui/scripts/site.js
+++ b/dashboard-ui/scripts/site.js
@@ -2301,6 +2301,9 @@ var AppInfo = {};
deps.push('cordova/ios/tabbar');
deps.push('localsync');
}
+ if (AppInfo.isNativeApp && $.browser.android) {
+ deps.push('cordova/android/newapp');
+ }
require(deps, function () {
diff --git a/dashboard-ui/strings/html/ar.json b/dashboard-ui/strings/html/ar.json
index a33523e832..9492cd6fbe 100644
--- a/dashboard-ui/strings/html/ar.json
+++ b/dashboard-ui/strings/html/ar.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u062e\u0631\u0648\u062c",
"LabelVisitCommunity": "\u0632\u064a\u0627\u0631\u0629 \u0627\u0644\u0645\u062c\u062a\u0645\u0639",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "\u0642\u064a\u0627\u0633\u0649",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "\u062a\u0635\u0641\u062d \u0627\u0644\u0645\u0643\u062a\u0628\u0629",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "\u0641\u062a\u062d \u0645\u062a\u0635\u062d\u0641 \u0627\u0644\u0645\u0643\u062a\u0628\u0629",
"LabelRestartServer": "\u0627\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u062e\u0627\u062f\u0645",
"LabelShowLogWindow": "\u0639\u0631\u0636 \u0646\u0627\u0641\u0630\u0629 \u0627\u0644\u0633\u062c\u0644",
"LabelPrevious": "\u0627\u0644\u0633\u0627\u0628\u0642",
"LabelFinish": "\u0627\u0646\u062a\u0647\u0627\u0621",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "\u0627\u0644\u062a\u0627\u0644\u0649",
"LabelYoureDone": "\u062a\u0645 \u0627\u0644\u0627\u0646\u062a\u0647\u0627\u0621!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "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)",
"ThisWizardWillGuideYou": "\u0645\u0631\u0634\u062f \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0633\u064a\u0633\u0627\u0639\u062f\u0643 \u062e\u0644\u0627\u0644 \u062e\u0637\u0648\u0627\u062a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a. \u0644\u0644\u0628\u062f\u0621, \u0627\u0644\u0631\u062c\u0627\u0621 \u0627\u062e\u062a\u064a\u0627\u0631 \u0644\u063a\u062a\u0643 \u0627\u0644\u0645\u0641\u0636\u0644\u0629.",
"TellUsAboutYourself": "\u0627\u062e\u0628\u0631\u0646\u0627 \u0639\u0646 \u0646\u0641\u0633\u0643",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "\u0627\u0633\u0645\u0643 \u0627\u0644\u0627\u0648\u0644:",
"MoreUsersCanBeAddedLater": "\u0627\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0633\u062a\u062e\u062f\u0645\u064a\u0646 \u064a\u0645\u0643\u0646 \u0627\u0636\u0627\u0641\u062a\u0647\u0645 \u0644\u0627\u062d\u0642\u0627 \u0645\u0646 \u0644\u0648\u062d\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "\u0645\u0648\u0627\u0641\u0642",
"ButtonCancel": "\u0627\u0644\u063a\u0627\u0621",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "\u0627\u0639\u062f\u0627\u062f \u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637",
"ButtonAddMediaFolder": "\u0627\u0636\u0627\u0641\u0629 \u0645\u062c\u0644\u062f \u0644\u0644\u0648\u0633\u0627\u0626\u0637",
"LabelFolderType": "\u0646\u0648\u0639 \u0627\u0644\u0645\u062c\u0644\u062f:",
"ReferToMediaLibraryWiki": "\u0627\u0644\u0631\u062c\u0648\u0639 \u0627\u0644\u0649 wiki \u0644\u0645\u0643\u062a\u0628\u0629 \u0627\u0644\u0648\u0633\u0627\u0626\u0637",
"LabelCountry": "\u0627\u0644\u0628\u0644\u062f:",
"LabelLanguage": "\u0627\u0644\u0644\u063a\u0629:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a:",
"LabelSaveLocalMetadata": "\u062d\u0641\u0638 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637",
"LabelSaveLocalMetadataHelp": "\u0628\u062d\u0642\u0638 \u0627\u0644\u0627\u0639\u0645\u0627\u0644 \u0627\u0644\u0641\u0646\u064a\u0629 \u0648\u0648\u0627\u0635\u0641\u0627\u062a \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a \u0645\u0628\u0627\u0634\u0631\u0629 \u0641\u0649 \u0645\u062c\u0644\u062f\u0627\u062a \u0627\u0644\u0648\u0633\u0627\u0626\u0637 \u0633\u064a\u0633\u0647\u0644 \u0639\u0644\u064a\u0643 \u0627\u0644\u0648\u0635\u0648\u0644 \u0648\u0639\u0645\u0644 \u0627\u0644\u062a\u0639\u062f\u064a\u0644\u0627\u0627\u062a \u0639\u0644\u064a\u0647\u0627.",
@@ -130,37 +47,16 @@
"TabPreferences": "\u062a\u0641\u0636\u064a\u0644\u0627\u062a",
"TabPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631",
"TabLibraryAccess": "\u0627\u0644\u062f\u062e\u0648\u0644 \u0627\u0644\u0649 \u0627\u0644\u0645\u0643\u062a\u0628\u0629",
- "TabAccess": "Access",
"TabImage": "\u0635\u0648\u0631\u0629",
"TabProfile": "\u0633\u062c\u0644",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u062a\u0634\u063a\u064a\u0644 \u0627\u0644\u0641\u064a\u062f\u064a\u0648",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u0635\u0648\u062a:",
"LabelSubtitleLanguagePreference": "\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0645\u0641\u0636\u0644\u0629 \u0644\u0644\u062a\u0631\u062c\u0645\u0629:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "\u0633\u062c\u0644 (\u0646\u0628\u0630\u0629)",
"TabSecurity": "\u062d\u0645\u0627\u064a\u0629",
"ButtonAddUser": "\u0627\u0636\u0627\u0641\u0629 \u0645\u0633\u062a\u062e\u062f\u0645",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "\u062a\u062e\u0632\u064a\u0646",
"ButtonResetPassword": "\u0645\u0633\u062d \u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631",
"LabelNewPassword": "\u0643\u0644\u0645\u0629 \u0627\u0644\u0633\u0631 \u062c\u062f\u064a\u062f\u0629:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u0627\u0644\u062d\u062f \u0627\u0644\u0627\u0642\u0635\u0649 \u0644\u0644\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u0633\u0645\u0648\u062d \u0628\u0647 \u0644\u0644\u0631\u0642\u0627\u0628\u0629 \u0627\u0644\u0627\u0628\u0648\u064a\u0629:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "\u0627\u0632\u0627\u0644\u0629 \u0635\u0648\u0631\u0629",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "\u062a\u062d\u0645\u064a\u0644",
"HeaderUploadNewImage": "\u062a\u062d\u0645\u064a\u0644 \u0635\u0648\u0631\u0629 \u062c\u062f\u064a\u062f\u0629",
"LabelDropImageHere": "\u0627\u0633\u0642\u0627\u0637 \u0627\u0644\u0635\u0648\u0631\u0629 \u0647\u0646\u0627",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u0644\u0627 \u0634\u0649\u0621 \u0647\u0646\u0627.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "\u0645\u0642\u062a\u0631\u062d",
- "TabSuggestions": "Suggestions",
"TabLatest": "\u0627\u0644\u0627\u062e\u064a\u0631",
"TabUpcoming": "\u0627\u0644\u0642\u0627\u062f\u0645",
"TabShows": "\u0627\u0644\u0645\u0633\u0644\u0633\u0644\u0627\u062a",
@@ -217,6 +110,7 @@
"OptionAscending": "\u062a\u0635\u0627\u0639\u062f\u0649",
"OptionDescending": "\u062a\u0646\u0627\u0632\u0644\u0649",
"OptionRuntime": "\u0632\u0645\u0646 \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "\u0639\u062f\u062f \u0627\u0644\u062a\u0634\u063a\u064a\u0644",
"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",
@@ -226,16 +120,10 @@
"OptionTrackName": "\u0627\u0633\u0645 \u0627\u0644\u0627\u063a\u0646\u064a\u0629",
"OptionCommunityRating": "\u062a\u0635\u0646\u064a\u0641 \u0627\u0644\u0645\u062c\u062a\u0645\u0639",
"OptionNameSort": "\u0627\u0633\u0645",
- "OptionFolderSort": "Folders",
"OptionBudget": "\u0645\u064a\u0632\u0627\u0646\u064a\u0629",
"OptionRevenue": "\u0627\u064a\u0631\u0627\u062f\u0627\u062a",
"OptionPoster": "\u0627\u0644\u0645\u0644\u0635\u0642",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "\u0627\u0637\u0627\u0631 \u0632\u0645\u0646\u0649",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"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",
"OptionResumable": "\u062a\u0643\u0645\u0644\u0629",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "\u062c\u062f\u0648\u0644\u0629 \u0627\u0644\u0645\u0647\u0627\u0645",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "\u0627\u0644\u062c\u0645\u0639\u0629",
"OptionSaturday": "\u0627\u0644\u0633\u0628\u062a",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "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)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/bg-BG.json b/dashboard-ui/strings/html/bg-BG.json
index d2473dd71f..bd52632102 100644
--- a/dashboard-ui/strings/html/bg-BG.json
+++ b/dashboard-ui/strings/html/bg-BG.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u0418\u0437\u0445\u043e\u0434",
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438 \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u043e",
- "LabelApiDocumentation": "API \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
- "LabelDeveloperResources": "\u0420\u0435\u0441\u0443\u0440\u0441\u0438 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438",
"LabelBrowseLibrary": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430",
- "LabelConfigureServer": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 Emby",
"LabelOpenLibraryViewer": "\u041e\u0442\u0432\u043e\u0440\u0438 \u043f\u0440\u0435\u0433\u043b\u0435\u0434 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430",
"LabelRestartServer": "\u0420\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u0439 \u0441\u044a\u0440\u0432\u044a\u0440\u0430",
"LabelShowLogWindow": "\u041f\u043e\u043a\u0430\u0436\u0438 \u043b\u043e\u0433\u043e\u0432\u0438\u044f \u043f\u0440\u043e\u0437\u043e\u0440\u0435\u0446",
"LabelPrevious": "\u041f\u0440\u0435\u0434\u0438\u0448\u0435\u043d",
"LabelFinish": "\u041a\u0440\u0430\u0439",
- "FolderTypeMixed": "\u0421\u043c\u0435\u0441\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
"LabelNext": "\u0421\u043b\u0435\u0434\u0432\u0430\u0449",
"LabelYoureDone": "\u0413\u043e\u0442\u043e\u0432\u0438 \u0441\u0442\u0435!",
- "ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u043a\u043e\u043b\u0435\u043a\u0446\u0438\u044f\u0442\u0430",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "\u0414\u043e\u0431\u0440\u0435 \u0434\u043e\u0448\u043b\u0438 \u0432 Emby!",
+ "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)",
"ThisWizardWillGuideYou": "\u0422\u043e\u0437\u0438 \u043c\u0430\u0433\u044c\u043e\u0441\u043d\u0438\u043a \u0449\u0435 \u0432\u0438 \u043d\u0430\u043f\u044a\u0442\u0441\u0442\u0432\u0430 \u043f\u0440\u0435\u0437 \u043f\u0440\u043e\u0446\u0435\u0441\u0430 \u043d\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f. \u0417\u0430 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u043d\u0435\u0442\u0435, \u043c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u043e\u0442 \u0432\u0430\u0441 \u0435\u0437\u0438\u043a.",
"TellUsAboutYourself": "\u0420\u0430\u0437\u043a\u0430\u0436\u0435\u0442\u0435 \u0437\u0430 \u0441\u0435\u0431\u0435 \u0441\u0438",
- "ButtonQuickStartGuide": "\u0420\u044a\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u0437\u0430 \u0431\u044a\u0440\u0437\u043e \u0437\u0430\u043f\u043e\u0447\u0432\u0430\u043d\u0435",
"LabelYourFirstName": "\u041f\u044a\u0440\u0432\u043e\u0442\u043e \u0432\u0438 \u0438\u043c\u0435:",
"MoreUsersCanBeAddedLater": "\u041f\u043e\u0432\u0435\u0447\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0438 \u043f\u043e-\u043a\u044a\u0441\u043d\u043e \u043e\u0442 \u0433\u043b\u0430\u0432\u043d\u0438\u044f \u043f\u0430\u043d\u0435\u043b.",
"UserProfilesIntro": "Emby \u0432\u043a\u043b\u044e\u0447\u0432\u0430 \u0432\u0433\u0440\u0430\u0434\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043f\u0440\u043e\u0444\u0438\u043b\u0438, \u043a\u043e\u0438\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430\u0442 \u043d\u0430 \u0432\u0441\u0435\u043a\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0442\u0435\u043b \u0434\u0430 \u0438\u043c\u0430 \u0441\u0432\u043e\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u0430\u0442\u0430, \u043c\u044f\u0441\u0442\u043e \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u0438 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "\u0418\u0437\u0432\u043b\u0438\u0447\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0437\u0430\u0433\u043b\u0430\u0432\u043d\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0449\u0435 \u043f\u043e\u0437\u0432\u043e\u043b\u0438 \u043d\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0438\u0442\u0435 \u0434\u0430 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0442 \u0433\u0440\u0430\u0444\u0438\u0447\u043d\u0438 \u043c\u0435\u043d\u044e\u0442\u0430 \u043f\u0440\u0438 \u0438\u0437\u0431\u043e\u0440 \u043d\u0430 \u0441\u0446\u0435\u043d\u0430. \u041f\u0440\u043e\u0446\u0435\u0441\u044a\u0442 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0431\u044a\u0434\u0435 \u0431\u0430\u0432\u0435\u043d, CPU-\u0438\u043d\u0442\u0435\u043d\u0437\u0438\u0432\u0435\u043d \u0438 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442\u0430 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e. \u0420\u0430\u0431\u043e\u0442\u0438 \u043a\u0430\u0442\u043e \u043d\u043e\u0449\u043d\u0430 \u043f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0430 \u0437\u0430\u0434\u0430\u0447\u0430, \u0432\u044a\u043f\u0440\u0435\u043a\u0438 \u0447\u0435 \u0442\u043e\u0432\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430 \u0432 \u0437\u0430\u0434\u0430\u0447\u0438 \u043f\u043e \u0440\u0430\u0437\u043f\u0438\u0441\u0430\u043d\u0438\u0435. \u041d\u0435 \u0441\u0435 \u043f\u0440\u0435\u043f\u043e\u0440\u044a\u0447\u0432\u0430 \u0442\u0430\u0437\u0438 \u0437\u0430\u0434\u0430\u0447\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u044f\u0432\u0430 \u043f\u043e \u0432\u0440\u0435\u043c\u0435 \u043d\u0430 \u043f\u0438\u043a\u043e\u0432\u0438\u0442\u0435 \u0447\u0430\u0441\u043e\u0432\u0435 \u043d\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435.",
"LabelEnableAutomaticPortMapping": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043d\u0430 \u043f\u043e\u0440\u0442\u043e\u0432\u0435\u0442\u0435",
"LabelEnableAutomaticPortMappingHelp": "UPnP \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0432\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u043d\u0430 \u0440\u0443\u0442\u0435\u0440\u0430 \u0437\u0430 \u043b\u0435\u0441\u0435\u043d \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u0434\u043e\u0441\u0442\u044a\u043f. \u0422\u043e\u0432\u0430 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0438 \u0441 \u043d\u044f\u043a\u043e\u0438 \u0440\u0443\u0442\u0435\u0440\u0438.",
- "HeaderTermsOfService": "Emby \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435",
- "MessagePleaseAcceptTermsOfService": "\u041c\u043e\u043b\u044f \u043f\u0440\u0438\u0435\u043c\u0435\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u0438 \u0434\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442, \u043f\u0440\u0435\u0434\u0438 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435.",
- "OptionIAcceptTermsOfService": "\u041f\u0440\u0438\u0435\u043c\u0430\u043c \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435",
- "ButtonPrivacyPolicy": "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442",
- "ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435",
- "HeaderDeveloperOptions": "\u041e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438",
- "OptionEnableWebClientResponseCache": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043a\u0435\u0448\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0435 \u043d\u0430 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0438\u0442\u0435",
- "OptionDisableForDevelopmentHelp": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u0435\u0437\u0438 \u0441\u043f\u043e\u0440\u0435\u0434 \u043d\u0443\u0436\u0434\u0438\u0442\u0435 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043d\u0430 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0438.",
- "OptionEnableWebClientResourceMinification": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u0441\u043c\u0430\u043b\u044f\u0432\u0430\u043d\u0435(\u043c\u0438\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f) \u043d\u0430 \u0440\u0435\u0441\u0443\u0440\u0441\u0438\u0442\u0435 \u043d\u0430 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0430",
- "LabelDashboardSourcePath": "\u0413\u043b\u0430\u0432\u0435\u043d \u043f\u044a\u0442 \u043a\u044a\u043c \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0430",
- "LabelDashboardSourcePathHelp": "\u0410\u043a\u043e \u043f\u0443\u0441\u043a\u0430\u0442\u0435 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 \u043e\u0442 \u0438\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434, \u043f\u043e\u0441\u043e\u0447\u0435\u0442\u0435 \u043f\u044a\u0442\u044f \u043a\u044a\u043c \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u043e\u0442\u043e \u0442\u0430\u0431\u043b\u043e. \u0412\u0441\u0438\u0447\u043a\u0438 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0438 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0431\u0441\u043b\u0443\u0436\u0432\u0430\u043d\u0438 \u043e\u0442 \u0442\u0430\u043c.",
- "ButtonConvertMedia": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043c\u0435\u0434\u0438\u044f\u0442\u0430",
- "ButtonOrganize": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u0439",
- "LinkedToEmbyConnect": "\u0421\u0432\u044a\u0440\u0437\u0430\u043d \u043a\u044a\u043c Emby Connect",
- "HeaderSupporterBenefits": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u043e\u043b\u0437\u0438",
- "HeaderAddUser": "+ \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
- "LabelAddConnectSupporterHelp": "\u0417\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043a\u043e\u0439\u0442\u043e \u043d\u0435 \u0435 \u0432 \u043b\u0438\u0441\u0442\u0438\u0442\u0435, \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u043f\u044a\u0440\u0432\u043e \u0434\u0430 \u0437\u0430\u043a\u0430\u0447\u0438\u0442\u0435 \u0442\u0435\u0445\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b \u043a\u044a\u043c Emby Connect \u043e\u0442 \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430.",
- "LabelPinCode": "\u041f\u0418\u041d \u043a\u043e\u0434:",
- "OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u0438\u0439 \u0433\u043b\u0435\u0434\u0430\u043d\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u043c\u0435\u0434\u0438\u044f",
- "HeaderSync": "Sync",
"ButtonOk": "\u041e\u043a",
"ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438",
- "ButtonExit": "\u0418\u0437\u0445\u043e\u0434",
- "ButtonNew": "\u041d\u043e\u0432",
- "HeaderTV": "TV",
- "HeaderAudio": "\u0410\u0443\u0434\u0438\u043e",
- "HeaderVideo": "\u0412\u0438\u0434\u0435\u043e",
- "HeaderPaths": "\u041f\u044a\u0442\u0438\u0449\u0430",
- "CategorySync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437.",
- "TabPlaylist": "\u041f\u043b\u0435\u0439\u043b\u0438\u0441\u0442",
- "HeaderEasyPinCode": "\u041b\u0435\u0441\u0435\u043d \u041f\u0418\u041d \u041a\u043e\u0434",
- "HeaderGrownupsOnly": "\u0421\u0430\u043c\u043e \u0437\u0430 \u043f\u043e\u0440\u0430\u0441\u043d\u0430\u043b\u0438!",
- "DividerOr": "-- \u0438\u043b\u0438 --",
- "HeaderInstalledServices": "\u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0443\u0441\u043b\u0443\u0433\u0438",
- "HeaderAvailableServices": "\u041d\u0430\u043b\u0438\u0447\u043d\u0438 \u0443\u0441\u043b\u0443\u0433\u0438",
- "MessageNoServicesInstalled": "\u041d\u044f\u043c\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0443\u0441\u043b\u0443\u0433\u0438.",
- "HeaderToAccessPleaseEnterEasyPinCode": "\u0417\u0430 \u0434\u043e\u0441\u0442\u044a\u043f, \u043c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u0432\u043e\u044f \u043b\u0435\u0441\u0435\u043d \u041f\u0418\u041d \u043a\u043e\u0434",
- "KidsModeAdultInstruction": "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0438\u043a\u043e\u043d\u043a\u0430\u0442\u0430 \u0437\u0430 \u0437\u0430\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u0434\u043e\u043b\u0443 \u0432 \u0434\u044f\u0441\u043d\u043e \u0437\u0430 \u0434\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0442\u0435 \u0438\u043b\u0438 \u043d\u0430\u043f\u0443\u0441\u043d\u0435\u0442\u0435 \u0434\u0435\u0442\u0441\u043a\u0438 \u0440\u0435\u0436\u0438\u043c. \u0429\u0435 \u0431\u044a\u0434\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c \u0432\u0430\u0448\u0438\u044f\u0442 \u041f\u0418\u041d \u043a\u043e\u0434.",
- "ButtonConfigurePinCode": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 \u041f\u0418\u041d \u043a\u043e\u0434",
- "HeaderAdultsReadHere": "\u0412\u044a\u0437\u0440\u0430\u0441\u0442\u043d\u0438, \u043f\u0440\u043e\u0447\u0435\u0442\u0435\u0442\u0435 \u0442\u0443\u043a!",
- "RegisterWithPayPal": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0439 \u0441 PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "\u041d\u0430\u0441\u043b\u0430\u0434\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0431\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u0430 14 \u0434\u043d\u0435\u0432\u043d\u0430 \u043f\u0440\u043e\u0431\u0430",
- "LabelSyncTempPath": "\u0412\u0440\u0435\u043c\u0435\u043d\u0435\u043d \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u044a\u0442:",
- "LabelSyncTempPathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u0430 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f.",
- "LabelCustomCertificatePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430:",
- "LabelCustomCertificatePathHelp": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0435\u043d .pfx \u0444\u0430\u0439\u043b. \u0410\u043a\u043e \u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u043d\u0430\u0442, \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0449\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.",
- "TitleNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f",
- "ButtonDonateWithPayPal": "\u041d\u0430\u043f\u0440\u0430\u0432\u0438 \u0434\u0430\u0440\u0435\u043d\u0438\u0435 \u0441 PayPal",
- "OptionDetectArchiveFilesAsMedia": "\u0420\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0440\u0445\u0438\u0432\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435",
- "OptionDetectArchiveFilesAsMediaHelp": "\u0410\u043a\u043e \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u043e, \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u0440\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u044f .rar \u0438 .zip \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435.",
- "LabelEnterConnectUserName": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0438\u043b\u0438 email:",
- "LabelEnterConnectUserNameHelp": "\u0422\u043e\u0432\u0430 \u0435 \u0438\u043c\u0435\u0442\u043e \u043d\u0430 \u0432\u0430\u0448\u0438\u044f\u0442 Emby online \u0430\u043a\u0430\u0443\u043d\u0442 \u0438\u043b\u0438 email.",
- "LabelEnableEnhancedMovies": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0444\u0438\u043b\u043c\u043e\u0432\u0438 \u0434\u0438\u0441\u043f\u043b\u0435\u0438",
- "LabelEnableEnhancedMoviesHelp": "\u041f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044f, \u0444\u0438\u043b\u043c\u0438\u0442\u0435 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0430\u043f\u043a\u0438, \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0449\u0438 \u0442\u0440\u0435\u0439\u043b\u044a\u0440\u0438, \u0435\u043a\u0441\u0442\u0440\u0438, \u0430\u043a\u0442\u044c\u043e\u0440\u0438\u0442\u0435, \u0435\u043a\u0438\u043f\u0430, \u043a\u0430\u043a\u0442\u043e \u0438 \u0434\u0440\u0443\u0433\u043e \u0441\u0432\u044a\u0440\u0437\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.",
- "HeaderSyncJobInfo": "\u0421\u0438\u043d\u0445\u0440. \u0417\u0430\u0434\u0430\u0447\u0430",
- "OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0438\u0437\u0434\u0430\u0432\u0430\u043d\u0435",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "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",
- "FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u0438",
- "LabelContentType": "\u0422\u0438\u043f \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e:",
- "TitleScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438",
"HeaderSetupLibrary": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u043c\u0435\u0434\u0438\u0439\u043d\u0430\u0442\u0430 \u0441\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430",
"ButtonAddMediaFolder": "\u0414\u043e\u0431\u0430\u0432\u0438 \u043c\u0435\u0434\u0438\u0439\u043d\u0430 \u043f\u0430\u043f\u043a\u0430",
"LabelFolderType": "\u0422\u0438\u043f \u043d\u0430 \u043f\u0430\u043f\u043a\u0430\u0442\u0430:",
"ReferToMediaLibraryWiki": "\u0414\u043e\u043f\u0438\u0442\u0430\u0439\u0442\u0435 \u0441\u0435 \u0434\u043e wiki \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430\u0442\u0430 \u043d\u0430 \u043c\u0435\u0434\u0438\u0439\u043d\u0430\u0442\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430",
"LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:",
"LabelLanguage": "\u0415\u0437\u0438\u043a:",
- "LabelTimeLimitHours": "\u0412\u0440\u0435\u043c\u0435\u0432\u0438 \u043b\u0438\u043c\u0438\u0442 (\u0447\u0430\u0441\u043e\u0432\u0435):",
- "ButtonJoinTheDevelopmentTeam": "\u041f\u0440\u0438\u0441\u044a\u0435\u0434\u0438\u043d\u0435\u0442\u0435 \u0441\u0435 \u043a\u044a\u043c \u043e\u0442\u0431\u043e\u0440\u0430 \u043d\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438\u0442\u0435",
"HeaderPreferredMetadataLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430:",
"LabelSaveLocalMetadata": "\u0417\u0430\u043f\u043e\u043c\u043d\u0438 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0432 \u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f\u0442\u0430",
"LabelSaveLocalMetadataHelp": "\u0417\u0430\u043f\u043e\u043c\u043d\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u0438\u0437\u043a\u0443\u0441\u0442\u0432\u043e \u0438 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0434\u0438\u0440\u0435\u043a\u0442\u043d\u043e \u0432 \u043c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u043f\u0430\u043f\u043a\u0438 \u0449\u0435 \u0433\u0438 \u0441\u043b\u043e\u0436\u0438 \u043d\u0430 \u043c\u044f\u0441\u0442\u043e, \u043a\u044a\u0434\u0435\u0442\u043e \u043b\u0435\u0441\u043d\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u043d\u0438.",
@@ -130,37 +47,16 @@
"TabPreferences": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f",
"TabPassword": "\u041f\u0430\u0440\u043e\u043b\u0430",
"TabLibraryAccess": "\u0414\u043e\u0441\u044a\u043f \u0434\u043e \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430",
- "TabAccess": "\u0414\u043e\u0441\u0442\u044a\u043f",
"TabImage": "\u041a\u0430\u0440\u0442\u0438\u043d\u0430",
"TabProfile": "\u041f\u0440\u043e\u0444\u0438\u043b",
- "TabMetadata": "\u041c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f",
- "TabImages": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
- "TabNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f",
- "TabCollectionTitles": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
- "HeaderDeviceAccess": "\u0414\u043e\u0441\u0442\u044a\u043f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0442\u0430",
- "OptionEnableAccessFromAllDevices": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u043e\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
- "OptionEnableAccessToAllChannels": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u0430\u043d\u0430\u043b\u0438",
- "OptionEnableAccessToAllLibraries": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438",
- "DeviceAccessHelp": "\u0422\u043e\u0432\u0430 \u0441\u0435 \u043e\u0442\u043d\u0430\u0441\u044f \u0441\u0430\u043c\u043e \u0437\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043e\u0438\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u0435\u043d\u0438 \u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u043f\u043e\u043f\u0440\u0435\u0447\u0438 \u043d\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u043e\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440. \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0449\u0435 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u0438\u043c \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0442\u0443\u043a.",
"LabelDisplayMissingEpisodesWithinSeasons": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u043b\u0438\u043f\u0441\u0432\u0430\u0449\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0432 \u0441\u0435\u0437\u043e\u043d\u0438\u0442\u0435",
"LabelUnairedMissingEpisodesWithinSeasons": "\u041f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u043d\u0435\u0438\u0437\u043b\u044a\u0447\u0435\u043d\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438 \u0432 \u0441\u0435\u0437\u043e\u043d\u0438\u0442\u0435",
"HeaderVideoPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u0432\u0438\u0434\u0435\u043e",
- "HeaderPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e",
"LabelAudioLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e:",
"LabelSubtitleLanguagePreference": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438\u0442\u0435:",
- "OptionDefaultSubtitles": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
- "OptionOnlyForcedSubtitles": "\u0421\u0430\u043c\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
- "OptionAlwaysPlaySubtitles": "\u0412\u0438\u043d\u0430\u0433\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
- "OptionNoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
- "OptionDefaultSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449\u0438 \u043d\u0430 \u0435\u0437\u0438\u043a\u043e\u0432\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438, \u043a\u043e\u0433\u0430\u0442\u043e \u0430\u0443\u0434\u0438\u043e\u0442\u043e \u0435 \u043d\u0430 \u0434\u0440\u0443\u0433 \u0435\u0437\u0438\u043a.",
- "OptionOnlyForcedSubtitlesHelp": "\u0421\u0430\u043c\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438",
- "OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449\u0438 \u043d\u0430 \u0435\u0437\u0438\u043a\u043e\u0432\u043e\u0442\u043e \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u0435, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u0435\u0437\u0438\u043a\u0430 \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e.",
- "OptionNoSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
"TabProfiles": "\u041f\u0440\u043e\u0444\u0438\u043b\u0438",
"TabSecurity": "\u0417\u0430\u0449\u0438\u0442\u0430",
"ButtonAddUser": "\u0414\u043e\u0431\u0430\u0432\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
- "ButtonAddLocalUser": "\u0414\u043e\u0431\u0430\u0432\u0438 \u043b\u043e\u043a\u0430\u043b\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
- "ButtonInviteUser": "\u041f\u043e\u043a\u0430\u043d\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
"ButtonSave": "\u0417\u0430\u043f\u043e\u043c\u043d\u0438",
"ButtonResetPassword": "\u041d\u0443\u043b\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430",
"LabelNewPassword": "\u041d\u043e\u0432\u0430 \u043f\u0430\u0440\u043e\u043b\u0430:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u043e \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0440\u0435\u0439\u0442\u0438\u043d\u0433:",
"MaxParentalRatingHelp": "\u0421\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u0441 \u043f\u043e-\u0432\u0438\u0441\u043e\u043a \u0440\u0435\u0439\u0442\u0438\u043d\u0433 \u0449\u0435 \u0431\u044a\u0434\u0435 \u0441\u043a\u0440\u0438\u0442\u043e \u043e\u0442 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b.",
"LibraryAccessHelp": "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u043f\u0430\u043f\u043a\u0438, \u043a\u043e\u0438\u0442\u043e \u0434\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0438\u0442\u0435 \u0441 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0438\u0442\u0435 \u0449\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u043f\u0430\u043f\u043a\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u043c\u0435\u043d\u0438\u0434\u0436\u044a\u0440\u0430 \u043d\u0430 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f.",
- "ChannelAccessHelp": "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0434\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0438\u0442\u0435 \u0441 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0438\u0442\u0435 \u0449\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u0430\u043d\u0430\u043b\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u043c\u0435\u043d\u0438\u0434\u0436\u044a\u0440\u0430 \u043d\u0430 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f.",
"ButtonDeleteImage": "\u0418\u0437\u0442\u0440\u0438\u0439 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
- "LabelSelectUsers": "\u0418\u0437\u0431\u0435\u0440\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438:",
"ButtonUpload": "\u041a\u0430\u0447\u0438:",
"HeaderUploadNewImage": "\u041a\u0430\u0447\u0438 \u041d\u043e\u0432\u043e \u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435:",
"LabelDropImageHere": "\u041f\u0443\u0441\u043d\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0442\u0443\u043a",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u0422\u0443\u043a \u043d\u044f\u043c\u0430 \u043d\u0438\u0449\u043e.",
"MessagePleaseEnsureInternetMetadata": "\u041c\u043e\u043b\u044f, \u0443\u0432\u0435\u0440\u0435\u0442\u0435 \u0441\u0435 \u0447\u0435 \u0441\u0432\u0430\u043b\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043e\u0442 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e.",
"TabSuggested": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
- "TabSuggestions": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
"TabLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438",
"TabUpcoming": "\u041f\u0440\u0435\u0434\u0441\u0442\u043e\u044f\u0449\u0438",
"TabShows": "\u041f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f",
@@ -217,6 +110,7 @@
"OptionAscending": "\u0412\u044a\u0437\u0445\u043e\u0434\u044f\u0449",
"OptionDescending": "\u041d\u0438\u0437\u0445\u043e\u0434\u044f\u0449",
"OptionRuntime": "\u0412\u0440\u0435\u043c\u0435\u0442\u0440\u0430\u0435\u043d\u0435",
+ "OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u043d\u0430 \u0438\u0437\u0434\u0430\u0432\u0430\u043d\u0435",
"OptionPlayCount": "\u0411\u0440\u043e\u0439 \u043f\u0443\u0441\u043a\u0430\u043d\u0438\u044f",
"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",
@@ -226,16 +120,10 @@
"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",
"OptionNameSort": "Name",
- "OptionFolderSort": "\u041f\u0430\u043f\u043a\u0438",
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"OptionRevenue": "\u041f\u0440\u0438\u0445\u043e\u0434\u0438",
"OptionPoster": "\u041f\u043b\u0430\u043a\u0430\u0442",
- "OptionPosterCard": "\u041a\u0430\u0440\u0442\u0430 \u043f\u043b\u0430\u043a\u0430\u0442",
- "OptionBackdrop": "\u0424\u043e\u043d",
"OptionTimeline": "\u0413\u0440\u0430\u0444\u0438\u043a",
- "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",
"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",
"OptionResumable": "\u0412\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u044f\u0435\u043c\u043e\u0441\u0442",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438 \u0417\u0430\u0434\u0430\u0447\u0438",
"TabMyPlugins": "\u041c\u043e\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438",
"TabCatalog": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0438 \u0412\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
"HeaderNowPlaying": "\u0421\u0435\u0433\u0430 \u0412\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u043e:",
"HeaderLatestAlbums": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0410\u043b\u0431\u0443\u043c\u0438",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "\u0421\u043a\u043e\u0440\u043e \u041f\u0443\u0441\u043a\u0430\u043d\u0438",
"HeaderFrequentlyPlayed": "\u0427\u0435\u0441\u0442\u043e \u041f\u0443\u0441\u043a\u0430\u043d\u0438",
"DevBuildWarning": "\u0412\u0435\u0440\u0441\u0438\u0438\u0442\u0435 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438 \u0441\u0430 \u043d\u0430\u0439-\u043d\u043e\u0432\u043e\u0442\u043e. \u0422\u0435 \u0441\u0435 \u0432\u044a\u0437\u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u0442 \u0447\u0435\u0441\u0442\u043e, \u043d\u043e \u043d\u0435 \u0441\u0435 \u0442\u0435\u0441\u0442\u0432\u0430\u0442. \u041c\u043e\u0436\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e \u0434\u0430 \u0441\u0435 \u0447\u0443\u043f\u0438 \u0438 \u0446\u0435\u043b\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0438\u0437\u043e\u0431\u0449\u043e \u0434\u0430 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u044f\u0442.",
+ "OptionThumb": "\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430",
+ "OptionBanner": "\u0411\u0430\u043d\u0435\u0440",
"LabelVideoType": "\u0422\u0438\u043f \u043d\u0430 \u0432\u0438\u0434\u0435\u043e\u0442\u043e:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "\u0424\u0443\u043d\u043a\u0446\u0438\u0438:",
- "LabelService": "\u0423\u0441\u043b\u0443\u0433\u0430:",
- "LabelStatus": "\u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435:",
- "LabelVersion": "\u0412\u0435\u0440\u0441\u0438\u044f:",
- "LabelLastResult": "\u041f\u043e\u0441\u043b\u0435\u0434\u0435\u043d \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442:",
"OptionHasSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
"OptionHasTrailer": "\u0422\u0440\u0435\u0439\u043b\u044a\u0440",
"OptionHasThemeSong": "\u0424\u043e\u043d\u043e\u0432\u0430 \u041f\u0435\u0441\u0435\u043d",
@@ -268,8 +153,6 @@
"TabMovies": "\u0424\u0438\u043b\u043c\u0438",
"TabStudios": "\u0421\u0442\u0443\u0434\u0438\u0430",
"TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u044a\u0440\u0438",
- "LabelArtists": "\u0410\u0440\u0442\u0438\u0441\u0442\u0438:",
- "LabelArtistsHelp": "\u041e\u0442\u0434\u0435\u043b\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0441 ;",
"HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0424\u0438\u043b\u043c\u0438",
"HeaderLatestTrailers": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438 \u0422\u0440\u0435\u0439\u043b\u044a\u0440\u0438",
"OptionHasSpecialFeatures": "\u0421\u043f\u0435\u0446\u0438\u0430\u043b\u043d\u0438 \u0414\u043e\u0431\u0430\u0432\u043a\u0438",
@@ -290,32 +173,24 @@
"OptionFriday": "\u041f\u0435\u0442\u044a\u043a",
"OptionSaturday": "\u0421\u044a\u0431\u043e\u0442\u0430",
"HeaderManagement": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
- "LabelManagement": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435:",
"OptionMissingImdbId": "\u041b\u0438\u043f\u0441\u0432\u0430\u0449\u043e IMDb ID",
"OptionMissingTvdbId": "\u041b\u0438\u043f\u0441\u0432\u0430\u0449\u043e TheTVDB ID",
"OptionMissingOverview": "\u041b\u0438\u043f\u0441\u0432\u0430\u0449\u0430 \u043e\u0431\u0449\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f",
"OptionFileMetadataYearMismatch": "\u0420\u0430\u0437\u043b\u0438\u0447\u0438\u0435 \u043d\u0430 \u0433\u043e\u0434\u0438\u043d\u0430 \u0432\u044a\u0432 \u0424\u0430\u0439\u043b\/\u041c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f",
"TabGeneral": "\u0413\u043b\u0430\u0432\u043d\u043e",
"TitleSupport": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430",
- "LabelSeasonNumber": "Season number",
"TabLog": "\u041b\u043e\u0433",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "\u041e\u0442\u043d\u043e\u0441\u043d\u043e",
"TabSupporterKey": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u043a\u043e\u0432 \u043a\u043b\u044e\u0447",
"TabBecomeSupporter": "\u0421\u0442\u0430\u043d\u0438 \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u043a",
- "ProjectHasCommunity": "Emby \u0438\u043c\u0430 \u043f\u0440\u043e\u0446\u044a\u0444\u0442\u044f\u0432\u0430\u0449\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0438 \u0441\u044a\u0442\u0440\u0443\u0434\u043d\u0438\u0446\u0438.",
"CheckoutKnowledgeBase": "\u0420\u0430\u0437\u0433\u043b\u0435\u0434\u0430\u0439\u0442\u0435 \u0431\u0430\u0437\u0430\u0442\u0430 \u043d\u0438 \u0441\u044a\u0441 \u0437\u043d\u0430\u043d\u0438\u044f, \u043a\u043e\u044f\u0442\u043e \u0449\u0435 \u0432\u0438 \u043f\u043e\u043c\u043e\u0433\u043d\u0435 \u0434\u0430 \u0432\u0437\u0435\u043c\u0435\u0442\u0435 \u043d\u0430\u0439-\u0434\u043e\u0431\u0440\u043e\u0442\u043e \u043e\u0442 Emby.",
"SearchKnowledgeBase": "\u0422\u044a\u0440\u0441\u0438 \u0432 \u0411\u0430\u0437\u0430\u0442\u0430 \u043e\u0442 \u0417\u043d\u0430\u043d\u0438\u044f",
"VisitTheCommunity": "\u041f\u043e\u0441\u0435\u0442\u0435\u0442\u0435 \u041e\u0431\u0449\u0435\u0441\u0442\u0432\u043e\u0442\u043e",
- "VisitProjectWebsite": "\u041f\u043e\u0441\u0435\u0442\u0435\u0442\u0435 \u0443\u0435\u0431-\u0441\u0430\u0439\u0442\u0430 \u043d\u0430 Emby",
- "VisitProjectWebsiteLong": "\u041f\u043e\u0441\u0435\u0442\u0435\u0442\u0435 \u0443\u0435\u0431-\u0441\u0430\u0439\u0442\u0430 \u043d\u0430 Emby, \u0437\u0430 \u0434\u0430 \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043d\u043e\u0432\u0438\u043d\u0438 \u0438 \u0434\u0430 \u0441\u0442\u0435 \u0432 \u043a\u0440\u0430\u043a \u0441 \u0431\u043b\u043e\u0433\u0430 \u043d\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438\u0442\u0435.",
"OptionHideUser": "\u0421\u043a\u0440\u0438\u0439 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043e\u0442 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438\u0442\u0435 \u0437\u0430 \u0432\u0445\u043e\u0434",
- "OptionHideUserFromLoginHelp": "\u041f\u043e\u043b\u0435\u0437\u043d\u043e \u0437\u0430 \u0447\u0430\u0441\u0442\u043d\u0438 \u0438\u043b\u0438 \u0441\u043a\u0440\u0438\u0442\u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0441\u043a\u0438 \u0430\u043a\u0430\u0443\u043d\u0442\u0438. \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f\u0442 \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0432\u043b\u0435\u0437\u0435 \u0440\u044a\u0447\u043d\u043e \u0447\u0440\u0435\u0437 \u0432\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0438 \u043f\u0430\u0440\u043e\u043b\u0430.",
"OptionDisableUser": "\u0414\u0435\u0437\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
"OptionDisableUserHelp": "\u0410\u043a\u043e \u0435 \u0434\u0435\u0437\u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d, \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u043d\u044f\u043c\u0430 \u0434\u0430 \u043f\u043e\u0437\u0432\u043e\u043b\u0438 \u043a\u0430\u043a\u0432\u0438\u0442\u043e \u0438 \u0434\u0430 \u0431\u0438\u043b\u043e \u0432\u0440\u044a\u0437\u043a\u0438 \u043e\u0442 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b. \u0421\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u0442\u0435 \u0432\u0440\u044a\u0437\u043a\u0438 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0432\u043d\u0435\u0437\u0430\u043f\u043d\u043e \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0435\u043d\u0438.",
"HeaderAdvancedControl": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u0435\u043d \u041a\u043e\u043d\u0442\u0440\u043e\u043b",
"LabelName": "\u0418\u043c\u0435:",
- "ButtonHelp": "\u041f\u043e\u043c\u043e\u0449",
"OptionAllowUserToManageServer": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043d\u0430 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u0434\u0430 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0432\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430",
"HeaderFeatureAccess": "\u0414\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0444\u0443\u043d\u043a\u0446\u0438\u0438",
"OptionAllowMediaPlayback": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0443\u0441\u043a\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0438\u0437\u0442\u0440\u0438\u0432\u0430\u043d\u0435 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f",
"OptionAllowManageLiveTv": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430\u043d\u0435 \u0437\u0430\u043f\u0438\u0441\u043d\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043d\u0430 \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u0438\u044f \u043d\u0430 \u0436\u0438\u0432\u043e",
"OptionAllowRemoteControlOthers": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0434\u0440\u0443\u0433\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438",
- "OptionAllowRemoteSharedDevices": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
- "OptionAllowRemoteSharedDevicesHelp": "DLNA \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0435 \u0441\u0447\u0438\u0442\u0430\u0442 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u044f\u043a\u043e\u0439 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043d\u0435 \u0437\u0430\u043f\u043e\u0447\u043d\u0435 \u0434\u0430 \u0433\u0438 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0430.",
- "OptionAllowLinkSharing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435 \u0432 \u0441\u043e\u0446\u0438\u0430\u043b\u043d\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0438",
- "OptionAllowLinkSharingHelp": "\u0421\u0430\u043c\u043e \u0443\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u0449\u0438 \u043c\u0435\u0434\u0438\u0439\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438. \u041c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043d\u0438\u043a\u043e\u0433\u0430 \u043d\u0435 \u0441\u0435 \u0441\u043f\u043e\u0434\u0435\u043b\u044f\u0442 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e. \u0421\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0438\u044f\u0442\u0430 \u0441\u0430 \u043b\u0438\u043c\u0438\u0442\u0438\u0440\u0430\u043d\u0438 \u0432\u0440\u0435\u043c\u0435\u0432\u043e \u0438 \u0433\u0443\u0431\u044f\u0442 \u0432\u0430\u043b\u0438\u0434\u043d\u043e\u0441\u0442\u0442\u0430 \u0441\u0438 \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442 \u043e\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435.",
- "HeaderSharing": "\u0421\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435",
- "HeaderRemoteControl": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u041a\u043e\u043d\u0442\u0440\u043e\u043b",
"OptionMissingTmdbId": "\u041b\u0438\u043f\u0441\u0432\u0430\u0449\u043e Tmdb ID",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "\u0418\u0437\u0431\u0435\u0440\u0438",
"ButtonGroupVersions": "\u0413\u0440\u0443\u043f\u0438\u0440\u0430\u0439 \u0432\u0435\u0440\u0441\u0438\u0438\u0442\u0435",
"PismoMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Pismo File Mount \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.",
- "TangibleSoftwareMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Tangible Solutions Java\/C# converters \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.",
- "HeaderCredits": "\u041a\u0440\u0435\u0434\u0438\u0442\u0438",
"PleaseSupportOtherProduces": "\u041c\u043e\u043b\u044f, \u043f\u043e\u0434\u043a\u0440\u0435\u043f\u0435\u0442\u0435 \u0438 \u0434\u0440\u0443\u0433\u0438 \u0431\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u0438 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u0438, \u043a\u043e\u0438\u0442\u043e \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043c\u0435:",
"VersionNumber": "\u0412\u0435\u0440\u0441\u0438\u044f {0}",
"TabPaths": "\u041f\u044a\u0442\u0438\u0449\u0430",
"TabServer": "\u0421\u044a\u0440\u0432\u044a\u0440",
"TabTranscoding": "\u041f\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435",
"TitleAdvanced": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438",
- "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)",
"LabelAllowServerAutoRestart": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d \u0440\u0435\u0441\u0442\u0430\u0440\u0442 \u0437\u0430 \u043f\u0440\u0438\u043b\u0430\u0433\u0430\u043d\u0435 \u043d\u0430 \u0430\u043a\u0442\u0443\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438\u0442\u0435",
"LabelAllowServerAutoRestartHelp": "\u0421\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0449\u0435 \u0441\u0435 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430 \u0441\u0430\u043c\u043e \u043f\u0440\u0435\u0437 \u0441\u0432\u043e\u0431\u043e\u0434\u043d\u043e\u0442\u043e \u0441\u0438 \u0432\u0440\u0435\u043c\u0435, \u043a\u043e\u0433\u0430\u0442\u043e \u043d\u044f\u043c\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438.",
"LabelEnableDebugLogging": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u043b\u043e\u0433\u0438\u043d\u0433 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0433\u0440\u0435\u0448\u043a\u0438",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043f\u044a\u0442\u0438\u0449\u0430 \u043f\u043e \u0438\u0437\u0431\u043e\u0440 \u043a\u044a\u0434\u0435\u0442\u043e \u0436\u0435\u043b\u0430\u0435\u0442\u0435. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u043e\u043b\u0435\u0442\u0430\u0442\u0430 \u043f\u0440\u0430\u0437\u043d\u0438 \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u043f\u044a\u0442\u0438\u0449\u0430\u0442\u0430 \u043f\u043e \u0438\u0437\u0431\u043e\u0440.",
"LabelCachePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043a\u0435\u0448\u0430:",
"LabelCachePathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u0437\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u043d\u0438\u0442\u0435 \u043a\u0435\u0448 \u0444\u0430\u0439\u043b\u043e\u0432\u0435, \u043a\u0430\u0442\u043e \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u044f\u0441\u0442\u043e\u0442\u043e \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
- "LabelRecordingPath": "\u041f\u044a\u0442 \u043d\u0430 \u0437\u0430\u043f\u0438\u0441:",
- "LabelRecordingPathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u043d\u0430 \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u0438\u043e\u043d\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u044f\u0441\u0442\u043e\u0442\u043e \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
"LabelImagesByNamePath": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043f\u043e \u043f\u044a\u0442 \u043d\u0430 \u0438\u043c\u0435\u0442\u043e:",
"LabelImagesByNamePathHelp": "\u0417\u0430\u0434\u0430\u0439\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u043f\u043e \u0438\u0437\u0431\u043e\u0440 \u0437\u0430 \u0441\u0432\u0430\u043b\u0435\u043d\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0430 \u0430\u043a\u0442\u044c\u043e\u0440\u0438, \u0436\u0430\u043d\u0440\u043e\u0432\u0435 \u0438 \u0441\u0442\u0443\u0434\u0438\u0430.",
"LabelMetadataPath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "\u0415\u043f\u0438\u0437\u043e\u0434\u0438",
"OptionOtherVideos": "\u0414\u0440\u0443\u0433\u0438 \u043a\u043b\u0438\u043f\u043e\u0432\u0435",
"TitleMetadata": "\u041c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f",
- "LabelAutomaticUpdates": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0438\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
"LabelAutomaticUpdatesTmdb": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442 TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043e\u0442 TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "\u0410\u043a\u043e \u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e, \u043d\u043e\u0432\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0441\u0432\u0430\u043b\u044f\u043d\u0438, \u043a\u043e\u0433\u0430\u0442\u043e \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0438 \u043a\u044a\u043c fanart.tv. \u0421\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u044f\u043c\u0430 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0438. \u0422\u043e\u0432\u0430 \u0432\u043e\u0434\u0438 \u0434\u043e \u043f\u043e-\u0434\u044a\u043b\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 \u0438 \u0434\u043e \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0438\u0441\u043a\u043e\u0432\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442.",
"LabelAutomaticUpdatesTmdbHelp": "\u0410\u043a\u043e \u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e, \u043d\u043e\u0432\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0441\u0432\u0430\u043b\u044f\u043d\u0438, \u043a\u043e\u0433\u0430\u0442\u043e \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0438 \u043a\u044a\u043c TheMovieDB.org. \u0421\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u044f\u043c\u0430 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0438. \u0422\u043e\u0432\u0430 \u0432\u043e\u0434\u0438 \u0434\u043e \u043f\u043e-\u0434\u044a\u043b\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 \u0438 \u0434\u043e \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0438\u0441\u043a\u043e\u0432\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442.",
"LabelAutomaticUpdatesTvdbHelp": "\u0410\u043a\u043e \u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e, \u043d\u043e\u0432\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0441\u0432\u0430\u043b\u044f\u043d\u0438, \u043a\u043e\u0433\u0430\u0442\u043e \u0431\u044a\u0434\u0430\u0442 \u0434\u043e\u0431\u0430\u0432\u0435\u043d\u0438 \u043a\u044a\u043c TheTVDB.com. \u0421\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430\u0449\u0438\u0442\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u044f\u043c\u0430 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u043f\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0438. \u0422\u043e\u0432\u0430 \u0432\u043e\u0434\u0438 \u0434\u043e \u043f\u043e-\u0434\u044a\u043b\u0433\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 \u0438 \u0434\u043e \u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u0438\u0441\u043a\u043e\u0432\u0430 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442.",
- "LabelFanartApiKey": "\u041b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447:",
- "LabelFanartApiKeyHelp": "\u0417\u0430\u044f\u0432\u043a\u0438 \u0434\u043e fanart \u0431\u0435\u0437 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447 \u0432\u0440\u044a\u0449\u0430\u0442 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0431\u0438\u043b\u0438 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u043f\u0440\u0435\u0434\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 7 \u0434\u043d\u0438. \u0421 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447, \u0442\u043e\u0432\u0430 \u0432\u0440\u0435\u043c\u0435 \u043f\u0430\u0434\u0430 \u043d\u0430 48 \u0447\u0430\u0441\u0430, \u0430 \u0430\u043a\u043e \u0441\u0442\u0435 \u0438 fanart VIP \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0442\u043e \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e \u0449\u0435 \u043f\u0430\u0434\u043d\u0435 \u0434\u043e \u043e\u043a\u043e\u043b\u043e 10 \u043c\u0438\u043d\u0443\u0442\u0438.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d \u0435\u0437\u0438\u043a \u043d\u0430 \u0441\u0432\u0430\u043b\u044f\u043d\u0435:",
"ButtonAutoScroll": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d \u0441\u043a\u0440\u043e\u043b",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "\u041f\u0430\u0440\u043e\u043b\u0438\u0442\u0435 \u043d\u0435 \u0441\u0430 \u0437\u0430\u0434\u044a\u043b\u0436\u0438\u0442\u0435\u043b\u043d\u0438, \u043a\u043e\u0433\u0430\u0442\u043e \u0432\u043b\u0438\u0437\u0430\u0442\u0435 \u043e\u0442 localhost",
"TabGuide": "\u0420\u044a\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e",
"TabChannels": "\u041a\u0430\u043d\u0430\u043b\u0438",
- "TabCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0438\u0438",
"HeaderChannels": "\u041a\u0430\u043d\u0430\u043b\u0438",
"TabRecordings": "\u0417\u0430\u043f\u0438\u0441\u0438",
"TabScheduled": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438",
"TabSeries": "\u041f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f",
- "TabFavorites": "\u041b\u044e\u0431\u0438\u043c\u0438",
- "TabMyLibrary": "\u041c\u043e\u044f\u0442\u0430 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430",
"ButtonCancelRecording": "\u041f\u0440\u0435\u043a\u044a\u0441\u043d\u0438 \u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043d\u0435\u0442\u043e",
"HeaderPrePostPadding": "\u041f\u0440\u0435\u0434\u0435\u043d\/\u0417\u0430\u0434\u0435\u043d \u0431\u0430\u043b\u0430\u0441\u0442",
"LabelPrePaddingMinutes": "\u041f\u0440\u0435\u0434\u0435\u043d \u0431\u0430\u043b\u0430\u0441\u0442 \u0432 \u043c\u0438\u043d\u0443\u0442\u0438:",
@@ -416,13 +272,10 @@
"TabStatus": "\u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435",
"TabSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"ButtonRefreshGuideData": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u0432 \u0433\u0438\u0434-\u0430",
- "ButtonRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438",
- "ButtonAdvancedRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e",
"OptionPriority": "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u0439 \u0441\u0430\u043c\u043e \u043d\u043e\u0432\u0438 \u0435\u043f\u0438\u0437\u043e\u0434\u0438",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "\u0414\u043d\u0438",
"HeaderActiveRecordings": "\u0410\u043a\u0442\u0438\u0432\u043d\u0438 \u0417\u0430\u043f\u0438\u0441\u0438",
"HeaderLatestRecordings": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0417\u0430\u043f\u0438\u0441\u0438",
@@ -431,17 +284,16 @@
"ButtonEdit": "\u0420\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439",
"ButtonRecord": "\u0417\u0430\u043f\u0438\u0448\u0438",
"ButtonDelete": "\u0418\u0437\u0442\u0440\u0438\u0439",
- "ButtonRemove": "\u041f\u0440\u0435\u043c\u0430\u0445\u043d\u0438",
"OptionRecordSeries": "\u0417\u0430\u043f\u0438\u0448\u0438 \u041f\u0440\u0435\u0434\u0430\u0432\u0430\u043d\u0438\u044f",
"HeaderDetails": "\u0414\u0435\u0442\u0430\u0439\u043b\u0438",
+ "OptionFolderSort": "\u041f\u0430\u043f\u043a\u0438",
+ "OptionBackdrop": "\u0424\u043e\u043d",
"TitleLiveTV": "\u0422V \u043d\u0430 \u0436\u0438\u0432\u043e",
"LabelNumberOfGuideDays": "\u0411\u0440\u043e\u0439 \u0434\u043d\u0438 \u0437\u0430 \u043a\u043e\u0438\u0442\u043e \u0434\u0430 \u0441\u0435 \u0441\u0432\u0430\u043b\u0438 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430:",
"LabelNumberOfGuideDaysHelp": "\u0418\u0437\u0442\u0435\u0433\u043b\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430 \u0437\u0430\u043f\u043e\u0432\u0435\u0447\u0435 \u0434\u043d\u0438 \u0434\u0430\u0432\u0430 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442 \u0434\u0430 \u043f\u043b\u0430\u043d\u0438\u0440\u0430\u0442\u0435 \u043f\u043e-\u043d\u0430\u0442\u0430\u0442\u044a\u0448\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043b\u043d\u043e, \u043d\u043e \u0438 \u043e\u0442\u043d\u0435\u043c\u0430 \u043f\u043e\u0432\u0435\u0447\u0435 \u0432\u0440\u0435\u043c\u0435, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0442\u0435\u0433\u043b\u0438. \u0410\u0432\u0442\u043e\u043c\u0430\u0442 \u0449\u0435 \u0438\u0437\u0431\u0435\u0440\u0435 \u0432\u044a\u0437 \u043e\u0441\u043d\u043e\u0432\u0430 \u043d\u0430 \u0431\u0440\u043e\u044f \u043d\u0430 \u043a\u0430\u043d\u0430\u043b\u0438\u0442\u0435.",
"OptionAutomatic": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "\u041d\u0435\u0431\u0445\u043e\u0434\u0438\u043c\u0430 \u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0430 \u0437\u0430 \u0433\u043b\u0435\u0434\u0430\u043d\u0435 \u043d\u0430 \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u0438\u044f \u043d\u0430 \u0436\u0438\u0432\u043e, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438.",
"LiveTvPluginRequiredHelp": "\u041c\u043e\u043b\u044f, \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0439\u0442\u0435 \u043d\u044f\u043a\u043e\u044f \u043e\u0442 \u043d\u0430\u043b\u0438\u0447\u043d\u0438\u0442\u0435 \u043f\u0440\u0438\u0441\u0442\u0430\u0432\u043a\u0438, \u043a\u0430\u0442\u043e \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440 Next Pvr \u0438\u043b\u0438 ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u0437\u0430 \u0442\u0438\u043f \u043c\u0435\u0434\u0438\u044f:",
"OptionDownloadThumbImage": "\u041c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430",
"OptionDownloadMenuImage": "\u041c\u0435\u043d\u044e",
"OptionDownloadLogoImage": "\u041b\u043e\u0433\u043e",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "\u041a\u043e\u0440\u0438\u0446\u0430",
"HeaderFetchImages": "\u0421\u0432\u0430\u043b\u0438 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f:",
"HeaderImageSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u043a\u0430\u0440\u0442\u0438\u043d\u0430\u0442\u0430",
- "TabOther": "\u0414\u0440\u0443\u0433\u0438",
"LabelMaxBackdropsPerItem": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0435\u043d \u0431\u0440\u043e\u0439 \u0444\u043e\u043d\u043e\u0432\u0435 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f:",
"LabelMaxScreenshotsPerItem": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u0435\u043d \u0431\u0440\u043e\u0439 \u0441\u043a\u0440\u0438\u0439\u043d\u0448\u043e\u0442\u0438 \u043d\u0430 \u043c\u0435\u0434\u0438\u044f:",
"LabelMinBackdropDownloadWidth": "\u041c\u0438\u043d\u0438\u043c\u0430\u043b\u043d\u0430 \u0448\u0438\u0440\u043e\u0447\u0438\u043d\u0430 \u043d\u0430 \u0441\u0432\u0430\u043b\u0435\u043d\u0438\u044f \u0444\u043e\u043d:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u0415\u043a\u0438\u043f",
"HeaderAdditionalParts": "\u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438 \u0427\u0430\u0441\u0442\u0438",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u043d\u043e \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e",
"OptionEnableDebugTranscodingLogging": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u043b\u043e\u0433\u0438\u043d\u0433 \u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0437\u0430 \u0433\u0440\u0435\u0448\u043a\u0438 \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043a\u043e\u0434\u0438\u043d\u0433\u0430",
"OptionEnableDebugTranscodingLoggingHelp": "This will create very large log files and is only recommended as needed for troubleshooting purposes.",
+ "ButtonNew": "\u041d\u043e\u0432",
+ "TabMetadata": "\u041c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f",
+ "TabImages": "\u0418\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
+ "TabCollectionTitles": "\u0417\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "\u041f\u0440\u0435\u043c\u0430\u0445\u043d\u0438",
"EditCollectionItemsHelp": "Add or remove any movies, series, albums, books or games you wish to group within this collection.",
"HeaderAddTitles": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0437\u0430\u0433\u043b\u0430\u0432\u0438\u044f",
"LabelEnableDlnaPlayTo": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 DLNA Play To",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u0438 \u043f\u044a\u0442\u0438\u0449\u0430",
"LinkCommunity": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u043e",
"LinkGithub": "Github",
- "LinkApi": "API",
"LinkApiDocumentation": "API \u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
"LabelFriendlyServerName": "\u0418\u043c\u0435 \u043d\u0430 \u0441\u044a\u0440\u0432\u044a\u0440\u0430:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "\u041f\u0440\u0435\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e \u043d\u0430 Emby \u0435 \u0442\u0435\u043a\u0443\u0449 \u043f\u0440\u043e\u0435\u043a\u0442.",
"LabelReadHowYouCanContribute": "\u041d\u0430\u0443\u0447\u0435\u0442\u0435 \u043a\u0430\u043a \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0434\u043e\u043f\u0440\u0438\u043d\u0435\u0441\u0435\u0442\u0435",
"HeaderNewCollection": "\u041d\u043e\u0432\u0430 \u041a\u043e\u043b\u0435\u043a\u0446\u0438\u044f",
- "ButtonSubmit": "\u0418\u0437\u043f\u0440\u0430\u0442\u0438",
"ButtonCreate": "\u0421\u044a\u0437\u0434\u0430\u0439",
- "LabelCustomCss": "CSS \u043f\u043e \u0438\u0437\u0431\u043e\u0440:",
- "LabelCustomCssHelp": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d CSS \u043a\u044a\u043c \u0443\u0435\u0431 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430.",
- "LabelLocalHttpServerPortNumber": "\u041b\u043e\u043a\u0430\u043b\u0435\u043d HTTP \u043f\u043e\u0440\u0442:",
- "LabelLocalHttpServerPortNumberHelp": "TCP \u043f\u043e\u0440\u0442\u044a\u0442 \u043d\u0430 \u043a\u043e\u0439\u0442\u043e HTTP \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u043d\u0430 Emby \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043a\u0430\u0447\u0438.",
- "LabelPublicHttpPort": "\u041f\u0443\u0431\u043b\u0438\u0447\u0435\u043d HTTP \u043f\u043e\u0440\u0442:",
- "LabelPublicHttpPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442, \u043a\u043e\u0439\u0442\u043e \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441\u044a\u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d \u0441 \u043b\u043e\u043a\u0430\u043b\u043d\u0438\u044f HTTP \u043f\u043e\u0440\u0442.",
- "LabelPublicHttpsPort": "\u041f\u0443\u0431\u043b\u0438\u0447\u0435\u043d HTTPS \u043f\u043e\u0440\u0442:",
- "LabelPublicHttpsPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442, \u043a\u043e\u0439\u0442\u043e \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441\u044a\u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d \u0441 \u043b\u043e\u043a\u0430\u043b\u043d\u0438\u044f HTTPS \u043f\u043e\u0440\u0442.",
- "LabelEnableHttps": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439 HTTPS \u043a\u0430\u0442\u043e \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "\u041b\u043e\u043a\u0430\u043b\u0435\u043d HTTPS \u043f\u043e\u0440\u0442:",
- "LabelHttpsPortHelp": "TCP \u043f\u043e\u0440\u0442\u044a\u0442 \u043d\u0430 \u043a\u043e\u0439\u0442\u043e HTTPS \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u043d\u0430 Emby \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043a\u0430\u0447\u0438.",
"LabelWebSocketPortNumber": "\u0423\u0435\u0431 \u0441\u043e\u043a\u0435\u0442 \u043f\u043e\u0440\u0442:",
- "LabelEnableAutomaticPortMap": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d \u043c\u0430\u043f\u0438\u043d\u0433 \u043d\u0430 \u043f\u043e\u0440\u0442\u043e\u0432\u0435\u0442\u0435",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "\u0412\u044a\u043d\u0448\u0435\u043d WAN \u0430\u0434\u0440\u0435\u0441:",
"LabelExternalDDNSHelp": "\u0410\u043a\u043e \u0438\u043c\u0430\u0442\u0435 \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u043d DNS \u0433\u043e \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0442\u0443\u043a. Emby \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u0442\u0430 \u0449\u0435 \u0433\u043e \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442 \u043f\u0440\u0438 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d\u043e \u0441\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e \u0437\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043e\u0442\u043a\u0440\u0438\u0432\u0430\u043d\u0435.",
"TabResume": "\u041f\u0440\u043e\u0434\u044a\u043b\u0436\u0438",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u043a\u0440\u0435\u043f\u0435\u0442\u0435 Emby \u041e\u0442\u0431\u043e\u0440\u044a\u0442",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "\u041d\u0430\u043b\u0438\u0447\u043d\u0430 \u0435 \u043d\u043e\u0432\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Emby Server!",
"ServerUpToDate": "Emby Server \u0435 \u043d\u0430\u0439-\u043d\u043e\u0432\u0430\u0442\u0430 \u043d\u0430\u043b\u0438\u0447\u043d\u0430 \u0432\u0435\u0440\u0441\u0438\u044f.",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043d\u0430 \u0432\u044a\u0437\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0436\u0434\u0430\u043d\u0435\u0442\u043e",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "\u0418\u0437\u0431\u0435\u0440\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u0438\u0442\u0435, \u043a\u043e\u0438\u0442\u043e \u0434\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0438\u0442\u0435 \u0441 \u0442\u043e\u0437\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0438\u0442\u0435 \u0449\u0435 \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u0430\u043d\u0430\u043b\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u043c\u0435\u043d\u0438\u0434\u0436\u044a\u0440\u0430 \u043d\u0430 \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "\u0422\u0435\u0437\u0438 \u0432\u0435\u043b\u0438\u0447\u0438\u043d\u0438 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442 \u043a\u0430\u043a Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0449\u0435 \u0441\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u044f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0442\u0430.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "\u041a\u043e\u0433\u0430\u0442\u043e Emby \u0441\u043a\u0430\u043d\u0438\u0440\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u0432\u0438\u0434\u0435\u043e \u0444\u0430\u0439\u043b\u043e\u0432\u0435, \u0442\u043e\u0439 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0442\u044a\u0440\u0441\u0438 \u0437\u0430 \u043b\u0438\u043f\u0441\u0432\u0430\u0449\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438 \u0438 \u0434\u0430 \u0433\u0438 \u0441\u0432\u0430\u043b\u044f \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u0443\u0441\u043b\u0443\u0433\u0430 \u0437\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438 \u043a\u0430\u0442\u043e OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "\u041a\u043e\u0433\u0430\u0442\u043e Emby \u0441\u043a\u0430\u043d\u0438\u0440\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u0432\u0438\u0434\u0435\u043e \u0444\u0430\u0439\u043b\u043e\u0432\u0435, \u0442\u043e\u0439 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0432\u0430\u043b\u044f \u0438\u043c\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u0433\u043b\u0430\u0432\u0438\u0442\u0435 \u043e\u0442 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u0443\u0441\u043b\u0443\u0433\u0430 \u0437\u0430 \u0433\u043b\u0430\u0438 \u043a\u0430\u0442\u043e ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "\u0423\u0441\u043b\u0443\u0433\u0430:",
+ "LabelStatus": "\u0421\u044a\u0441\u0442\u043e\u044f\u043d\u0438\u0435:",
+ "LabelVersion": "\u0412\u0435\u0440\u0441\u0438\u044f:",
+ "LabelLastResult": "\u041f\u043e\u0441\u043b\u0435\u0434\u0435\u043d \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "\u041f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435",
+ "OptionOnlyForcedSubtitles": "\u0421\u0430\u043c\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
+ "OptionAlwaysPlaySubtitles": "\u0412\u0438\u043d\u0430\u0433\u0438 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u0439 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
+ "OptionDefaultSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438 \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449\u0438 \u043d\u0430 \u0435\u0437\u0438\u043a\u043e\u0432\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438, \u043a\u043e\u0433\u0430\u0442\u043e \u0430\u0443\u0434\u0438\u043e\u0442\u043e \u0435 \u043d\u0430 \u0434\u0440\u0443\u0433 \u0435\u0437\u0438\u043a.",
+ "OptionOnlyForcedSubtitlesHelp": "\u0421\u0430\u043c\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u043d\u0438, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438",
+ "OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438, \u043e\u0442\u0433\u043e\u0432\u0430\u0440\u044f\u0449\u0438 \u043d\u0430 \u0435\u0437\u0438\u043a\u043e\u0432\u043e\u0442\u043e \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u0435, \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043d\u0435\u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e \u043e\u0442 \u0435\u0437\u0438\u043a\u0430 \u043d\u0430 \u0430\u0443\u0434\u0438\u043e\u0442\u043e.",
+ "OptionNoSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0438 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
+ "TangibleSoftwareMessage": "\u0418\u0437\u043f\u043e\u043b\u0437\u0430\u043d\u0435 \u043d\u0430 Tangible Solutions Java\/C# converters \u0447\u0440\u0435\u0437 \u0434\u0430\u0440\u0435\u043d \u043b\u0438\u0446\u0435\u043d\u0437.",
+ "HeaderCredits": "\u041a\u0440\u0435\u0434\u0438\u0442\u0438",
+ "TabCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0438\u0438",
+ "TabFavorites": "\u041b\u044e\u0431\u0438\u043c\u0438",
+ "TabMyLibrary": "\u041c\u043e\u044f\u0442\u0430 \u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430",
+ "LabelCustomizeOptionsPerMediaType": "\u041f\u0435\u0440\u0441\u043e\u043d\u0430\u043b\u0438\u0437\u0438\u0440\u0430\u043d\u0435 \u0437\u0430 \u0442\u0438\u043f \u043c\u0435\u0434\u0438\u044f:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "\u0414\u0440\u0443\u0433\u0438",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438 \u0432 \u043a\u043e\u043b\u0435\u043a\u0446\u0438\u044f\u0442\u0430",
+ "ButtonSubmit": "\u0418\u0437\u043f\u0440\u0430\u0442\u0438",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "\u041a\u043e\u0433\u0430\u0442\u043e Emby \u0441\u043a\u0430\u043d\u0438\u0440\u0430 \u0432\u0430\u0448\u0438\u0442\u0435 \u0432\u0438\u0434\u0435\u043e \u0444\u0430\u0439\u043b\u043e\u0432\u0435, \u0442\u043e\u0439 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0432\u0430\u043b\u044f \u0438\u043c\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u0433\u043b\u0430\u0432\u0438\u0442\u0435 \u043e\u0442 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u0443\u0441\u043b\u0443\u0433\u0430 \u0437\u0430 \u0433\u043b\u0430\u0438 \u043a\u0430\u0442\u043e ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby \u0432\u043a\u043b\u044e\u0447\u0432\u0430 \u0432\u0433\u0440\u0430\u0434\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430 \u043d\u0430 Nfo \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435. \u0417\u0430 \u0434\u0430 \u043f\u0443\u0441\u043d\u0435\u0442\u0435 \u0438\u043b\u0438 \u0441\u043f\u0440\u0435\u0442\u0435 Nfo \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u0438\u0437\u043f\u043e\u0437\u0432\u0430\u0439\u0442\u0435 \u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438, \u0437\u0430 \u0434\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u0435 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u0438\u0442\u0435 \u043e\u043f\u0446\u0438\u0438 \u0437\u0430 \u043c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u0442\u0438\u043f\u043e\u0432\u0435.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u0442\u0435 \u0442\u043e\u0432\u0430, \u0437\u0430 \u0434\u0430 \u0434\u044a\u0440\u0436\u0438\u0442\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430 \u0433\u043b\u0435\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u043c\u0435\u0436\u0434\u0443 Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0438 Nfo \u0444\u0430\u0439\u043b\u043e\u0432\u0435\u0442\u0435 \u0443\u0435\u0434\u043d\u0430\u043a\u0432\u0435\u043d\u0430.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"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.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0431\u0435 \u043e\u0431\u043d\u043e\u0432\u0435\u043d.",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "\u0410\u0443\u0434\u0438\u043e",
+ "HeaderVideo": "\u0412\u0438\u0434\u0435\u043e",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "\u0412\u0430\u0448\u0438\u044f\u0442 \u043b\u0435\u0441\u0435\u043d \u043f\u0438\u043d \u043a\u043e\u0434 \u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d \u0437\u0430 \u043e\u0444\u043b\u0430\u0439\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0441\u044a\u0441 \u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0438 Emby \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043a\u0430\u043a\u0442\u043e \u0438 \u0437\u0430 \u0432\u043b\u0438\u0437\u0430\u043d\u0435 \u043f\u0440\u0435\u0437 \u0441\u044a\u0449\u0430\u0442\u0430 \u043c\u0440\u0435\u0436\u0430.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "\u0421\u043c\u0435\u0441\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435",
+ "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",
+ "LabelArtists": "\u0410\u0440\u0442\u0438\u0441\u0442\u0438:",
+ "LabelArtistsHelp": "\u041e\u0442\u0434\u0435\u043b\u0435\u0442\u0435 \u043d\u044f\u043a\u043e\u043b\u043a\u043e \u0441 ;",
+ "ButtonAdvancedRefresh": "\u041e\u0431\u043d\u043e\u0432\u0438 \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "\u0422\u044f\u0445\u043d\u043e\u0442\u043e Emby \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043a\u0441\u043a\u043e \u0438\u043c\u0435 \u0438\u043b\u0438 \u0438\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "\u0414\u043e\u0431\u0430\u0432\u0438 \u043b\u043e\u043a\u0430\u043b\u0435\u043d \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043a\u0441\u043a\u043e \u0438\u043c\u0435\/\u0438\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby \u0432\u043a\u043b\u044e\u0447\u0432\u0430 \u0432\u0433\u0440\u0430\u0434\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0440\u044a\u0436\u043a\u0430 \u043d\u0430 Nfo \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u043e\u043d\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435. \u0417\u0430 \u0434\u0430 \u043f\u0443\u0441\u043d\u0435\u0442\u0435 \u0438\u043b\u0438 \u0441\u043f\u0440\u0435\u0442\u0435 Nfo \u043c\u0435\u0442\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f, \u0438\u0437\u043f\u043e\u0437\u0432\u0430\u0439\u0442\u0435 \u0414\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u0438\u0442\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438, \u0437\u0430 \u0434\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u0435 \u0432\u044a\u0437\u043c\u043e\u0436\u043d\u0438\u0442\u0435 \u043e\u043f\u0446\u0438\u0438 \u0437\u0430 \u043c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u0442\u0438\u043f\u043e\u0432\u0435.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "\u0420\u0430\u0437\u0440\u0435\u0448\u0435\u0442\u0435 \u0442\u043e\u0432\u0430, \u0437\u0430 \u0434\u0430 \u0434\u044a\u0440\u0436\u0438\u0442\u0435 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430 \u0433\u043b\u0435\u0434\u0430\u043d\u0438\u044f\u0442\u0430 \u043c\u0435\u0436\u0434\u0443 Emby \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0438 Nfo \u0444\u0430\u0439\u043b\u043e\u0432\u0435\u0442\u0435 \u0443\u0435\u0434\u043d\u0430\u043a\u0432\u0435\u043d\u0430.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "\u041b\u043e\u043a\u0430\u043b\u0435\u043d HTTP \u043f\u043e\u0440\u0442:",
+ "LabelLocalHttpServerPortNumberHelp": "TCP \u043f\u043e\u0440\u0442\u044a\u0442 \u043d\u0430 \u043a\u043e\u0439\u0442\u043e HTTP \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u043d\u0430 Emby \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043a\u0430\u0447\u0438.",
+ "LabelEnableAutomaticPortMap": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u043d \u043c\u0430\u043f\u0438\u043d\u0433 \u043d\u0430 \u043f\u043e\u0440\u0442\u043e\u0432\u0435\u0442\u0435",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "\u041f\u043e\u043a\u0430\u043d\u0438 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "\u0412\u043b\u0435\u0437\u0442\u0435 \u0441 Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "\u041f\u0440\u043e\u0444\u0438\u043b\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u0430\u043d\u0430 \u0441 Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "\u0422\u044f\u0445\u043d\u043e\u0442\u043e Emby \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043a\u0441\u043a\u043e \u0438\u043c\u0435 \u0438\u043b\u0438 \u0438\u043c\u0435\u0439\u043b \u0430\u0434\u0440\u0435\u0441:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "\u041a\u0430\u0440\u0442\u0430 \u043f\u043b\u0430\u043a\u0430\u0442",
+ "OptionThumbCard": "\u041a\u0430\u0440\u0442\u0430 \u043c\u0438\u043d\u0438\u0430\u0442\u044e\u0440\u0430",
+ "OptionAllowRemoteSharedDevices": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u043e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u043a\u043e\u043d\u0442\u0440\u043e\u043b \u043d\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
+ "OptionAllowRemoteSharedDevicesHelp": "DLNA \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0435 \u0441\u0447\u0438\u0442\u0430\u0442 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438 \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u044f\u043a\u043e\u0439 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043d\u0435 \u0437\u0430\u043f\u043e\u0447\u043d\u0435 \u0434\u0430 \u0433\u0438 \u043a\u043e\u043d\u0442\u0440\u043e\u043b\u0438\u0440\u0430.",
+ "HeaderRemoteControl": "\u041e\u0442\u0434\u0430\u043b\u0435\u0447\u0435\u043d \u041a\u043e\u043d\u0442\u0440\u043e\u043b",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "\u0412\u043b\u0435\u0437\u0442\u0435 \u0441 Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "API \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f",
+ "LabelDeveloperResources": "\u0420\u0435\u0441\u0443\u0440\u0441\u0438 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u0438",
+ "LabelContentType": "\u0422\u0438\u043f \u043d\u0430 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435\u0442\u043e:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "\u041f\u043e\u043c\u043e\u0449",
+ "TabAccess": "\u0414\u043e\u0441\u0442\u044a\u043f",
+ "HeaderDeviceAccess": "\u0414\u043e\u0441\u0442\u044a\u043f \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0442\u0430",
+ "OptionEnableAccessFromAllDevices": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u043e\u0442 \u0432\u0441\u0438\u0447\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
+ "DeviceAccessHelp": "\u0422\u043e\u0432\u0430 \u0441\u0435 \u043e\u0442\u043d\u0430\u0441\u044f \u0441\u0430\u043c\u043e \u0437\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430, \u043a\u043e\u0438\u0442\u043e \u043c\u043e\u0433\u0430\u0442 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043b\u0438\u0447\u0435\u043d\u0438 \u0438 \u043d\u044f\u043c\u0430 \u0434\u0430 \u043f\u043e\u043f\u0440\u0435\u0447\u0438 \u043d\u0430 \u0434\u043e\u0441\u0442\u044a\u043f \u043e\u0442 \u0431\u0440\u0430\u0443\u0437\u044a\u0440. \u0424\u0438\u043b\u0442\u0440\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0449\u0435 \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u0438\u043c \u0434\u043e\u043a\u0430\u0442\u043e \u043d\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0442\u0443\u043a.",
+ "ButtonQuickStartGuide": "\u0420\u044a\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u0437\u0430 \u0431\u044a\u0440\u0437\u043e \u0437\u0430\u043f\u043e\u0447\u0432\u0430\u043d\u0435",
+ "HeaderSyncJobInfo": "\u0421\u0438\u043d\u0445\u0440. \u0417\u0430\u0434\u0430\u0447\u0430",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby \u0443\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435",
+ "MessagePleaseAcceptTermsOfService": "\u041c\u043e\u043b\u044f \u043f\u0440\u0438\u0435\u043c\u0435\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u0438 \u0434\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442, \u043f\u0440\u0435\u0434\u0438 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438\u0442\u0435.",
+ "OptionIAcceptTermsOfService": "\u041f\u0440\u0438\u0435\u043c\u0430\u043c \u0443\u0441\u043b\u043e\u0432\u0438\u044f\u0442\u0430 \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435",
+ "ButtonPrivacyPolicy": "\u0414\u0435\u043a\u043b\u0430\u0440\u0430\u0446\u0438\u044f \u0437\u0430 \u043f\u043e\u0432\u0435\u0440\u0438\u0442\u0435\u043b\u043d\u043e\u0441\u0442",
+ "ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u0437\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435",
+ "OptionHideUserFromLoginHelp": "\u041f\u043e\u043b\u0435\u0437\u043d\u043e \u0437\u0430 \u0447\u0430\u0441\u0442\u043d\u0438 \u0438\u043b\u0438 \u0441\u043a\u0440\u0438\u0442\u0438 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0441\u043a\u0438 \u0430\u043a\u0430\u0443\u043d\u0442\u0438. \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u044f\u0442 \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0432\u043b\u0435\u0437\u0435 \u0440\u044a\u0447\u043d\u043e \u0447\u0440\u0435\u0437 \u0432\u044a\u0432\u0435\u0436\u0434\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0438 \u043f\u0430\u0440\u043e\u043b\u0430.",
+ "LabelEnterConnectUserName": "\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u043e \u0438\u043c\u0435 \u0438\u043b\u0438 email:",
+ "LabelEnterConnectUserNameHelp": "\u0422\u043e\u0432\u0430 \u0435 \u0438\u043c\u0435\u0442\u043e \u043d\u0430 \u0432\u0430\u0448\u0438\u044f\u0442 Emby online \u0430\u043a\u0430\u0443\u043d\u0442 \u0438\u043b\u0438 email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "\u0420\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0430\u0440\u0445\u0438\u0432\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435",
+ "OptionDetectArchiveFilesAsMediaHelp": "\u0410\u043a\u043e \u0435 \u0430\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u043e, \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0441 \u0440\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u044f .rar \u0438 .zip \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0440\u0430\u0437\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043c\u0435\u0434\u0438\u0439\u043d\u0438 \u0444\u0430\u0439\u043b\u043e\u0432\u0435.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0432\u0441\u0438\u0447\u043a\u0438 \u043a\u0430\u043d\u0430\u043b\u0438",
+ "LabelAutomaticUpdates": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0438\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
+ "LabelFanartApiKey": "\u041b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447:",
+ "LabelFanartApiKeyHelp": "\u0417\u0430\u044f\u0432\u043a\u0438 \u0434\u043e fanart \u0431\u0435\u0437 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447 \u0432\u0440\u044a\u0449\u0430\u0442 \u0440\u0435\u0437\u0443\u043b\u0442\u0430\u0442\u0438, \u043a\u043e\u0438\u0442\u043e \u0441\u0430 \u0431\u0438\u043b\u0438 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u043f\u0440\u0435\u0434\u0438 \u043f\u043e\u0432\u0435\u0447\u0435 \u043e\u0442 7 \u0434\u043d\u0438. \u0421 \u043b\u0438\u0447\u0435\u043d API \u043a\u043b\u044e\u0447, \u0442\u043e\u0432\u0430 \u0432\u0440\u0435\u043c\u0435 \u043f\u0430\u0434\u0430 \u043d\u0430 48 \u0447\u0430\u0441\u0430, \u0430 \u0430\u043a\u043e \u0441\u0442\u0435 \u0438 fanart VIP \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b, \u0442\u043e \u0434\u043e\u043f\u044a\u043b\u043d\u0438\u0442\u0435\u043b\u043d\u043e \u0449\u0435 \u043f\u0430\u0434\u043d\u0435 \u0434\u043e \u043e\u043a\u043e\u043b\u043e 10 \u043c\u0438\u043d\u0443\u0442\u0438.",
+ "HeaderDeveloperOptions": "\u041e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438",
+ "OptionEnableWebClientResponseCache": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043a\u0435\u0448\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043e\u0442\u0433\u043e\u0432\u043e\u0440\u0438\u0442\u0435 \u043d\u0430 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0438\u0442\u0435",
+ "OptionDisableForDevelopmentHelp": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439\u0442\u0435 \u0442\u0435\u0437\u0438 \u0441\u043f\u043e\u0440\u0435\u0434 \u043d\u0443\u0436\u0434\u0438\u0442\u0435 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 \u043d\u0430 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0438.",
+ "OptionEnableWebClientResourceMinification": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u0441\u043c\u0430\u043b\u044f\u0432\u0430\u043d\u0435(\u043c\u0438\u043d\u0438\u0444\u0438\u043a\u0430\u0446\u0438\u044f) \u043d\u0430 \u0440\u0435\u0441\u0443\u0440\u0441\u0438\u0442\u0435 \u043d\u0430 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0430",
+ "LabelDashboardSourcePath": "\u0413\u043b\u0430\u0432\u0435\u043d \u043f\u044a\u0442 \u043a\u044a\u043c \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0430",
+ "LabelDashboardSourcePathHelp": "\u0410\u043a\u043e \u043f\u0443\u0441\u043a\u0430\u0442\u0435 \u0441\u044a\u0440\u0432\u044a\u0440\u0430 \u043e\u0442 \u0438\u0437\u0445\u043e\u0434\u0435\u043d \u043a\u043e\u0434, \u043f\u043e\u0441\u043e\u0447\u0435\u0442\u0435 \u043f\u044a\u0442\u044f \u043a\u044a\u043c \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430 \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u043e\u0442\u043e \u0442\u0430\u0431\u043b\u043e. \u0412\u0441\u0438\u0447\u043a\u0438 \u0443\u0435\u0431 \u043a\u043b\u0438\u0435\u043d\u0442\u0438 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043e\u0431\u0441\u043b\u0443\u0436\u0432\u0430\u043d\u0438 \u043e\u0442 \u0442\u0430\u043c.",
+ "HeaderPaths": "\u041f\u044a\u0442\u0438\u0449\u0430",
+ "TitleNotifications": "\u0418\u0437\u0432\u0435\u0441\u0442\u0438\u044f",
+ "ButtonDonateWithPayPal": "\u041d\u0430\u043f\u0440\u0430\u0432\u0438 \u0434\u0430\u0440\u0435\u043d\u0438\u0435 \u0441 PayPal",
+ "TitleScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u0430\u043d\u0438 \u0437\u0430\u0434\u0430\u0447\u0438",
+ "LinkApi": "API",
+ "LabelPublicHttpPort": "\u041f\u0443\u0431\u043b\u0438\u0447\u0435\u043d HTTP \u043f\u043e\u0440\u0442:",
+ "LabelPublicHttpPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442, \u043a\u043e\u0439\u0442\u043e \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441\u044a\u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d \u0441 \u043b\u043e\u043a\u0430\u043b\u043d\u0438\u044f HTTP \u043f\u043e\u0440\u0442.",
+ "LabelPublicHttpsPort": "\u041f\u0443\u0431\u043b\u0438\u0447\u0435\u043d HTTPS \u043f\u043e\u0440\u0442:",
+ "LabelPublicHttpsPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442, \u043a\u043e\u0439\u0442\u043e \u0434\u0430 \u0431\u044a\u0434\u0435 \u0441\u044a\u043f\u043e\u0441\u0442\u0430\u0432\u0435\u043d \u0441 \u043b\u043e\u043a\u0430\u043b\u043d\u0438\u044f HTTPS \u043f\u043e\u0440\u0442.",
+ "LabelEnableHttps": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439 HTTPS \u043a\u0430\u0442\u043e \u0432\u044a\u043d\u0448\u0435\u043d \u0430\u0434\u0440\u0435\u0441",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "\u041b\u043e\u043a\u0430\u043b\u0435\u043d HTTPS \u043f\u043e\u0440\u0442:",
+ "LabelHttpsPortHelp": "TCP \u043f\u043e\u0440\u0442\u044a\u0442 \u043d\u0430 \u043a\u043e\u0439\u0442\u043e HTTPS \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u043d\u0430 Emby \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0435 \u0437\u0430\u043a\u0430\u0447\u0438.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "CSS \u043f\u043e \u0438\u0437\u0431\u043e\u0440:",
+ "LabelCustomCssHelp": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d CSS \u043a\u044a\u043c \u0443\u0435\u0431 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430.",
+ "ButtonConvertMedia": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u0439 \u043c\u0435\u0434\u0438\u044f\u0442\u0430",
+ "ButtonOrganize": "\u041e\u0440\u0433\u0430\u043d\u0438\u0437\u0438\u0440\u0430\u0439",
+ "ButtonJoinTheDevelopmentTeam": "\u041f\u0440\u0438\u0441\u044a\u0435\u0434\u0438\u043d\u0435\u0442\u0435 \u0441\u0435 \u043a\u044a\u043c \u043e\u0442\u0431\u043e\u0440\u0430 \u043d\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438\u0442\u0435",
+ "OptionEnableAccessToAllLibraries": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u0439 \u0434\u043e\u0441\u0442\u044a\u043f \u0434\u043e \u0432\u0441\u0438\u0447\u043a\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438",
+ "LabelSyncTempPath": "\u0412\u0440\u0435\u043c\u0435\u043d\u0435\u043d \u0444\u0430\u0439\u043b\u043e\u0432 \u043f\u044a\u0442:",
+ "LabelSyncTempPathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u043d\u0430 \u043f\u0430\u043f\u043a\u0430 \u0437\u0430 \u043a\u043e\u043d\u0432\u0435\u0440\u0442\u0438\u0440\u0430\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f.",
+ "LabelCustomCertificatePath": "\u041f\u044a\u0442 \u043a\u044a\u043c \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430:",
+ "LabelCustomCertificatePathHelp": "\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u0442\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0435\u043d .pfx \u0444\u0430\u0439\u043b. \u0410\u043a\u043e \u0435 \u043f\u0440\u043e\u043f\u0443\u0441\u043d\u0430\u0442, \u0441\u044a\u0440\u0432\u044a\u0440\u044a\u0442 \u0449\u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "\u041d\u0430\u0441\u043b\u0430\u0434\u0435\u0442\u0435 \u0441\u0435 \u043d\u0430 \u0431\u0435\u0437\u043f\u043b\u0430\u0442\u043d\u0430 14 \u0434\u043d\u0435\u0432\u043d\u0430 \u043f\u0440\u043e\u0431\u0430",
+ "CategorySync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437.",
+ "RegisterWithPayPal": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0439 \u0441 PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "\u041b\u0435\u0441\u0435\u043d \u041f\u0418\u041d \u041a\u043e\u0434",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "\u0412\u0430\u0448\u0438\u044f\u0442 \u043b\u0435\u0441\u0435\u043d \u043f\u0438\u043d \u043a\u043e\u0434 \u0435 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d \u0437\u0430 \u043e\u0444\u043b\u0430\u0439\u043d \u0434\u043e\u0441\u0442\u044a\u043f \u0441\u044a\u0441 \u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0438 Emby \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043a\u0430\u043a\u0442\u043e \u0438 \u0437\u0430 \u0432\u043b\u0438\u0437\u0430\u043d\u0435 \u043f\u0440\u0435\u0437 \u0441\u044a\u0449\u0430\u0442\u0430 \u043c\u0440\u0435\u0436\u0430.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "\u041f\u0418\u041d \u043a\u043e\u0434:",
+ "ButtonExit": "\u0418\u0437\u0445\u043e\u0434",
+ "HeaderGrownupsOnly": "\u0421\u0430\u043c\u043e \u0437\u0430 \u043f\u043e\u0440\u0430\u0441\u043d\u0430\u043b\u0438!",
+ "DividerOr": "-- \u0438\u043b\u0438 --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "\u0417\u0430 \u0434\u043e\u0441\u0442\u044a\u043f, \u043c\u043e\u043b\u044f \u0432\u044a\u0432\u0435\u0434\u0435\u0442\u0435 \u0441\u0432\u043e\u044f \u043b\u0435\u0441\u0435\u043d \u041f\u0418\u041d \u043a\u043e\u0434",
+ "KidsModeAdultInstruction": "\u041d\u0430\u0442\u0438\u0441\u043d\u0435\u0442\u0435 \u0438\u043a\u043e\u043d\u043a\u0430\u0442\u0430 \u0437\u0430 \u0437\u0430\u043a\u043b\u044e\u0447\u0432\u0430\u043d\u0435 \u0434\u043e\u043b\u0443 \u0432 \u0434\u044f\u0441\u043d\u043e \u0437\u0430 \u0434\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0442\u0435 \u0438\u043b\u0438 \u043d\u0430\u043f\u0443\u0441\u043d\u0435\u0442\u0435 \u0434\u0435\u0442\u0441\u043a\u0438 \u0440\u0435\u0436\u0438\u043c. \u0429\u0435 \u0431\u044a\u0434\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c \u0432\u0430\u0448\u0438\u044f\u0442 \u041f\u0418\u041d \u043a\u043e\u0434.",
+ "ButtonConfigurePinCode": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 \u041f\u0418\u041d \u043a\u043e\u0434",
+ "HeaderAdultsReadHere": "\u0412\u044a\u0437\u0440\u0430\u0441\u0442\u043d\u0438, \u043f\u0440\u043e\u0447\u0435\u0442\u0435\u0442\u0435 \u0442\u0443\u043a!",
+ "LabelEnableEnhancedMovies": "\u0410\u043a\u0442\u0438\u0432\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u043f\u043e\u0434\u043e\u0431\u0440\u0435\u043d\u0438 \u0444\u0438\u043b\u043c\u043e\u0432\u0438 \u0434\u0438\u0441\u043f\u043b\u0435\u0438",
+ "LabelEnableEnhancedMoviesHelp": "\u041f\u0440\u0438 \u0430\u043a\u0442\u0438\u0432\u0430\u0446\u0438\u044f, \u0444\u0438\u043b\u043c\u0438\u0442\u0435 \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u043f\u043e\u043a\u0430\u0437\u0432\u0430\u043d\u0438 \u043a\u0430\u0442\u043e \u043f\u0430\u043f\u043a\u0438, \u0432\u043a\u043b\u044e\u0447\u0432\u0430\u0449\u0438 \u0442\u0440\u0435\u0439\u043b\u044a\u0440\u0438, \u0435\u043a\u0441\u0442\u0440\u0438, \u0430\u043a\u0442\u044c\u043e\u0440\u0438\u0442\u0435, \u0435\u043a\u0438\u043f\u0430, \u043a\u0430\u043a\u0442\u043e \u0438 \u0434\u0440\u0443\u0433\u043e \u0441\u0432\u044a\u0440\u0437\u0430\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "\u0412\u0440\u0435\u043c\u0435\u0432\u0438 \u043b\u0438\u043c\u0438\u0442 (\u0447\u0430\u0441\u043e\u0432\u0435):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "\u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0443\u0441\u043b\u0443\u0433\u0438",
+ "HeaderAvailableServices": "\u041d\u0430\u043b\u0438\u0447\u043d\u0438 \u0443\u0441\u043b\u0443\u0433\u0438",
+ "MessageNoServicesInstalled": "\u041d\u044f\u043c\u0430 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0438 \u0443\u0441\u043b\u0443\u0433\u0438.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "\u041f\u043e\u0434\u0434\u0440\u044a\u0436\u043d\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u043e\u043b\u0437\u0438",
+ "HeaderAddUser": "+ \u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b",
+ "LabelAddConnectSupporterHelp": "\u0417\u0430 \u0434\u0430 \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b \u043a\u043e\u0439\u0442\u043e \u043d\u0435 \u0435 \u0432 \u043b\u0438\u0441\u0442\u0438\u0442\u0435, \u0449\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u043f\u044a\u0440\u0432\u043e \u0434\u0430 \u0437\u0430\u043a\u0430\u0447\u0438\u0442\u0435 \u0442\u0435\u0445\u043d\u0438\u044f \u043f\u0440\u043e\u0444\u0438\u043b \u043a\u044a\u043c Emby Connect \u043e\u0442 \u0442\u044f\u0445\u043d\u0430\u0442\u0430 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430.",
+ "TabPlaylist": "\u041f\u043b\u0435\u0439\u043b\u0438\u0441\u0442",
+ "LabelConfigureServer": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u0430\u0439 Emby",
+ "WelcomeToProject": "\u0414\u043e\u0431\u0440\u0435 \u0434\u043e\u0448\u043b\u0438 \u0432 Emby!",
+ "LinkedToEmbyConnect": "\u0421\u0432\u044a\u0440\u0437\u0430\u043d \u043a\u044a\u043c Emby Connect",
+ "ProjectHasCommunity": "Emby \u0438\u043c\u0430 \u043f\u0440\u043e\u0446\u044a\u0444\u0442\u044f\u0432\u0430\u0449\u043e \u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0438 \u0438 \u0441\u044a\u0442\u0440\u0443\u0434\u043d\u0438\u0446\u0438.",
+ "VisitProjectWebsite": "\u041f\u043e\u0441\u0435\u0442\u0435\u0442\u0435 \u0443\u0435\u0431-\u0441\u0430\u0439\u0442\u0430 \u043d\u0430 Emby",
+ "VisitProjectWebsiteLong": "\u041f\u043e\u0441\u0435\u0442\u0435\u0442\u0435 \u0443\u0435\u0431-\u0441\u0430\u0439\u0442\u0430 \u043d\u0430 Emby, \u0437\u0430 \u0434\u0430 \u0443\u0437\u043d\u0430\u0435\u0442\u0435 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0442\u0435 \u043d\u043e\u0432\u0438\u043d\u0438 \u0438 \u0434\u0430 \u0441\u0442\u0435 \u0432 \u043a\u0440\u0430\u043a \u0441 \u0431\u043b\u043e\u0433\u0430 \u043d\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u0446\u0438\u0442\u0435.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u0438\u0439 \u0433\u043b\u0435\u0434\u0430\u043d\u043e\u0442\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435 \u043e\u0442 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0430\u0442\u0430 \u043c\u0435\u0434\u0438\u044f",
+ "TabSuggestions": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0430\u0432\u0430\u043d\u0435 \u043d\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435 \u0432 \u0441\u043e\u0446\u0438\u0430\u043b\u043d\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0438",
+ "OptionAllowLinkSharingHelp": "\u0421\u0430\u043c\u043e \u0443\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0438 \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u0449\u0438 \u043c\u0435\u0434\u0438\u0439\u043d\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u044f \u0449\u0435 \u0431\u044a\u0434\u0430\u0442 \u0441\u043f\u043e\u0434\u0435\u043b\u0435\u043d\u0438. \u041c\u0435\u0434\u0438\u0439\u043d\u0438\u0442\u0435 \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u043d\u0438\u043a\u043e\u0433\u0430 \u043d\u0435 \u0441\u0435 \u0441\u043f\u043e\u0434\u0435\u043b\u044f\u0442 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e. \u0421\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0438\u044f\u0442\u0430 \u0441\u0430 \u043b\u0438\u043c\u0438\u0442\u0438\u0440\u0430\u043d\u0438 \u0432\u0440\u0435\u043c\u0435\u0432\u043e \u0438 \u0433\u0443\u0431\u044f\u0442 \u0432\u0430\u043b\u0438\u0434\u043d\u043e\u0441\u0442\u0442\u0430 \u0441\u0438 \u0432 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442 \u043e\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u0437\u0430 \u0441\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435.",
+ "HeaderSharing": "\u0421\u043f\u043e\u0434\u0435\u043b\u044f\u043d\u0435",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "\u041f\u044a\u0442 \u043d\u0430 \u0437\u0430\u043f\u0438\u0441:",
+ "LabelRecordingPathHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u0442\u0435 \u043c\u044f\u0441\u0442\u043e \u043d\u0430 \u0442\u0435\u043b\u0435\u0432\u0438\u0437\u0438\u043e\u043d\u043d\u0438\u0442\u0435 \u0437\u0430\u043f\u0438\u0441\u0438. \u041e\u0441\u0442\u0430\u0432\u0435\u0442\u0435 \u043f\u0440\u0430\u0437\u043d\u043e, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043c\u044f\u0441\u0442\u043e\u0442\u043e \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/ca.json b/dashboard-ui/strings/html/ca.json
index 68d881cdae..aaef1d5814 100644
--- a/dashboard-ui/strings/html/ca.json
+++ b/dashboard-ui/strings/html/ca.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Sortir",
"LabelVisitCommunity": "Visitar la comunitat",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Est\u00e0ndard",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Examinar la biblioteca",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Obrir el visor de la biblioteca",
"LabelRestartServer": "Reiniciar el servidor",
"LabelShowLogWindow": "Veure la finestra del registre",
"LabelPrevious": "Anterior",
"LabelFinish": "Finalitzar",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Seg\u00fcent",
"LabelYoureDone": "Ja est\u00e0!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Versi\u00f3 Oficial",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Inestable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "Expliqui'ns sobre vost\u00e8",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "El seu nom:",
"MoreUsersCanBeAddedLater": "M\u00e9s usuaris es poden afegir m\u00e9s tard en el tauler d'instruments.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Cancel",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "Country:",
"LabelLanguage": "Language:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferred metadata language:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferences",
"TabPassword": "Password",
"TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
"TabImage": "Image",
"TabProfile": "Profile",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Audio language preference:",
"LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiles",
"TabSecurity": "Security",
"ButtonAddUser": "Add User",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Save",
"ButtonResetPassword": "Reset Password",
"LabelNewPassword": "New password:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "Name",
- "OptionFolderSort": "Folders",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Versi\u00f3 Oficial",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Inestable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/cs.json b/dashboard-ui/strings/html/cs.json
index c86302cddb..cb3a95bdbd 100644
--- a/dashboard-ui/strings/html/cs.json
+++ b/dashboard-ui/strings/html/cs.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Zav\u0159\u00edt",
"LabelVisitCommunity": "Nav\u0161t\u00edvit komunitu",
- "LabelGithub": "GitHub",
"LabelSwagger": "Swagger",
"LabelStandard": "Standardn\u00ed",
- "LabelApiDocumentation": "Dokumentace API",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Proch\u00e1zet knihovnu",
- "LabelConfigureServer": "Konfigurovat Emby",
"LabelOpenLibraryViewer": "Otev\u0159\u00edt knihovnu",
"LabelRestartServer": "Restartovat server",
"LabelShowLogWindow": "Zobrazit okno z\u00e1znam\u016f",
"LabelPrevious": "P\u0159edchoz\u00ed",
"LabelFinish": "Dokon\u010dit",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Dal\u0161\u00ed",
"LabelYoureDone": "Hotovo!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "V\u00edtejte v Emby!",
+ "OptionRelease": "Ofici\u00e1ln\u00ed vyd\u00e1n\u00ed",
+ "OptionBeta": "Betaverze",
+ "OptionDev": "Dev (Nestabiln\u00ed\/V\u00fdvoj\u00e1\u0159sk\u00e1)",
"ThisWizardWillGuideYou": "Tento pr\u016fvodce V\u00e1m pom\u016f\u017ee proj\u00edt procesem nastaven\u00ed. Pro za\u010d\u00e1tek vyberte jazyk.",
"TellUsAboutYourself": "\u0158ekn\u011bte n\u00e1m n\u011bco o sob\u011b",
- "ButtonQuickStartGuide": "Rychl\u00fd pr\u016fvodce",
"LabelYourFirstName": "Va\u0161e k\u0159estn\u00ed jm\u00e9no:",
"MoreUsersCanBeAddedLater": "Dal\u0161\u00ed u\u017eivatele m\u016f\u017eete p\u0159idat pozd\u011bji na n\u00e1st\u011bnce.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Povolit automatick\u00e9 mapov\u00e1n\u00ed port\u016f",
"LabelEnableAutomaticPortMappingHelp": "UPnP umo\u017e\u0148uje automatick\u00e9 nastaven\u00ed routeru pro vzd\u00e1len\u00fd p\u0159\u00edstup. Nemus\u00ed fungovat s n\u011bkter\u00fdmi typy router\u016f.",
- "HeaderTermsOfService": "Emby Podm\u00ednky slu\u017eby",
- "MessagePleaseAcceptTermsOfService": "Ne\u017e budete pokra\u010dovat, p\u0159ijm\u011bte pros\u00edm podm\u00ednky slu\u017eby a z\u00e1sady ochrany osobn\u00edch \u00fadaj\u016f.",
- "OptionIAcceptTermsOfService": "Souhlas\u00edm s podm\u00ednkami slu\u017eby",
- "ButtonPrivacyPolicy": "Ochrana osobn\u00edch \u00fadaj\u016f",
- "ButtonTermsOfService": "Podm\u00ednky slu\u017eby",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Povolit ukl\u00e1d\u00e1n\u00ed do mezipam\u011bti webov\u00e9 odezvy klienta",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organizovat",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "P\u0159idat u\u017eivatele",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin k\u00f3d:",
- "OptionHideWatchedContentFromLatestMedia": "Skr\u00fdt p\u0159ehr\u00e1n obsah ze seznamu naposledy p\u0159idan\u00fdch m\u00e9di\u00ed",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Zru\u0161it",
- "ButtonExit": "Zav\u0159\u00edt",
- "ButtonNew": "Nov\u00e9",
- "HeaderTV": "TV",
- "HeaderAudio": "Zvuk",
- "HeaderVideo": "Video",
- "HeaderPaths": "Cesty",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Nastaven\u00ed Va\u0161i knihovny m\u00e9di\u00ed",
"ButtonAddMediaFolder": "P\u0159idat slo\u017eku m\u00e9di\u00ed",
"LabelFolderType": "Typ slo\u017eky:",
"ReferToMediaLibraryWiki": "Pod\u00edvejte se na wiki knihovny m\u00e9di\u00ed.",
"LabelCountry": "Zem\u011b:",
"LabelLanguage": "Jazyk:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferovan\u00fd jazyk metadat:",
"LabelSaveLocalMetadata": "Ulo\u017eit p\u0159ebaly a metadata do slo\u017eky s m\u00e9dii",
"LabelSaveLocalMetadataHelp": "Povol\u00edte-li ulo\u017een\u00ed p\u0159ebal\u016f a metadat do slo\u017eky s m\u00e9dii bude mo\u017en\u00e9 je jednodu\u0161e upravovat.",
@@ -130,37 +47,16 @@
"TabPreferences": "P\u0159edvolby",
"TabPassword": "Heslo",
"TabLibraryAccess": "P\u0159\u00edstup ke knihovn\u011b",
- "TabAccess": "Access",
"TabImage": "Obr\u00e1zek",
"TabProfile": "Profil",
- "TabMetadata": "Metadata",
- "TabImages": "Obr\u00e1zky",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "N\u00e1zvy",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Zobrazit chyb\u011bj\u00edc\u00ed epizody",
"LabelUnairedMissingEpisodesWithinSeasons": "Zobrazit neodvys\u00edlan\u00e9 epizody v r\u00e1mci sez\u00f3n",
"HeaderVideoPlaybackSettings": "Nastaven\u00ed p\u0159ehr\u00e1v\u00e1n\u00ed videa",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Up\u0159ednost\u0148ovan\u00fd jazyk videa:",
"LabelSubtitleLanguagePreference": "Up\u0159ednost\u0148ovan\u00fd jazyk titulk\u016f:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Pouze vynucen\u00e9 titulky",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profily",
"TabSecurity": "Zabezpe\u010den\u00ed",
"ButtonAddUser": "P\u0159idat u\u017eivatele",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Ulo\u017eit",
"ButtonResetPassword": "Obnovit heslo",
"LabelNewPassword": "Nov\u00e9 heslo:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maxim\u00e1ln\u00ed povolen\u00e9 rodi\u010dovsk\u00e9 hodnocen\u00ed:",
"MaxParentalRatingHelp": "Obsah s vy\u0161\u0161\u00edm hodnocen\u00edm bude tomuto u\u017eivateli blokov\u00e1n.",
"LibraryAccessHelp": "Vyberte slo\u017eky m\u00e9di\u00ed pro sd\u00edlen\u00ed s t\u00edmto u\u017eivatelem. Administr\u00e1to\u0159i budou moci editovat v\u0161echny slo\u017eky pomoc\u00ed metadata mana\u017eeru.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Odstranit obr\u00e1zek",
- "LabelSelectUsers": "Vyberte u\u017eivatele:",
"ButtonUpload": "Nahr\u00e1t",
"HeaderUploadNewImage": "Nahr\u00e1t nov\u00fd obr\u00e1zek",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Tady nic nen\u00ed.",
"MessagePleaseEnsureInternetMetadata": "Pros\u00edm zkontrolujte, zda m\u00e1te povoleno stahov\u00e1n\u00ed metadat z internetu.",
"TabSuggested": "Doporu\u010den\u00e9",
- "TabSuggestions": "Suggestions",
"TabLatest": "Posledn\u00ed",
"TabUpcoming": "Nadch\u00e1zej\u00edc\u00ed",
"TabShows": "Seri\u00e1ly",
@@ -217,6 +110,7 @@
"OptionAscending": "Vzestupn\u011b",
"OptionDescending": "Sestupn\u011b",
"OptionRuntime": "D\u00e9lka",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Po\u010det p\u0159ehr\u00e1n\u00ed",
"OptionDatePlayed": "Datum p\u0159ehr\u00e1n\u00ed",
"OptionDateAdded": "Datum p\u0159id\u00e1n\u00ed",
@@ -226,16 +120,10 @@
"OptionTrackName": "N\u00e1zev skladby",
"OptionCommunityRating": "Hodnocen\u00ed komunity",
"OptionNameSort": "N\u00e1zev",
- "OptionFolderSort": "Slo\u017eky",
"OptionBudget": "Rozpo\u010det",
"OptionRevenue": "P\u0159\u00edjem",
"OptionPoster": "Plak\u00e1t",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Pozad\u00ed",
"OptionTimeline": "\u010casov\u00e1 osa",
- "OptionThumb": "Miniatura",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Prapor",
"OptionCriticRating": "Hodnocen\u00ed kritik\u016f",
"OptionVideoBitrate": "Bitrate videa",
"OptionResumable": "Pozastavaviteln\u00fd",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Rozvrh \u00faloh",
"TabMyPlugins": "Moje pluginy",
"TabCatalog": "Katalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatick\u00e9 aktualizace",
"HeaderNowPlaying": "Pr\u00e1v\u011b hraje",
"HeaderLatestAlbums": "Posledn\u00ed alba",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Naposledy p\u0159ehr\u00e1v\u00e1no",
"HeaderFrequentlyPlayed": "Nej\u010dast\u011bji p\u0159ehr\u00e1v\u00e1no",
"DevBuildWarning": "Dev (v\u00fdvoj\u00e1\u0159sk\u00e1) sestaven\u00ed jsou vyd\u00e1v\u00e1na ob\u010das a nepravideln\u011b. Tato sestaven\u00ed nejsou testov\u00e1na, aplikace mohou b\u00fdt nestabiln\u00ed a n\u011bkter\u00e9 sou\u010d\u00e1sti nemus\u00ed fungovat v\u016fbec.",
+ "OptionThumb": "Miniatura",
+ "OptionBanner": "Prapor",
"LabelVideoType": "Typ vide:",
"OptionBluray": "Bluray",
"OptionDvd": "DVD",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Vlastnosti:",
- "LabelService": "Service:",
- "LabelStatus": "Stav:",
- "LabelVersion": "Verze:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Titulky",
"OptionHasTrailer": "Uk\u00e1zka\/trailer",
"OptionHasThemeSong": "Tematick\u00e1 hudba",
@@ -268,8 +153,6 @@
"TabMovies": "Filmy",
"TabStudios": "Studia",
"TabTrailers": "Uk\u00e1zky\/trailery",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Posledn\u00ed filmy",
"HeaderLatestTrailers": "Posledn\u00ed uk\u00e1zky\/trailery",
"OptionHasSpecialFeatures": "Speci\u00e1ln\u00ed funkce",
@@ -290,32 +173,24 @@
"OptionFriday": "P\u00e1tek",
"OptionSaturday": "Sobota",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Chyb\u011bj\u00edc\u00ed IMDb Id",
"OptionMissingTvdbId": "Chyb\u011bj\u00edc\u00ed TheTVDB Id",
"OptionMissingOverview": "Chyb\u011bj\u00edc\u00ed p\u0159ehled",
"OptionFileMetadataYearMismatch": "Neodpov\u00edd\u00e1 rok v metadatech a v souboru.",
"TabGeneral": "Obecn\u00e9",
"TitleSupport": "Podpora",
- "LabelSeasonNumber": "Season number",
"TabLog": "Z\u00e1znam",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "O programu",
"TabSupporterKey": "Kl\u00ed\u010d sponzora",
"TabBecomeSupporter": "Sta\u0148te se sponzorem",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Prohledat znalostn\u00ed b\u00e1zi.",
"VisitTheCommunity": "Nav\u0161t\u00edvit komunitu",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Skr\u00fdt tohoto u\u017eivatele z p\u0159ihla\u0161ovac\u00edch obrazovek",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Zablokovat tohoto u\u017eivatele",
"OptionDisableUserHelp": "Pokud je zablokov\u00e1n, server nepovol\u00ed tomuto u\u017eivateli \u017e\u00e1dn\u00e9 p\u0159ipojen\u00ed. Existuj\u00edc\u00ed p\u0159ipojen\u00ed bude okam\u017eit\u011b p\u0159eru\u0161eno.",
"HeaderAdvancedControl": "Pokro\u010dil\u00e9 nastaven\u00ed",
"LabelName": "Jm\u00e9no:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Povolit tomuto u\u017eivateli spr\u00e1vu serveru",
"HeaderFeatureAccess": "P\u0159\u00edstup k funkc\u00edm",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Chyb\u011bj\u00edc\u00ed Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Vybrat",
"ButtonGroupVersions": "Skupinov\u00e9 verze",
"PismoMessage": "Vyu\u017e\u00edv\u00e1me spr\u00e1vce soubor\u016f \"Pismo\" skrze dotovanou licenci.",
- "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
- "HeaderCredits": "Credits",
"PleaseSupportOtherProduces": "Pros\u00edm podpo\u0159te dal\u0161\u00ed bezplatn\u00e9 produkty, kter\u00e9 vyu\u017e\u00edv\u00e1me:",
"VersionNumber": "Verze {0}",
"TabPaths": "Cesty",
"TabServer": "Server",
"TabTranscoding": "P\u0159ek\u00f3dov\u00e1n\u00ed",
"TitleAdvanced": "Pokro\u010dil\u00e9",
- "OptionRelease": "Ofici\u00e1ln\u00ed vyd\u00e1n\u00ed",
- "OptionBeta": "Betaverze",
- "OptionDev": "Dev (Nestabiln\u00ed\/V\u00fdvoj\u00e1\u0159sk\u00e1)",
"LabelAllowServerAutoRestart": "Povolit automatick\u00fd restart serveru pro proveden\u00ed aktualizace",
"LabelAllowServerAutoRestartHelp": "Server se restartuje pouze v p\u0159\u00edpad\u011b, \u017ee \u017e\u00e1dn\u00fd z u\u017eivatel\u016f nen\u00ed aktivn\u00ed-",
"LabelEnableDebugLogging": "Povolit z\u00e1znam pro lad\u011bn\u00ed",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specifikujte adres\u00e1\u0159. Nechte pr\u00e1zdn\u00e9 pro defaultn\u00ed nastaven\u00ed.",
"LabelCachePath": "Adres\u00e1\u0159 pro cache:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Obr\u00e1zky dle n\u00e1zvu cesty:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Adres\u00e1\u0159 pro metadata:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episody",
"OptionOtherVideos": "Ostatn\u00ed videa",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Povolit automatick\u00e9 aktualizace z TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Povolit automatick\u00e9 aktualizace z TheTVDB.org",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferovan\u00fd jazyk:",
"ButtonAutoScroll": "Automatick\u00e9 posouv\u00e1n\u00ed",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Heslo nen\u00ed nutn\u00e9, pokud se p\u0159ihla\u0161ujete z m\u00edstn\u00edho PC-",
"TabGuide": "Pr\u016fvodce",
"TabChannels": "Kan\u00e1ly",
- "TabCollections": "Kolekce",
"HeaderChannels": "Kan\u00e1ly",
"TabRecordings": "Nahran\u00e9",
"TabScheduled": "Napl\u00e1nov\u00e1no",
"TabSeries": "S\u00e9rie",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Zru\u0161it nahr\u00e1v\u00e1n\u00ed",
"HeaderPrePostPadding": "P\u0159ed\/po nahr\u00e1v\u00e1n\u00ed",
"LabelPrePaddingMinutes": "Minuty nahr\u00e1van\u00e9 p\u0159ed za\u010d\u00e1tkem nahr\u00e1v\u00e1n\u00ed",
@@ -416,13 +272,10 @@
"TabStatus": "Stav",
"TabSettings": "Nastaven\u00ed",
"ButtonRefreshGuideData": "Obnovit data pr\u016fvodce",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priorita",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Nahr\u00e1vat pouze nov\u00e9 epizody",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Dny",
"HeaderActiveRecordings": "Aktivn\u00ed nahr\u00e1v\u00e1n\u00ed",
"HeaderLatestRecordings": "Posledn\u00ed nahr\u00e1v\u00e1n\u00ed",
@@ -431,17 +284,16 @@
"ButtonEdit": "Upravit",
"ButtonRecord": "Nahr\u00e1vat",
"ButtonDelete": "Odstranit",
- "ButtonRemove": "Odstranit",
"OptionRecordSeries": "Nahr\u00e1t s\u00e9rie",
"HeaderDetails": "Detaily",
+ "OptionFolderSort": "Slo\u017eky",
+ "OptionBackdrop": "Pozad\u00ed",
"TitleLiveTV": "\u017div\u00e1 TV",
"LabelNumberOfGuideDays": "Po\u010det dn\u016f pro sta\u017een\u00ed dat pr\u016fvodce:",
"LabelNumberOfGuideDaysHelp": "Sta\u017een\u00edm v\u00edce dn\u016f dat pr\u016fvodce umo\u017en\u00ed v pl\u00e1nech nastavit budouc\u00ed nahr\u00e1v\u00e1n\u00ed v\u00edce do budoucna. M\u016f\u017ee v\u0161ak d\u00e9le trvat sta\u017een\u00ed t\u011bchto dat. Auto vybere mo\u017enost podle po\u010dtu kan\u00e1l\u016f.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "P\u0159ed pokra\u010dov\u00e1n\u00edm je vy\u017eadov\u00e1n plugin TV poskytovatele.",
"LiveTvPluginRequiredHelp": "Pros\u00edm nainstalujte jeden z dostupn\u00fdch plugin\u016f, jako Next PVR nebo ServerWmc",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Miniatura",
"OptionDownloadMenuImage": "Nab\u00eddka",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Prim\u00e1rn\u00ed",
"HeaderFetchImages": "Na\u010d\u00edst obr\u00e1zky:",
"HeaderImageSettings": "Nastaven\u00ed obr\u00e1zk\u016f",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maxim\u00e1ln\u00ed po\u010det obr\u00e1zk\u016f na pozad\u00ed pro polo\u017eku:",
"LabelMaxScreenshotsPerItem": "Maxim\u00e1ln\u00ed po\u010det screenshot\u016f:",
"LabelMinBackdropDownloadWidth": "Maxim\u00e1ln\u00ed \u0161\u00ed\u0159ka pozad\u00ed:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Herci a obsazen\u00ed",
"HeaderAdditionalParts": "Dal\u0161\u00ed sou\u010d\u00e1sti",
"ButtonSplitVersionsApart": "Rozd\u011blit verze od sebe",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Chyb\u00ed",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Nahrazen\u00ed cest se pou\u017e\u00edv\u00e1 pro namapov\u00e1n\u00ed cest k serveru, kter\u00e9 je p\u0159\u00edstupn\u00e9 u\u017eivateli. Povolen\u00edm p\u0159\u00edm\u00e9ho p\u0159\u00edstupu m\u016f\u017ee umo\u017enit u\u017eivateli jeho p\u0159ehr\u00e1n\u00ed bez u\u017eit\u00ed streamov\u00e1n\u00ed a p\u0159ek\u00f3dov\u00e1n\u00ed servru.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Maxim\u00e1ln\u00ed kvalita",
"OptionEnableDebugTranscodingLogging": "Povolit z\u00e1znam p\u0159ek\u00f3dov\u00e1n\u00ed (pro debugging)",
"OptionEnableDebugTranscodingLoggingHelp": "Toto nastaven\u00ed vytv\u00e1\u0159\u00ed velmi velk\u00e9 soubory se z\u00e1znamy a doporu\u010duje se pouze v p\u0159\u00edpad\u011b probl\u00e9m\u016f",
+ "ButtonNew": "Nov\u00e9",
+ "TabMetadata": "Metadata",
+ "TabImages": "Obr\u00e1zky",
+ "TabCollectionTitles": "N\u00e1zvy",
+ "ButtonSearch": "Hled\u00e1n\u00ed",
+ "ButtonRemove": "Odstranit",
"EditCollectionItemsHelp": "P\u0159idejte nebo odeberte v\u0161echny filmy, seri\u00e1ly, alba, knihy nebo hry, kter\u00e9 chcete seskupit v r\u00e1mci t\u00e9to kolekce.",
"HeaderAddTitles": "P\u0159idat n\u00e1zvy",
"LabelEnableDlnaPlayTo": "Povolit DLNA p\u0159ehr\u00e1v\u00e1n\u00ed",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Syst\u00e9mov\u00e9 cesty",
"LinkCommunity": "Komunita",
"LinkGithub": "GitHub",
- "LinkApi": "Api",
"LinkApiDocumentation": "Dokumentace API",
"LabelFriendlyServerName": "N\u00e1zev serveru:",
"LabelFriendlyServerNameHelp": "Toto jm\u00e9no bude pou\u017eito jako identifikace serveru, ponech\u00e1te-li pr\u00e1zdn\u00e9 bude pou\u017eit n\u00e1zev po\u010d\u00edta\u010de.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "Nov\u00e1 kolekce",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Vytvo\u0159it",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "\u010c\u00edslo portu web socketu:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "P\u0159eru\u0161it",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Klienti",
"LabelCompleted": "Hotovo",
+ "LabelFailed": "Failed",
"LabelSkipped": "P\u0159esko\u010deno",
"HeaderEpisodeOrganization": "Organizace epizod",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Vy\u017eadovan\u00e9 jenom pro s\u00fabory s v\u00edce epizodami",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "P\u0159esunout",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Posledn\u00ed novinky",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "B\u011b\u017e\u00edc\u00ed \u00falohy",
"HeaderActiveDevices": "Akt\u00edvn\u00ed za\u0159\u00edzen\u00ed",
"HeaderPendingInstallations": "\u010cekaj\u00edc\u00ed instalace",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restartovat nyn\u00ed",
"ButtonRestart": "Restart",
"ButtonShutdown": "Vypnout",
"ButtonUpdateNow": "Aktualizujte te\u010f",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Pros\u00edm, vypn\u011bte server a aktualizujte ru\u010dne.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "V\u00fdchoz\u00ed u\u017eivatel",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Nastaven\u00ed serveru",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Je vy\u017eadov\u00e1n restart serveru",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Je vy\u017eadov\u00e1n restart serveru",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "U\u017eivatel:",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Vyberte u\u017eivatele:",
"OptionAllUsers": "V\u0161ichni u\u017eivatel\u00e9",
"OptionAdminUsers": "Administr\u00e1to\u0159i",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Vpravo",
"ButtonBack": "Zp\u011bt",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Dom\u016f",
- "ButtonSearch": "Hled\u00e1n\u00ed",
"ButtonSettings": "Nastaven\u00ed",
"ButtonTakeScreenshot": "Zachytit obrazovku",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigace",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Sc\u00e9ny",
"ButtonSubtitles": "Titulky",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Zoskupit filmy do kolekc\u00ed.",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Kolekce",
"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",
"LabelType": "Typ:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video kodeky:",
"LabelProfileAudioCodecs": "Audio kodeky:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identifikace",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "P\u0159esko\u010dit, pokud video ji\u017e obsahuje grafick\u00e9 titulky",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Titulky",
- "TabChapters": "Kapitoly",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Registrovat",
+ "LabelSkipIfGraphicalSubsPresent": "P\u0159esko\u010dit, pokud video ji\u017e obsahuje grafick\u00e9 titulky",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Stav:",
+ "LabelVersion": "Verze:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Vlo\u017ete text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Pouze vynucen\u00e9 titulky",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Kolekce",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Vyhledat titulky",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Jazyky",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Povolit kulisy",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Hlavn\u00ed str\u00e1nka",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Ano",
"OptionNo": "Ne",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Pokra\u010dovat",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Hl\u00e1\u0161en\u00ed",
"HeaderMetadataManager": "Spr\u00e1vce metadat",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Ozna\u010dit jako p\u0159e\u010dten\u00e9",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Nejsledovan\u011bj\u0161\u00ed",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Zav\u0159\u00edt",
+ "HeaderConfirmDeletion": "Potvrdit smaz\u00e1n\u00ed",
+ "HeaderHomePage": "Hlavn\u00ed str\u00e1nka",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Zam\u00edtnout",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Filmy",
"ViewTypeTvShows": "Televize",
"ViewTypeGames": "Hry",
"ViewTypeMusic": "Hudba",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Kolekce",
- "ViewTypeChannels": "Kan\u00e1ly",
- "ViewTypeLiveTV": "\u017div\u00e1 TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Kan\u00e1ly",
+ "ViewTypeLiveTV": "\u017div\u00e1 TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Kapitoly",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Slo\u017eky m\u00e9di\u00ed",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Titulky",
"TabServices": "Slu\u017eby",
"TabLogs": "Z\u00e1znamy",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Zav\u0159\u00edt",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Zvuk",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Potvrdit smaz\u00e1n\u00ed",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "GitHub",
+ "LabelApiDocumentation": "Dokumentace API",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Rychl\u00fd pr\u016fvodce",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Podm\u00ednky slu\u017eby",
+ "MessagePleaseAcceptTermsOfService": "Ne\u017e budete pokra\u010dovat, p\u0159ijm\u011bte pros\u00edm podm\u00ednky slu\u017eby a z\u00e1sady ochrany osobn\u00edch \u00fadaj\u016f.",
+ "OptionIAcceptTermsOfService": "Souhlas\u00edm s podm\u00ednkami slu\u017eby",
+ "ButtonPrivacyPolicy": "Ochrana osobn\u00edch \u00fadaj\u016f",
+ "ButtonTermsOfService": "Podm\u00ednky slu\u017eby",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Povolit ukl\u00e1d\u00e1n\u00ed do mezipam\u011bti webov\u00e9 odezvy klienta",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Cesty",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organizovat",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin k\u00f3d:",
+ "ButtonExit": "Zav\u0159\u00edt",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "P\u0159idat u\u017eivatele",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Konfigurovat Emby",
+ "WelcomeToProject": "V\u00edtejte v Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Skr\u00fdt p\u0159ehr\u00e1n obsah ze seznamu naposledy p\u0159idan\u00fdch m\u00e9di\u00ed",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Titulky",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/da.json b/dashboard-ui/strings/html/da.json
index 1904ef8731..28f10e3ccc 100644
--- a/dashboard-ui/strings/html/da.json
+++ b/dashboard-ui/strings/html/da.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Afslut",
"LabelVisitCommunity": "Bes\u00f8g F\u00e6lleskab",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Api dokumentation",
- "LabelDeveloperResources": "Udviklerressourcer",
"LabelBrowseLibrary": "Gennemse bibliotek",
- "LabelConfigureServer": "Konfigurer Emby",
"LabelOpenLibraryViewer": "\u00c5ben Biblioteksfremviser",
"LabelRestartServer": "Genstart Server",
"LabelShowLogWindow": "Vis Log",
"LabelPrevious": "Forrige",
"LabelFinish": "Slut",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "N\u00e6ste",
"LabelYoureDone": "Du er f\u00e6rdig!",
- "ButtonAddToCollection": "Tilf\u00f8j til samling",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Velkommen til Emby!",
+ "OptionRelease": "Officiel udgivelse",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Ustabil)",
"ThisWizardWillGuideYou": "Denne guide vil hj\u00e6lpe dig igennem ops\u00e6tningen. For at begynde, v\u00e6lg venligst dit fortrukne sprog.",
"TellUsAboutYourself": "Fort\u00e6l os lidt om dig selv",
- "ButtonQuickStartGuide": "Hurtig-start guide",
"LabelYourFirstName": "Dit fornavn",
"MoreUsersCanBeAddedLater": "Flere brugere kan tilf\u00f8jes senere i betjeningspanelet.",
"UserProfilesIntro": "Emby har indbygget underst\u00f8ttelse af brugerprofiler. Dette giver hver bruger sine egne indstillinger for visning, afspilningsstatus og for\u00e6ldrekontrol.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Udtr\u00e6kning af kapitelbilleder lader klienter vise billeder i scenev\u00e6lgeren. Denne proces kan v\u00e6re langsom og processorbelastende, og kan kr\u00e6ve adskillige gigabytes harddiskplads. Processen k\u00f8rer som en natlig planlagt opgave, selv om dette kan \u00e6ndres i planl\u00e6ggeren. Det anbefales ikke at k\u00f8re denne proces i tidsrum hvor der er brugere p\u00e5 systemet.",
"LabelEnableAutomaticPortMapping": "Aktiver automatisk port kortl\u00e6gning",
"LabelEnableAutomaticPortMappingHelp": "UPnP tillader automatisk routerkonfiguration for nem fjernadgang. Dette virker muligvis ikke med alle routere.",
- "HeaderTermsOfService": "Emby tjenestevilk\u00e5r",
- "MessagePleaseAcceptTermsOfService": "Accepter venligst tjenestevilk\u00e5rene og privatlivspolitikken f\u00f8r du forts\u00e6tter.",
- "OptionIAcceptTermsOfService": "Jeg accepterer tjenestevilk\u00e5rene",
- "ButtonPrivacyPolicy": "Privatlivspolitik",
- "ButtonTermsOfService": "Tjenestevilk\u00e5r",
- "HeaderDeveloperOptions": "Indstillinger for udviklere",
- "OptionEnableWebClientResponseCache": "Aktiver webklient svar-caching",
- "OptionDisableForDevelopmentHelp": "Konfigurer disse som n\u00f8dvendigt for udviklingsform\u00e5l af webklienten",
- "OptionEnableWebClientResourceMinification": "Aktiver formindskelse af webklientens forbrug af ressourcer",
- "LabelDashboardSourcePath": "Webklient kildesti:",
- "LabelDashboardSourcePathHelp": "Hvis serveren k\u00f8rer fra kilden, specificer da stien til dashboard-ui mappen. Alle webklient-filer vil blive leveret fra denne lokation.",
- "ButtonConvertMedia": "Konverter medie",
- "ButtonOrganize": "Organiser",
- "LinkedToEmbyConnect": "Koblet til Emby Connect",
- "HeaderSupporterBenefits": "Supporter fordele",
- "HeaderAddUser": "Tilf\u00f8j bruger",
- "LabelAddConnectSupporterHelp": "For at tilf\u00f8je en bruger som ikke er angivet skal du f\u00f8rst sammenk\u00e6de deres konto til Emby Connect fra deres brugers profilside.",
- "LabelPinCode": "Pinkode:",
- "OptionHideWatchedContentFromLatestMedia": "Skjul sete fra seneste",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Annuller",
- "ButtonExit": "Afslut",
- "ButtonNew": "Ny",
- "HeaderTV": "TV",
- "HeaderAudio": "Lyd",
- "HeaderVideo": "Video",
- "HeaderPaths": "Stier",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Nem pinkode",
- "HeaderGrownupsOnly": "Kun for voksne!",
- "DividerOr": "-- eller --",
- "HeaderInstalledServices": "Installerede tjenester",
- "HeaderAvailableServices": "Tilg\u00e6ngelige tjenester",
- "MessageNoServicesInstalled": "Ingen tjenester er installeret.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Indtast din pinkode for adgang",
- "KidsModeAdultInstruction": "Klik p\u00e5 l\u00e5seikonet i nederste h\u00f8jre hj\u00f8rne for at konfigurere eller forlade b\u00f8rnetilstand. Du vil blive bedt om din pinkode.",
- "ButtonConfigurePinCode": "Konfigurer pinkode",
- "HeaderAdultsReadHere": "Voksne l\u00e6s her!",
- "RegisterWithPayPal": "Registrer med PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync kr\u00e6ver medlemsskab",
- "HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode",
- "LabelSyncTempPath": "Sti for midlertidige filer:",
- "LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.",
- "LabelCustomCertificatePath": "Sti til eget certifikat:",
- "LabelCustomCertificatePathHelp": "Angiv dit eget ssl certifikat som .pfx fil. Hvis du undlader dette, danner serveren et selvsigneret certifikat.",
- "TitleNotifications": "Underretninger",
- "ButtonDonateWithPayPal": "Doner via PayPal",
- "OptionDetectArchiveFilesAsMedia": "Opfat arkiver som medier",
- "OptionDetectArchiveFilesAsMediaHelp": "Aktiver dette for at f\u00e5 filer med .zip og .rar endelser genkendt dom medier.",
- "LabelEnterConnectUserName": "Brugernavn eller email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Aktiver udvidede filmvisninger",
- "LabelEnableEnhancedMoviesHelp": "Aktiver dette for at f\u00e5 vist film som mapper med trailere, medvirkende og andet relateret inhold.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Udgivelsesdato",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Fejlet",
- "LabelSeries": "Serier",
- "ButtonFullscreen": "Skift fuldsk\u00e6rm",
- "ButtonAudioTracks": "Lydspor",
- "ButtonPreviousTrack": "Forrige spor",
- "ButtonNextTrack": "N\u00e6ste spor",
- "HeaderEpisodes": "Episoder:",
- "FolderTypeMovies": "FIlm",
- "FolderTypeMusic": "Musik",
- "FolderTypeAdultVideos": "Voksenfilm",
- "FolderTypePhotos": "Fotos",
- "FolderTypeMusicVideos": "Musikvideoer",
- "FolderTypeHomeVideos": "Hjemmevideoer",
- "FolderTypeGames": "Spil",
- "FolderTypeBooks": "B\u00f8ger",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Nedarv",
- "LabelContentType": "Indholdstype:",
- "TitleScheduledTasks": "Planlagte opgaver",
"HeaderSetupLibrary": "Konfigurer dit mediebibliotek",
"ButtonAddMediaFolder": "Tilf\u00f8j mediemappe",
"LabelFolderType": "Mappetype:",
"ReferToMediaLibraryWiki": "Der henvises til mediebibliotekets wiki.",
"LabelCountry": "Land:",
"LabelLanguage": "Sprog:",
- "LabelTimeLimitHours": "Tidsgr\u00e6nse (timer):",
- "ButtonJoinTheDevelopmentTeam": "Bliv medlem af Teamet bag Emby",
"HeaderPreferredMetadataLanguage": "Foretrukket sprog for metadata:",
"LabelSaveLocalMetadata": "Gem illustrationer og metadata i mediemapper",
"LabelSaveLocalMetadataHelp": "Lagring af illustrationer og metadata i mediemapper vil placerer dem et sted hvor de nemt kan redigeres.",
@@ -130,37 +47,16 @@
"TabPreferences": "Indstillinger",
"TabPassword": "Adgangskode",
"TabLibraryAccess": "Biblioteksadgang",
- "TabAccess": "Adgang",
"TabImage": "Billede",
"TabProfile": "Profil",
- "TabMetadata": "Metadata",
- "TabImages": "Billeder",
- "TabNotifications": "Underretninger",
- "TabCollectionTitles": "Titler",
- "HeaderDeviceAccess": "Enhedsadgang",
- "OptionEnableAccessFromAllDevices": "Tillad adgang fra alle enheder",
- "OptionEnableAccessToAllChannels": "Tillad adgang til alle kanaler",
- "OptionEnableAccessToAllLibraries": "Tillad adgang til alle biblioteker",
- "DeviceAccessHelp": "Dette g\u00e6lder kun for enheder, der kan identificeres unikt, og vil ikke forhindre adgang fra en browser. Ved at filtrere brugeres adgang fra enheder, kan du forhindre dem i at bruge nye enheder f\u00f8r de er blevet godkendt her.",
"LabelDisplayMissingEpisodesWithinSeasons": "Vis manglende episoder i s\u00e6soner",
"LabelUnairedMissingEpisodesWithinSeasons": "Vis endnu ikke sendte episoder i s\u00e6soner",
"HeaderVideoPlaybackSettings": "Indstillinger for videoafspilning",
- "HeaderPlaybackSettings": "Indstillinger for afspilning",
"LabelAudioLanguagePreference": "Foretrukket lydsprog:",
"LabelSubtitleLanguagePreference": "Foretrukket undertekstsprog:",
- "OptionDefaultSubtitles": "Standard",
- "OptionOnlyForcedSubtitles": "Kun tvungne undertekster",
- "OptionAlwaysPlaySubtitles": "Altid",
- "OptionNoSubtitles": "Ingen undertekster",
- "OptionDefaultSubtitlesHelp": "Undertekster p\u00e5 det foretrukne sprog vil blive vist n\u00e5r lyden er p\u00e5 et fremmedsprog.",
- "OptionOnlyForcedSubtitlesHelp": "Kun undertekster, der er markeret som tvungne, vil blive vist.",
- "OptionAlwaysPlaySubtitlesHelp": "Undertekster p\u00e5 det foretrukne sprog vil blive vist uanset lydsproget.",
- "OptionNoSubtitlesHelp": "Undertekster vil ikke blive vist som standard.",
"TabProfiles": "Profiler",
"TabSecurity": "Sikkerhed",
"ButtonAddUser": "Tilf\u00f8j bruger",
- "ButtonAddLocalUser": "Tilf\u00f8j lokal bruger",
- "ButtonInviteUser": "Inviter bruger",
"ButtonSave": "Gem",
"ButtonResetPassword": "Nulstil adgangskode",
"LabelNewPassword": "Ny kode:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "H\u00f8jst tilladte aldersgr\u00e6nse:",
"MaxParentalRatingHelp": "Indhold med en h\u00f8jere gr\u00e6nse, skjules for denne bruger.",
"LibraryAccessHelp": "V\u00e6lg hvilke mediemapper der skal deles med denne bruger. Administratorer vil kunne redigere alle mapper ved hj\u00e6lp af metadata administratoren.",
- "ChannelAccessHelp": "V\u00e6lg hvilke kanaler der skal deles med denne bruger. Administratorer vil kunne redigere alle kanaler ved hj\u00e6lp af metadata administratoren.",
"ButtonDeleteImage": "Slet billede",
- "LabelSelectUsers": "V\u00e6lg brugere:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload nyt billede",
"LabelDropImageHere": "Tr\u00e6k billede hertil og slip",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Her er ingenting.",
"MessagePleaseEnsureInternetMetadata": "S\u00f8rg venligst for at hentning af metadata fra internettet er aktiveret.",
"TabSuggested": "Foresl\u00e5et",
- "TabSuggestions": "Forslag",
"TabLatest": "Seneste",
"TabUpcoming": "Kommende",
"TabShows": "Serier",
@@ -217,6 +110,7 @@
"OptionAscending": "Stigende",
"OptionDescending": "Faldende",
"OptionRuntime": "Varighed",
+ "OptionReleaseDate": "Udgivelsesdato",
"OptionPlayCount": "Gange afspillet",
"OptionDatePlayed": "Dato for afspilning",
"OptionDateAdded": "Dato for tilf\u00f8jelse",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nummerets navn",
"OptionCommunityRating": "F\u00e6llesskabsvurdering",
"OptionNameSort": "Navn",
- "OptionFolderSort": "Mapper",
"OptionBudget": "Budget",
"OptionRevenue": "Indt\u00e6gt",
"OptionPoster": "Plakat",
- "OptionPosterCard": "Plakat",
- "OptionBackdrop": "Baggrund",
"OptionTimeline": "Tidslinje",
- "OptionThumb": "Miniature",
- "OptionThumbCard": "Miniature kort",
- "OptionBanner": "Banner",
"OptionCriticRating": "Kritikervurdering",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Kan genoptages",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Planlagte opgaver",
"TabMyPlugins": "Mine tilf\u00f8jelser",
"TabCatalog": "Katalog",
- "TitlePlugins": "Tilf\u00f8jelser",
"HeaderAutomaticUpdates": "Automatiske opdateringer",
"HeaderNowPlaying": "Afspilles nu",
"HeaderLatestAlbums": "Seneste albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Afspillet for nyligt",
"HeaderFrequentlyPlayed": "Ofte afspillet",
"DevBuildWarning": "Udviklerversionen er bleeding edge. Nye versioner bliver ofte udgivet og bliver ikke testet inden. Applikationen kan risikere at lukke ned og funktioner kan nogle gange slet ikke virke.",
+ "OptionThumb": "Miniature",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Egenskaber:",
- "LabelService": "Tjeneste:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Sidste resultat:",
"OptionHasSubtitles": "Undertekster",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Temasang",
@@ -268,8 +153,6 @@
"TabMovies": "Film",
"TabStudios": "Studier",
"TabTrailers": "Trailere",
- "LabelArtists": "Artister:",
- "LabelArtistsHelp": "Angiv flere ved at s\u00e6tte ; mellem dem.",
"HeaderLatestMovies": "Seneste film",
"HeaderLatestTrailers": "Seneste trailere",
"OptionHasSpecialFeatures": "Specielle egenskaber",
@@ -290,32 +173,24 @@
"OptionFriday": "Fredag",
"OptionSaturday": "L\u00f8rdag",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Manglende IMDB Id",
"OptionMissingTvdbId": "Manglende TheTVDB Id",
"OptionMissingOverview": "Manglende overblik",
"OptionFileMetadataYearMismatch": "Uoverensstemmelse i \u00e5rstal mellem fil og metadata",
"TabGeneral": "Generelt",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "Om",
"TabSupporterKey": "Supporter n\u00f8gle",
"TabBecomeSupporter": "Bliv Supporter",
- "ProjectHasCommunity": "Emby har et blomstrende f\u00e6llesskab af brugere og bidragsydere.",
"CheckoutKnowledgeBase": "Tjek vores vidensdatabase for at f\u00e5 det meste ud af Emby.",
"SearchKnowledgeBase": "S\u00f8g i vidensdatabasen",
"VisitTheCommunity": "Bes\u00f8g f\u00e6llesskabet",
- "VisitProjectWebsite": "Bes\u00f8g Embys hjemmeside",
- "VisitProjectWebsiteLong": "Bes\u00f8g Emby hjemmesiden for at blive opdateret p\u00e5 de seneste nyheder og holde dig opdateret med udviklernes blog.",
"OptionHideUser": "Vis ikke denne bruger p\u00e5 loginsiden",
- "OptionHideUserFromLoginHelp": "Nyttigt for private kontoer eller skjulte administratorkontoer. Brugeren skal logge ind ved at skive sit brugernavn og adgangskode.",
"OptionDisableUser": "Deaktiver denne bruger",
"OptionDisableUserHelp": "Hvis deaktiveret vil serveren ikke tillade forbindelser fra denne bruger. Eksisterende forbindelser vil blive afbrudt \u00f8jeblikkeligt.",
"HeaderAdvancedControl": "Avanceret kontrol",
"LabelName": "Navn:",
- "ButtonHelp": "Hj\u00e6lp",
"OptionAllowUserToManageServer": "Tillad denne bruger at administrere serveren",
"HeaderFeatureAccess": "Adgang til funktioner",
"OptionAllowMediaPlayback": "Tillad afspilning ad medier",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Tillad sletning af medier",
"OptionAllowManageLiveTv": "Tillad administration af live TV optagelser",
"OptionAllowRemoteControlOthers": "Tillad fjernstyring af andre brugere",
- "OptionAllowRemoteSharedDevices": "Tillad fjernstyring af delte enheder",
- "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheder er delte indtil en bruger begynder at bruge den.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Fjernstyring",
"OptionMissingTmdbId": "Manglende Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "V\u00e6lg",
"ButtonGroupVersions": "Grupp\u00e9r versioner",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
- "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
- "HeaderCredits": "Anerkendelser",
"PleaseSupportOtherProduces": "St\u00f8t venligst andre gratis produkter vi bruger:",
"VersionNumber": "Version {0}",
"TabPaths": "Stier",
"TabServer": "Server",
"TabTranscoding": "Transkodning",
"TitleAdvanced": "Avanceret",
- "OptionRelease": "Officiel udgivelse",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Ustabil)",
"LabelAllowServerAutoRestart": "Tillad serveren at genstarte automatisk for at p\u00e5f\u00f8re opdateringer",
"LabelAllowServerAutoRestartHelp": "Serveren vil kun genstarte i inaktive perioder, n\u00e5r ingen brugere er aktive",
"LabelEnableDebugLogging": "Aktiver fejlfindingslogning",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Angiv brugerdefinerede stier, hvor det \u00f8nskes. Lad felter st\u00e5 tomme for at bruge standardindstillingerne.",
"LabelCachePath": "Cachesti:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Billeder efter navn-sti:",
"LabelImagesByNamePathHelp": "Definer en alternativ mappe til nedhentede billeder af skuespillere, genrer og studier.",
"LabelMetadataPath": "Metadatasti:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episoder",
"OptionOtherVideos": "Andre videoer",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Aktiver automatiske opdateringer",
"LabelAutomaticUpdatesTmdb": "Aktiver automatiske opdateringer fra TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Aktiver automatiske opdateringer fra TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personlig api n\u00f8gle:",
- "LabelFanartApiKeyHelp": "Foresp\u00f8rgsler til fanart uden en personlig api n\u00f8gle returnerer resultater godkendt for over 7 dage siden. Med en personlig api n\u00f8gle falder dette til 48 timer, og hvis du er fanart VIP medlem falder dette yderligere til omkring 10 minutter.",
"ExtractChapterImagesHelp": "Udtr\u00e6kning af kapitelbilleder lader klienter vise billeder i scenev\u00e6lgeren. Denne proces kan v\u00e6re langsom og processorbelastende, og kan kr\u00e6ve adskillige gigabytes harddiskplads. Processen k\u00f8rer som en natlig planlagt opgave, selv om dette kan \u00e6ndres i planl\u00e6ggeren. Det anbefales ikke at k\u00f8re denne proces i tidsrum hvor der er brugere p\u00e5 systemet.",
"LabelMetadataDownloadLanguage": "Foretrukket sprog for nedhentning:",
"ButtonAutoScroll": "Rul automatisk",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Adgangskoder er ikke p\u00e5kr\u00e6vet n\u00e5r der logges ind fra localhost.",
"TabGuide": "Guide",
"TabChannels": "Kanaler",
- "TabCollections": "Samlinger",
"HeaderChannels": "Kanaler",
"TabRecordings": "Optagelser",
"TabScheduled": "Planlagt",
"TabSeries": "Serier",
- "TabFavorites": "Favoritter",
- "TabMyLibrary": "Mit bibliotek",
"ButtonCancelRecording": "Annuller optagelse",
"HeaderPrePostPadding": "F\u00f8r\/efter tidstilf\u00f8jelse",
"LabelPrePaddingMinutes": "Start minutter f\u00f8r:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Indstillinger",
"ButtonRefreshGuideData": "Opdater Guide data",
- "ButtonRefresh": "Opdater",
- "ButtonAdvancedRefresh": "Avanceret opdatering",
"OptionPriority": "Prioritet",
"OptionRecordOnAllChannels": "Optag fra alle kanaler",
"OptionRecordAnytime": "Optag p\u00e5 ethverts tidspunkt",
"OptionRecordOnlyNewEpisodes": "Optag kun nye episoder",
- "HeaderRepeatingOptions": "Indstillinger for gentagelse",
"HeaderDays": "Dage",
"HeaderActiveRecordings": "Aktive optagelser",
"HeaderLatestRecordings": "Seneste optagelse",
@@ -431,17 +284,16 @@
"ButtonEdit": "Rediger",
"ButtonRecord": "Optag",
"ButtonDelete": "Slet",
- "ButtonRemove": "Fjern",
"OptionRecordSeries": "Optag serie",
"HeaderDetails": "Detaljer",
+ "OptionFolderSort": "Mapper",
+ "OptionBackdrop": "Baggrund",
"TitleLiveTV": "Live TV",
"LabelNumberOfGuideDays": "Antal dage af programguide data der skal hentes:",
"LabelNumberOfGuideDaysHelp": "Hentning af flere dages programguide data giver mulighed for at planl\u00e6gge l\u00e6ngere ud i fremtiden, og se flere programoversigter, men det vil ogs\u00e5 tage l\u00e6ngere tid at hente. Auto vil v\u00e6lge baseret p\u00e5 antallet af kanaler.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Tjenester",
"LiveTvPluginRequired": "Der kr\u00e6ves et Live TV udbyder-plugin for at forts\u00e6tte",
"LiveTvPluginRequiredHelp": "Installer venligst et af vores tilg\u00e6ngelige plugins, s\u00e5 som NextPVR eller ServerWMC.",
- "LabelCustomizeOptionsPerMediaType": "Tilpas til medietype:",
"OptionDownloadThumbImage": "Miniature",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Prim\u00e6r",
"HeaderFetchImages": "Hent billeder:",
"HeaderImageSettings": "Billedindstillinger",
- "TabOther": "Andet",
"LabelMaxBackdropsPerItem": "Maksimum antal af bagt\u00e6pper per element:",
"LabelMaxScreenshotsPerItem": "Maksimum antal af sk\u00e6rmbilleder per element:",
"LabelMinBackdropDownloadWidth": "Minimum bagt\u00e6ppe bredde:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Medvirkende",
"HeaderAdditionalParts": "Andre stier:",
"ButtonSplitVersionsApart": "Opdel versioner",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Mangler",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Stisubstitutioner bruges til at \u00e6ndre en sti p\u00e5 serveren til en sti klienterne kan tilg\u00e5. Ved at tillade klienterne direkte adgang til medier p\u00e5 serveren, kan de m\u00e5ske afpille dem direkte over netv\u00e6rket uden at skulle bruge serverens ressourcer til at streame og transkode dem.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "H\u00f8jeste kvalitet",
"OptionEnableDebugTranscodingLogging": "Aktiver debug logning af transkodning",
"OptionEnableDebugTranscodingLoggingHelp": "Dette generer meget store logfiler, og er kun anbefalet at bruge til fejlfindingsform\u00e5l.",
+ "ButtonNew": "Ny",
+ "TabMetadata": "Metadata",
+ "TabImages": "Billeder",
+ "TabCollectionTitles": "Titler",
+ "ButtonSearch": "S\u00f8g",
+ "ButtonRemove": "Fjern",
"EditCollectionItemsHelp": "Tilf\u00f8j eller fjern hvilken som helst film, serie, albums, bog eller spil, du har lyst til at tilf\u00f8je til denne samling.",
"HeaderAddTitles": "Tilf\u00f8j titler",
"LabelEnableDlnaPlayTo": "Aktiver DLNA \"Afspil Til\"",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Systemstier",
"LinkCommunity": "F\u00e6llesskab",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api dokumentation",
"LabelFriendlyServerName": "Nemt servernavn",
"LabelFriendlyServerNameHelp": "Dette navn bruges til at identificere serveren. Hvis det ikke udfyldes, bruges computerens navn.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "Ny samling",
- "ButtonSubmit": "Indsend",
"ButtonCreate": "Skab",
- "LabelCustomCss": "Brugerdefineret css",
- "LabelCustomCssHelp": "Anvend din egen css til webinterfacet.",
- "LabelLocalHttpServerPortNumber": "Lokalt http portnummer:",
- "LabelLocalHttpServerPortNumberHelp": "Det portnummer Embys http-server bruger.",
- "LabelPublicHttpPort": "Offentligt http portnummer:",
- "LabelPublicHttpPortHelp": "Det offentlige portnummer som bliver knyttet til det lokale http portnummer.",
- "LabelPublicHttpsPort": "Offentligt https portnummer:",
- "LabelPublicHttpsPortHelp": "Det offentlige portnummer som bliver knyttet til det lokale https portnummer.",
- "LabelEnableHttps": "Angiv https til den eksterne adresse",
- "LabelEnableHttpsHelp": "Aktiver dette for at f\u00e5 serveren til at oplyse en https url som eksterne adresse til klienter.",
- "LabelHttpsPort": "Lokalt https portnummer",
- "LabelHttpsPortHelp": "Det portnummer Embys https-server bruger.",
"LabelWebSocketPortNumber": "Web socket portnummer:",
- "LabelEnableAutomaticPortMap": "Aktiver automatisk port mapping",
- "LabelEnableAutomaticPortMapHelp": "Fors\u00f8g at mappe den offentlige port til den lokale port med uPnP. Dette virker ikke med alle routere.",
"LabelExternalDDNS": "Ekstern WAN adresse:",
"LabelExternalDDNSHelp": "Hvis du bruger en dynamisk DNS service, s\u00e5 skriv dit hostnavn her. Emby apps vil bruge det til at forbinde eksternt. Efterlad feltet tomt for at bruge automatisk opdagelse.",
"TabResume": "Forts\u00e6t",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Klienter",
"LabelCompleted": "F\u00e6rdig",
+ "LabelFailed": "Fejlet",
"LabelSkipped": "Oversprunget",
"HeaderEpisodeOrganization": "Organisation af episoder",
+ "LabelSeries": "Serier",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Nummer p\u00e5 sidste episode",
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for filer med flere episoder.",
"HeaderSupportTheTeam": "St\u00f8t Emby-holdet",
@@ -627,16 +473,13 @@
"OptionMove": "Flyt",
"LabelTransferMethodHelp": "Kopier eller flyt filer fra den overv\u00e5gede mappe.",
"HeaderLatestNews": "Sidste nyt",
- "HeaderHelpImproveProject": "Hj\u00e6lp med at forbedre Emvy",
"HeaderRunningTasks": "K\u00f8rende opgaver",
"HeaderActiveDevices": "Aktive enheder",
"HeaderPendingInstallations": "Ventende installationer",
- "HeaderServerInformation": "Information om serveren",
"ButtonRestartNow": "Genstart nu",
"ButtonRestart": "Genstart",
"ButtonShutdown": "Luk",
"ButtonUpdateNow": "Opdater nu",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Luk venligst serveren og opdater manuelt.",
"NewServerVersionAvailable": "En ny version af Emby serveren er tilg\u00e6ngelig!",
"ServerUpToDate": "Emby serveren er opdateret",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Angiver intervallet i sekunder mellem serverens 'i live' beskeder.",
"LabelDefaultUser": "Standardbruger:",
"LabelDefaultUserHelp": "Bestemmer hvilken brugers bibliotek der bliver vist p\u00e5 tilkoblede enheder. Dette kan \u00e6ndres ved at bruge profiler.",
+ "HeaderPlaybackSettings": "Indstillinger for afspilning",
"TitleDlna": "DLNA",
- "TitleChannels": "Kanaler",
"HeaderServerSettings": "Serverindstillinger",
"LabelWeatherDisplayLocation": "Lokation for vejrvisning:",
"LabelWeatherDisplayLocationHelp": "USA postnummer \/ by, stat, land \/ by, land",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "N\u00e5r dette ikke bruges, kan klienter vise en loginsk\u00e6rm med billeder af brugerne.",
"OptionOtherApps": "Andre apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Underretninger",
"HeaderNotificationList": "Klik p\u00e5 en underretning for at indstille hvordan den sender.",
+ "LabelNotificationEnabled": "Aktiver denne underretning",
+ "NotificationOptionVideoPlayback": "Videoafspilning startet",
+ "NotificationOptionAudioPlayback": "Lydafspilning startet",
+ "NotificationOptionGamePlayback": "Spilafspilning startet",
+ "NotificationOptionNewLibraryContent": "Nyt indhold tilf\u00f8jet",
+ "NotificationOptionServerRestartRequired": "Genstart af serveren p\u00e5kr\u00e6vet",
+ "LabelMonitorUsers": "Overv\u00e5g aktivitet fra:",
+ "LabelSendNotificationToUsers": "Send underretning til:",
+ "LabelUseNotificationServices": "Brug f\u00f8lgende tjenester:",
"NotificationOptionApplicationUpdateAvailable": "Programopdatering tilg\u00e6ngelig",
"NotificationOptionApplicationUpdateInstalled": "Programopdatering installeret",
"NotificationOptionPluginUpdateInstalled": "Opdatering til plugin installeret",
"NotificationOptionPluginInstalled": "Plugin installeret",
"NotificationOptionPluginUninstalled": "Plugin afinstalleret",
- "NotificationOptionVideoPlayback": "Videoafspilning startet",
- "NotificationOptionAudioPlayback": "Lydafspilning startet",
- "NotificationOptionGamePlayback": "Spilafspilning startet",
- "NotificationOptionVideoPlaybackStopped": "Videoafspilning stoppet",
- "NotificationOptionAudioPlaybackStopped": "Lydafspilning stoppet",
- "NotificationOptionGamePlaybackStopped": "Spilafspilning stoppet",
"NotificationOptionTaskFailed": "Fejl i planlagt opgave",
"NotificationOptionInstallationFailed": "Fejl ved installation",
- "NotificationOptionNewLibraryContent": "Nyt indhold tilf\u00f8jet",
- "NotificationOptionNewLibraryContentMultiple": "Nyt indhold tilf\u00f8jet (flere)",
- "NotificationOptionCameraImageUploaded": "Kamerabillede tilf\u00f8jet",
- "NotificationOptionUserLockedOut": "Bruger l\u00e5st",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Genstart af serveren p\u00e5kr\u00e6vet",
- "LabelNotificationEnabled": "Aktiver denne underretning",
- "LabelMonitorUsers": "Overv\u00e5g aktivitet fra:",
- "LabelSendNotificationToUsers": "Send underretning til:",
- "LabelUseNotificationServices": "Brug f\u00f8lgende tjenester:",
"CategoryUser": "Bruger",
"CategorySystem": "System",
- "CategoryApplication": "Program",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Titel p\u00e5 besked",
"LabelAvailableTokens": "Tilg\u00e6ngelige tokens:",
"AdditionalNotificationServices": "Kig i plugin-kataloget for at f\u00e5 yderligere uderretnings-tjenester",
+ "LabelSelectUsers": "V\u00e6lg brugere:",
"OptionAllUsers": "Alle brugere",
"OptionAdminUsers": "Administratore",
"OptionCustomUsers": "Brugerdefineret",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "H\u00f8jre",
"ButtonBack": "Tilbage",
"ButtonInfo": "Info",
- "ButtonOsd": "Vis p\u00e5 sk\u00e6rmen",
"ButtonPageUp": "Side op",
"ButtonPageDown": "Side ned",
"PageAbbreviation": "PG",
"ButtonHome": "Hjem",
- "ButtonSearch": "S\u00f8g",
"ButtonSettings": "Indstillinger",
"ButtonTakeScreenshot": "Gem sk\u00e6rmbillede",
"ButtonLetterUp": "Bogstav op",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Spiller nu",
"TabNavigation": "Navigation",
- "TabControls": "Kontroller",
+ "ButtonFullscreen": "Skift fuldsk\u00e6rm",
"ButtonScenes": "Scener",
"ButtonSubtitles": "Undertekster",
+ "ButtonAudioTracks": "Lydspor",
+ "ButtonPreviousTrack": "Forrige spor",
+ "ButtonNextTrack": "N\u00e6ste spor",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "N\u00e6ste",
- "ButtonPrevious": "Forrige",
"LabelGroupMoviesIntoCollections": "Grupper film i samlinger",
"LabelGroupMoviesIntoCollectionsHelp": "Film i samlinger vil blive vist som en samlet enhed i filmlister.",
+ "CategoryApplication": "Program",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin fejl",
+ "TabControls": "Kontroller",
"ButtonVolumeUp": "Volume +",
"ButtonVolumeDown": "Volume -",
"ButtonMute": "Lyd fra",
"HeaderLatestMedia": "Seneste medier",
+ "OptionNoSubtitles": "Ingen undertekster",
"OptionSpecialFeatures": "Specielle egenskaber",
+ "ChannelAccessHelp": "V\u00e6lg hvilke kanaler der skal deles med denne bruger. Administratorer vil kunne redigere alle kanaler ved hj\u00e6lp af metadata administratoren.",
"HeaderCollections": "Samlinger",
"LabelProfileCodecsHelp": "Adskil med komma. Kan efterlades tom for at g\u00e6lde for alle codecs.",
"LabelProfileContainersHelp": "Adskil med komma. Kan efterlades tom for at g\u00e6lde for alle containere.",
"HeaderResponseProfile": "Svarprofil",
"LabelType": "Type:",
- "LabelPersonRole": "Rolle:",
- "LabelPersonRoleHelp": "Rolle g\u00e6lder generelt kun for skuespillere.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "N\u00e5r dette er aktiveret, bliver alle videoer vist i DIDL som \"object.item.videoItem\" i stedet for mere specifikke typer, som f. eks. \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Underst\u00f8ttede medieformater",
"TabIdentification": "Identifikation",
- "HeaderIdentification": "Identifikation",
"TabDirectPlay": "Direkte afspilning",
"TabContainers": "Containere",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "Disse v\u00e6rdier kontrollerer hvordan Emby pr\u00e6senterer sig til enheden.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Angiv en maksimal bitrate i omr\u00e5der med begr\u00e6nset b\u00e5ndbredde, eller hvis enheden selv har begr\u00e6nsninger.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Angiv en maksimal bitrate til streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Angiv en maksimal bitrate n\u00e5r der synkroniseres indhold med h\u00f8j kvalitet.",
- "LabelMusicStaticBitrate": "Musik sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Angiv en maksimal bitrate n\u00e5r der synkroniseres musik.",
- "LabelMusicStreamingTranscodingBitrate": "Bitrate for musiktranskodning",
- "LabelMusicStreamingTranscodingBitrateHelp": "Angiv en maksimal bitrate n\u00e5r der streames musik.",
"OptionIgnoreTranscodeByteRangeRequests": "Ignorer foresp\u00f8rgsler vedr\u00f8rende transcode byte interval",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Hvis aktiveret vil disse foresp\u00f8rgsler blive efterkommet, men byte range headeren ignoreret.",
"LabelFriendlyName": "System venligt navn",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Dette er kr\u00e6vet for nogle enheder der ikke er s\u00e6rligt gode til tidss\u00f8gning.",
"HeaderSubtitleDownloadingHelp": "N\u00e5r Emby skanner dine videofiler, kan den s\u00f8ge efter manglende undertekster, og hente dem fra en undertekstudbyder, som f. eks. OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Hent undertekster til:",
- "MessageNoChapterProviders": "Installer et kapiteludbyder-plugin, som f. ekst. ChapterDb, for at f\u00e5 yderligere muligheder med kapitler.",
- "LabelSkipIfGraphicalSubsPresent": "Spring over hvis videoen allerede indeholder grafiske undertekster",
- "LabelSkipIfGraphicalSubsPresentHelp": "Ved at bruger tekstbaserede undertekster kan du f\u00e5 en mere effektive levering og neds\u00e6tte sandsynligheden for transkodning.",
"TabSubtitles": "Undertekster",
- "TabChapters": "Kapitler",
- "HeaderDownloadChaptersFor": "Hent kapitelnavne til:",
"LabelOpenSubtitlesUsername": "Open Subtitles brugernavn:",
"LabelOpenSubtitlesPassword": "Open Subtitles adgangskode:",
- "HeaderChapterDownloadingHelp": "N\u00e5r Emby skanner dine videofiler, kan den hente kapitelnavne fra internettet med kapitel-plugins, som f. eks. ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Afspil standardlydsporet uanset sproget",
- "LabelSubtitlePlaybackMode": "Underteksttilstand:",
"LabelDownloadLanguages": "Hent sprog:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Spring over hvis videoen allerede indeholder grafiske undertekster",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Ved at bruger tekstbaserede undertekster kan du f\u00e5 en mere effektive levering og neds\u00e6tte sandsynligheden for transkodning.",
"LabelSkipIfAudioTrackPresent": "Undlad hvis standardlydsporet er det samme sprog",
"LabelSkipIfAudioTrackPresentHelp": "Angiv ikke dette for at sikre at alle videoer har undertekster, uanset hvilket sprog lydsporet anvender.",
+ "NotificationOptionNewLibraryContentMultiple": "Nyt indhold tilf\u00f8jet (flere)",
"HeaderSendMessage": "Send besked",
"ButtonSend": "Send",
"LabelMessageText": "Beskedtekst:",
+ "LabelService": "Tjeneste:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Sidste resultat:",
+ "ButtonOsd": "Vis p\u00e5 sk\u00e6rmen",
"MessageNoAvailablePlugins": "Ingen tilg\u00e6ngelige plugins.",
"LabelDisplayPluginsFor": "Vis plugins til:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episodenavn",
- "LabelSeriesNamePlain": "Serienavn",
"ValueSeriesNamePeriod": "Serie.navn",
"ValueSeriesNameUnderscore": "Serie_navn",
"ValueEpisodeNamePeriod": "Episode.navn",
"ValueEpisodeNameUnderscore": "Episode_navn",
- "LabelSeasonNumberPlain": "S\u00e6sonnummer",
- "LabelEpisodeNumberPlain": "Episodenummer",
- "LabelEndingEpisodeNumberPlain": "Nummer p\u00e5 sidste episode",
"HeaderTypeText": "Indtast tekst",
"LabelTypeText": "Tekst",
+ "OptionDefaultSubtitles": "Standard",
+ "OptionOnlyForcedSubtitles": "Kun tvungne undertekster",
+ "OptionAlwaysPlaySubtitles": "Altid",
+ "OptionDefaultSubtitlesHelp": "Undertekster p\u00e5 det foretrukne sprog vil blive vist n\u00e5r lyden er p\u00e5 et fremmedsprog.",
+ "OptionOnlyForcedSubtitlesHelp": "Kun undertekster, der er markeret som tvungne, vil blive vist.",
+ "OptionAlwaysPlaySubtitlesHelp": "Undertekster p\u00e5 det foretrukne sprog vil blive vist uanset lydsproget.",
+ "OptionNoSubtitlesHelp": "Undertekster vil ikke blive vist som standard.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Anerkendelser",
+ "TabCollections": "Samlinger",
+ "TabFavorites": "Favoritter",
+ "TabMyLibrary": "Mit bibliotek",
+ "LabelCustomizeOptionsPerMediaType": "Tilpas til medietype:",
+ "LabelPlayDefaultAudioTrack": "Afspil standardlydsporet uanset sproget",
+ "LabelSubtitlePlaybackMode": "Underteksttilstand:",
+ "TabOther": "Andet",
+ "NotificationOptionVideoPlaybackStopped": "Videoafspilning stoppet",
+ "NotificationOptionAudioPlaybackStopped": "Lydafspilning stoppet",
+ "NotificationOptionGamePlaybackStopped": "Spilafspilning stoppet",
"HeaderSearchForSubtitles": "S\u00f8g efter undertekster",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "Ingenting fundet.",
"TabDisplay": "Visning",
"TabLanguages": "Sprog",
- "TabAppSettings": "App-indstillinger",
"LabelEnableThemeSongs": "Aktiver temasange",
"LabelEnableBackdrops": "Aktiver backdrops",
"LabelEnableThemeSongsHelp": "N\u00e5r dette er aktiveret vil der blive afspillet temasange mens man kigger i biblioteket.",
"LabelEnableBackdropsHelp": "N\u00e5r dette er aktiveret vil der blive vist backdrops i baggrunden af nogle sider n\u00e5r man kigger i biblioteket.",
- "HeaderHomePage": "Hjemmeside",
- "HeaderSettingsForThisDevice": "Indstillinger for denne enhed",
"OptionAuto": "Auto",
"OptionYes": "Ja",
"OptionNo": "Nej",
- "HeaderOptions": "Indstillinger",
- "HeaderIdentificationResult": "Identifikationsresultat",
"LabelHomePageSection1": "Hjemmeside sektion 1",
"LabelHomePageSection2": "Hjemmeside sektion 2",
"LabelHomePageSection3": "Hjemmeside sektion 3",
- "LabelHomePageSection4": "Hjemmeside sektion 4",
- "OptionMyMediaButtons": "Mine medier (knapper)",
- "OptionMyMedia": "Mine medier",
- "OptionMyMediaSmall": "Mine medier (lille)",
"OptionResumablemedia": "Forts\u00e6t",
"OptionLatestMedia": "Seneste medier",
- "OptionLatestChannelMedia": "Seneste kanalenheder",
- "HeaderLatestChannelItems": "Seneste kanalenheder",
"OptionNone": "Ingen",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Rapporter",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Indstillinger",
"MessageLoadingChannels": "Henter kanalindhold...",
- "MessageLoadingContent": "Henter indhold...",
"ButtonMarkRead": "Marker som l\u00e6st",
"OptionDefaultSort": "Standard",
"OptionCommunityMostWatchedSort": "Mest sete",
"TabNextUp": "N\u00e6ste",
- "PlaceholderUsername": "Brugernavn",
- "HeaderBecomeProjectSupporter": "Bliv en Emby supporter",
"MessageNoMovieSuggestionsAvailable": "Ingen filmforslag er tilg\u00e6ngelige. Begynd at se og vurder dine film, og kom tilbage for at se dine anbefalinger.",
"MessageNoCollectionsAvailable": "Samlinger tillader dig at lave personlige grupperinger affi lm, serier, albums, b\u00f8ger og spil. Klik p\u00e5 + knappen for at starte med at lave samlinger.",
- "MessageNoPlaylistsAvailable": "Afspilningslister lader dig lave lister af indhold der kan afspilles lige efter hinanden. For at tilf\u00f8je indhold til afspilningslisten, skal du h\u00f8jreklikke, eller trykke og holde, og derefter v\u00e6lge Tilf\u00f8j til afspilningsliste.",
- "MessageNoPlaylistItemsAvailable": "Denne afspilningsliste er tom.",
+ "ButtonClose": "Luk",
+ "HeaderConfirmDeletion": "Bekr\u00e6ft sletning",
+ "HeaderHomePage": "Hjemmeside",
+ "HeaderSettingsForThisDevice": "Indstillinger for denne enhed",
"ButtonDismiss": "Afvis",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Rediger denne brugers profil, billede og personlige indstillinger.",
+ "TitleChannels": "Kanaler",
"LabelChannelStreamQuality": "Foretrukken internet stream kvalitet:",
"LabelChannelStreamQualityHelp": "I omr\u00e5der med lav b\u00e5ndbredde kan begr\u00e6nsning af kvaliteten sikre en flydende streamingoplevelse.",
"OptionBestAvailableStreamQuality": "Bedst mulige",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Slet indhold efter (dage):",
"LabelChannelDownloadAgeHelp": "Hentet indhold \u00e6ldre end dette vil blive slettet. Det kan stadig afspilles med internet streaming.",
"ChannelSettingsFormHelp": "Installer kanaler som f. eks. Trailers og Vimeo fra plugin-kataloget.",
- "ButtonOptions": "Indstillinger",
- "ViewTypePlaylists": "Afspilningslister",
+ "ButtonAddToCollection": "Tilf\u00f8j til samling",
+ "ButtonSubmit": "Indsend",
"ViewTypeMovies": "Film",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Spil",
"ViewTypeMusic": "Musik",
- "ViewTypeMusicGenres": "Genrer",
- "ViewTypeMusicArtists": "Artister",
"ViewTypeBoxSets": "Samlinger",
- "ViewTypeChannels": "Kanaler",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Vises nu",
- "ViewTypeLatestGames": "Seneste spil",
- "ViewTypeRecentlyPlayedGames": "Afspillet for nylig",
- "ViewTypeGameFavorites": "Favoritter",
- "ViewTypeGameSystems": "Spilsystemer",
- "ViewTypeGameGenres": "Genrer",
- "ViewTypeTvResume": "Forts\u00e6t",
- "ViewTypeTvNextUp": "N\u00e6ste",
- "ViewTypeTvLatest": "Seneste",
- "ViewTypeTvShowSeries": "Serier",
- "ViewTypeTvGenres": "Genrer",
- "ViewTypeTvFavoriteSeries": "Favoritserier",
- "ViewTypeTvFavoriteEpisodes": "Favoritepisoder",
- "ViewTypeMovieResume": "Forts\u00e6t",
- "ViewTypeMovieLatest": "Seneste",
- "ViewTypeMovieMovies": "Film",
- "ViewTypeMovieCollections": "Samlinger",
- "ViewTypeMovieFavorites": "Favoritter",
- "ViewTypeMovieGenres": "Genrer",
- "ViewTypeMusicLatest": "Seneste",
- "ViewTypeMusicPlaylists": "Afspilningslister",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Albumartister",
"HeaderOtherDisplaySettings": "Indstillinger for visning",
- "ViewTypeMusicSongs": "Sange",
- "ViewTypeMusicFavorites": "Favoritter",
- "ViewTypeMusicFavoriteAlbums": "Favoritalbums",
- "ViewTypeMusicFavoriteArtists": "Favoritartister",
- "ViewTypeMusicFavoriteSongs": "Favoritsange",
- "HeaderMyViews": "Mine visninger",
"LabelSelectFolderGroups": "Grupper automatisk indhold i visninger, som f. eks. film, musik og TV:",
"LabelSelectFolderGroupsHelp": "Mapper der ikke er markeret bliver sot for sig selv i deres egen visning.",
+ "ViewTypeChannels": "Kanaler",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Vis voksenindhold",
+ "MessageNoChapterProviders": "Installer et kapiteludbyder-plugin, som f. ekst. ChapterDb, for at f\u00e5 yderligere muligheder med kapitler.",
+ "TabChapters": "Kapitler",
+ "HeaderDownloadChaptersFor": "Hent kapitelnavne til:",
+ "HeaderChapterDownloadingHelp": "N\u00e5r Emby skanner dine videofiler, kan den hente kapitelnavne fra internettet med kapitel-plugins, som f. eks. ChapterDb.",
"OptionLibraryFolders": "Mediemapper",
+ "LabelHomePageSection4": "Hjemmeside sektion 4",
+ "OptionLatestChannelMedia": "Seneste kanalenheder",
+ "HeaderLatestChannelItems": "Seneste kanalenheder",
"TitleRemoteControl": "Fjernstyring",
+ "HeaderMyViews": "Mine visninger",
"OptionLatestTvRecordings": "Seneste optagelser",
+ "ButtonRefresh": "Opdater",
"LabelProtocolInfo": "Protokolinformation:",
"LabelProtocolInfoHelp": "Den v\u00e6rdi der bruges til svar p\u00e5 GetProtocolInfo-foresp\u00f8rgsler fra enheden.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby har indbygget underst\u00f8ttelse af Nfo metadatafiler.For at sl\u00e5 Nfo metadata til eller fra, skal du bruge indstillinger for medietyper p\u00e5 Avanceret-fanen.",
- "LabelKodiMetadataUser": "Synkroniser brugerdata til Nfo'er for:",
- "LabelKodiMetadataUserHelp": "Aktiver dette for at sikre data er ens i Emby og Nfo-filer.",
- "LabelKodiMetadataDateFormat": "Format for udgivelsesdato:",
- "LabelKodiMetadataDateFormatHelp": "Alle datoer i Nfo-filer vil blive l\u00e6st og skrevet med dette format.",
- "LabelKodiMetadataSaveImagePaths": "Gem stier til billeder i Nfo-filer",
- "LabelKodiMetadataSaveImagePathsHelp": "Dette er anbefalet hvis du har billedfiler med navne der ikke lever op til Kodis retningslinjer.",
- "LabelKodiMetadataEnablePathSubstitution": "Aktiver stisubstitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiverer stisubstitution for billedstier med serverens stisubstitutionsindstillinger.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Se stisubstitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Vis en Samlinger visning til filmsamlinger",
- "LabelDisplayCollectionsViewHelp": "Dette skaber en separat visning til samlinger du har skabt eller har adgang til. Du skaber samlinger ved at h\u00f8jreklikke, eller trykke og holde, p\u00e5 en film og v\u00e6lge 'Tilf\u00f8j til samling'. ",
- "LabelKodiMetadataEnableExtraThumbs": "kopier extrafanart til extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "Ved hentning af billeder, kan de gemmes i b\u00e5de extrafanart og extrathumbs. Dette giver maksimal Kodi skin kompatibilitet.",
+ "HeaderSubtitles": "Undertekster",
"TabServices": "Tjenester",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Serverlogfiler:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App navn",
"LabelAppNameExample": "F. eks: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Giv applikationen tilladelse til at kommunikere med Emby.",
+ "TabUsers": "Brugere",
+ "TabScheduledTasks": "Planlagte opgaver",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "V\u00e6rdi:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filtrer",
"ButtonView": "Visning",
"LabelPageSize": "Maks. enheder:",
- "LabelPath": "Sti:",
"LabelView": "Vis:",
- "TabUsers": "Brugere",
- "LabelSortName": "Sorteringsnavn:",
- "LabelDateAdded": "Dato for tilf\u00f8jelse:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Egenskaber",
"HeaderAdvanced": "Avanceret",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Planlagte opgaver",
"HeaderChapters": "Kapitler",
"HeaderResumeSettings": "Indstillinger for forts\u00e6t",
"TabSync": "Sync",
"TitleUsers": "Brugere",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Angiv en maksimal bitrate til streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Angiv en maksimal bitrate n\u00e5r der synkroniseres indhold med h\u00f8j kvalitet.",
"LabelProtocol": "Protokol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Tilf\u00f8j til afspilningsliste",
+ "MessageNoPlaylistsAvailable": "Afspilningslister lader dig lave lister af indhold der kan afspilles lige efter hinanden. For at tilf\u00f8je indhold til afspilningslisten, skal du h\u00f8jreklikke, eller trykke og holde, og derefter v\u00e6lge Tilf\u00f8j til afspilningsliste.",
+ "MessageNoPlaylistItemsAvailable": "Denne afspilningsliste er tom.",
"TabPlaylists": "Afspilningslister",
- "ButtonClose": "Luk",
"LabelAllLanguages": "Alle sprog",
"HeaderBrowseOnlineImages": "Gennemse online billeder",
"LabelSource": "Kilde:",
@@ -1080,7 +874,6 @@
"OptionBox": "\u00c6ske",
"OptionBoxRear": "\u00c6ske bag",
"OptionDisc": "Disk",
- "OptionIcon": "Ikon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Sk\u00e6rmbillede",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Uidentificeret",
"OptionMissingParentalRating": "Mangler aldersgr\u00e6nse",
"OptionStub": "P\u00e5begyndt",
+ "HeaderEpisodes": "Episoder:",
"OptionSeason0": "S\u00e6son 0",
"LabelReport": "Rapport:",
"OptionReportSongs": "Sange",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artister",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Voksenfilm",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Aktivitet",
"ScheduledTaskStartedWithName": "{0} startet",
"ScheduledTaskCancelledWithName": "{0} blev afbrudt",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Hentning af undertekster til {0} fejlede",
"LabelRunningTimeValue": "K\u00f8rselstid: {0}",
"LabelIpAddressValue": "IP-adresse: {0}",
- "UserLockedOutWithName": "Bruger {0} er blevet l\u00e5st",
"UserConfigurationUpdatedWithName": "Brugerkonfigurationen for {0} er blevet opdateret",
"UserCreatedWithName": "Bruger {0} er skabt",
"UserPasswordChangedWithName": "Adgangskoden for {0} er blevet \u00e6ndret",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby er blevet opdateret",
"AuthenticationSucceededWithUserName": "{0} autentificeret",
"FailedLoginAttemptWithUserName": "Fejlslagent loginfors\u00f8g fra {0}",
- "UserDownloadingItemWithValues": "{0} henter {1}",
"UserStartedPlayingItemWithValues": "{0} afspiller {1}",
"UserStoppedPlayingItemWithValues": "{0} har stoppet afpilningen af {1}",
"AppDeviceValues": "App: {0}, Enhed: {1}",
"ProviderValue": "Udbyder: {0}",
+ "HeaderAudio": "Lyd",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Henter indhold...",
"LabelChannelDownloadSizeLimit": "St\u00f8rrelsesbegr\u00e6nsning for hentning (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Begr\u00e6ns st\u00f8rrelsen af mappen med kanalindhold.",
+ "LabelMusicStaticBitrate": "Musik sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Angiv en maksimal bitrate n\u00e5r der synkroniseres musik.",
+ "LabelMusicStreamingTranscodingBitrate": "Bitrate for musiktranskodning",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Angiv en maksimal bitrate n\u00e5r der streames musik.",
"HeaderRecentActivity": "Seneste aktivitet",
"HeaderPeople": "Mennesker",
"HeaderDownloadPeopleMetadataFor": "Hent biografil og billeder for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Vis en mappevisning til visning af enkle mediemapper",
"ViewTypeLiveTvRecordingGroups": "Optagelser",
"ViewTypeLiveTvChannels": "Kanaler",
- "LabelEasyPinCode": "Pinkode:",
- "EasyPasswordHelp": "Din pinkode bruges til offline adgang til underst\u00f8ttede Emby apps, og kan ogs\u00e5 bruges til nemt login inden for eget netv\u00e6rk.",
- "LabelInNetworkSignInWithEasyPassword": "Tillad login inden for eget netv\u00e6rk med pinkode",
- "LabelInNetworkSignInWithEasyPasswordHelp": "Aktiver dette for at loge ind i Emby apps med din pinkode inden for dit eget netv\u00e6rk. Din almindelige adgangskode skal du s\u00e5 kun bruge n\u00e5r du ikke er hjemme. Hvis pinkoden er tom, kan du logge ind uden adgangskode inden for dit eget netv\u00e6rk.",
"HeaderPassword": "Adgangskode",
"HeaderLocalAccess": "Lokal adgang",
"HeaderViewOrder": "Visningorden",
- "ButtonResetEasyPassword": "Nulstil pinkode",
"LabelSelectUserViewOrder": "V\u00e6lg hvilken r\u00e6kkef\u00f8lge dine visninger skal v\u00e6re i i Emby apps",
+ "LabelReleaseDate": "Udgivelsesdato:",
+ "LabelEndDate": "Slutdato:",
+ "LabelYear": "\u00c5r:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "FIlm",
+ "FolderTypeMusic": "Musik",
+ "FolderTypeAdultVideos": "Voksenfilm",
+ "FolderTypePhotos": "Fotos",
+ "FolderTypeMusicVideos": "Musikvideoer",
+ "FolderTypeHomeVideos": "Hjemmevideoer",
+ "FolderTypeGames": "Spil",
+ "FolderTypeBooks": "B\u00f8ger",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artister:",
+ "LabelArtistsHelp": "Angiv flere ved at s\u00e6tte ; mellem dem.",
+ "ButtonAdvancedRefresh": "Avanceret opdatering",
+ "LabelPersonRole": "Rolle:",
+ "LabelPersonRoleHelp": "Rolle g\u00e6lder generelt kun for skuespillere.",
+ "LabelPath": "Sti:",
+ "LabelSortName": "Sorteringsnavn:",
+ "LabelDateAdded": "Dato for tilf\u00f8jelse:",
"LabelMetadataRefreshMode": "Opdateringstilstand for metadata:",
"LabelImageRefreshMode": "Opdateringstilstand for billeder:",
"OptionDownloadMissingImages": "Hent manglende billeder",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Personinformation",
"HeaderIdentifyItem": "Identificer genstand",
"HeaderIdentifyItemHelp": "Indtast et eller flere s\u00f8gekriterier.Fjern kriterier for at f\u00e5 flere s\u00f8geresultater.",
- "HeaderConfirmDeletion": "Bekr\u00e6ft sletning",
"LabelFollowingFileWillBeDeleted": "F\u00f8lgende filer bliver slettet:",
"LabelIfYouWishToContinueWithDeletion": "Hvis du \u00f8nsker at forts\u00e6tte, bekr\u00e6ft venligst ved at indtaste v\u00e6rdien af:",
"ButtonIdentify": "Identificer",
"LabelAlbumArtist": "Albumartist:",
- "LabelAlbumArtists": "Albumartister:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "F\u00e6llesskabsvurdering:",
"LabelVoteCount": "Antal stemmer:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Oversigt:",
"LabelShortOverview": "Kort oversigt:",
- "LabelReleaseDate": "Udgivelsesdato:",
- "LabelYear": "\u00c5r:",
"LabelPlaceOfBirth": "F\u00f8dselssted:",
- "LabelEndDate": "Slutdato:",
"LabelAirDate": "Sendedage:",
"LabelAirTime:": "Sendetid:",
"LabelRuntimeMinutes": "Spilletid (minutter):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Indstillinger for metadata",
"LabelLockItemToPreventChanges": "L\u00e5s for at undg\u00e5 fremtidige \u00e6ndringer",
"MessageLeaveEmptyToInherit": "Efterlad tom for at arve indstillinger fra en overliggende post eller den globale standardv\u00e6rdi.",
- "TabDonate": "Don\u00e9r",
"HeaderDonationType": "Donationstype:",
"OptionMakeOneTimeDonation": "Giv en enkeltst\u00e5ende donation",
- "OptionOneTimeDescription": "Dette er en yderligere donation til holdet for at vise din st\u00f8tte. Det giver ikke nogen andre fordele og vil ikke udl\u00f8se en supporter n\u00f8gle.",
- "OptionLifeTimeSupporterMembership": "Livstid supporter medlemskab",
- "OptionYearlySupporterMembership": "\u00c5rligt supporter medlemskab",
- "OptionMonthlySupporterMembership": "M\u00e5nedligt supporter medlemskab",
"OptionNoTrailer": "Ingen trailer",
"OptionNoThemeSong": "Ingen temasang",
"OptionNoThemeVideo": "Ingen temavideo",
"LabelOneTimeDonationAmount": "Donationsbel\u00f8b:",
- "ButtonDonate": "Don\u00e9r",
- "ButtonPurchase": "K\u00f8b",
"OptionActor": "Skuespiller",
"OptionComposer": "Komponist",
"OptionDirector": "Instrukt\u00f8r",
"OptionGuestStar": "G\u00e6stestjerne",
"OptionProducer": "Producent",
"OptionWriter": "Forfatter",
+ "LabelEpisodeNamePlain": "Episodenavn",
+ "LabelSeriesNamePlain": "Serienavn",
+ "LabelSeasonNumberPlain": "S\u00e6sonnummer",
+ "LabelEpisodeNumberPlain": "Episodenummer",
+ "LabelEndingEpisodeNumberPlain": "Nummer p\u00e5 sidste episode",
+ "OptionOneTimeDescription": "Dette er en yderligere donation til holdet for at vise din st\u00f8tte. Det giver ikke nogen andre fordele og vil ikke udl\u00f8se en supporter n\u00f8gle.",
"LabelAirDays": "Sendedage:",
"LabelAirTime": "Sendetid:",
"HeaderMediaInfo": "Medieinformation",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Information om udvikleren",
"HeaderRevisionHistory": "Revisionshistorik",
"ButtonViewWebsite": "Bes\u00f8g hjemmeside",
+ "ViewTypeLiveTvNowPlaying": "Vises nu",
+ "ViewTypeLatestGames": "Seneste spil",
+ "ViewTypeRecentlyPlayedGames": "Afspillet for nylig",
+ "ViewTypeGameFavorites": "Favoritter",
+ "ViewTypeGameSystems": "Spilsystemer",
+ "ViewTypeGameGenres": "Genrer",
+ "ViewTypeTvResume": "Forts\u00e6t",
+ "ViewTypeTvNextUp": "N\u00e6ste",
+ "ViewTypeTvLatest": "Seneste",
+ "ViewTypeTvGenres": "Genrer",
+ "ViewTypeMovieResume": "Forts\u00e6t",
+ "ViewTypeMovieLatest": "Seneste",
+ "ViewTypeMovieMovies": "Film",
+ "ViewTypeMovieCollections": "Samlinger",
+ "ViewTypeMovieFavorites": "Favoritter",
+ "ViewTypeMovieGenres": "Genrer",
+ "ViewTypeMusicLatest": "Seneste",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Albumartister",
+ "TabDonate": "Don\u00e9r",
+ "OptionLifeTimeSupporterMembership": "Livstid supporter medlemskab",
+ "OptionYearlySupporterMembership": "\u00c5rligt supporter medlemskab",
+ "OptionMonthlySupporterMembership": "M\u00e5nedligt supporter medlemskab",
+ "ViewTypeTvShowSeries": "Serier",
+ "ViewTypeTvFavoriteSeries": "Favoritserier",
+ "ViewTypeTvFavoriteEpisodes": "Favoritepisoder",
"HeaderXmlSettings": "XML indstillinger",
"HeaderXmlDocumentAttributes": "XML dokumentattributter",
"HeaderXmlDocumentAttribute": "XML dokumentattribut",
"XmlDocumentAttributeListHelp": "Disse attributter bliver tilf\u00f8jet til rodelementet i alle XML svar.",
"OptionSaveMetadataAsHidden": "Gem metadata og billeder som skjulte filer",
+ "ViewTypeMusicSongs": "Sange",
"LabelExtractChaptersDuringLibraryScan": "Udtr\u00e6k kapitelbilleder under biblioteksskanning",
"LabelExtractChaptersDuringLibraryScanHelp": "Aktiver dette for at udtr\u00e6kke kapitelbillleder mens videofiler bliver importeret under biblioteksskanningen. Hvi det ikke er aktiveret, bliver de udtrukket n\u00e5r den planlagte opgave kapitelbilleder k\u00f8rer, og lader den almindelige biblioteksskanning afslutte hurtigere.",
- "LabelConnectGuestUserName": "Hans\/hendes Emby brugernavn eller e-mailadresse:",
+ "ViewTypeMusicFavorites": "Favoritter",
+ "ViewTypeMusicFavoriteAlbums": "Favoritalbums",
+ "ViewTypeMusicFavoriteArtists": "Favoritartister",
+ "ViewTypeMusicFavoriteSongs": "Favoritsange",
+ "ButtonAddLocalUser": "Tilf\u00f8j lokal bruger",
+ "HeaderIdentification": "Identifikation",
"LabelConnectUserName": "Emby brugernavn\/e-mail:",
"LabelConnectUserNameHelp": "Forbind denne bruger til en Emby konto for at tillade nem adgang fra enhver Emby app uden at skulle kende serverens IP-adresse.",
- "ButtonLearnMoreAboutEmbyConnect": "L\u00e6r mere om Emby Connect",
+ "ButtonNext": "N\u00e6ste",
+ "ButtonPrevious": "Forrige",
"LabelExternalPlayers": "Eksterne afspillere:",
"LabelExternalPlayersHelp": "Vis knapper til afspilning af indhold i eksterne afspillere. Dette er kun tilg\u00e6ngeligt p\u00e5 enheder der underst\u00f8tter URL skemaer, almindeligvis Android og iOS. Med eksterne afspillere er der generelt gen underst\u00f8ttelse for fjernstyring eller forts\u00e6ttelse.",
- "LabelNativeExternalPlayersHelp": "Hvis knapper til at afspille indhold i eksterne afspillere.",
- "LabelEnableItemPreviews": "Aktiver forh\u00e5ndsvisning af elementer",
- "LabelEnableItemPreviewsHelp": "Hvis aktiveret vil der blive vist glidende forh\u00e5ndsvisninger n\u00e5r der klikkes p\u00e5 elementer p\u00e5 visse sk\u00e6rme.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Undertekstprofil",
"HeaderSubtitleProfiles": "Undertekstprofiler",
"HeaderSubtitleProfilesHelp": "Undertekstprofiler beskriver hvilke undertekstformater der unders\u00f8ttes af enheden.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented undertekster",
"LabelSubtitleFormatHelp": "F. eks: srt",
"ButtonLearnMore": "L\u00e6r mere",
+ "HeaderKodiMetadataHelp": "Emby har indbygget underst\u00f8ttelse af Nfo metadatafiler.For at sl\u00e5 Nfo metadata til eller fra, skal du bruge indstillinger for medietyper p\u00e5 Avanceret-fanen.",
+ "LabelKodiMetadataUser": "Synkroniser brugerdata til Nfo'er for:",
+ "LabelKodiMetadataUserHelp": "Aktiver dette for at sikre data er ens i Emby og Nfo-filer.",
+ "LabelKodiMetadataDateFormat": "Format for udgivelsesdato:",
+ "LabelKodiMetadataDateFormatHelp": "Alle datoer i Nfo-filer vil blive l\u00e6st og skrevet med dette format.",
+ "LabelKodiMetadataSaveImagePaths": "Gem stier til billeder i Nfo-filer",
+ "LabelKodiMetadataSaveImagePathsHelp": "Dette er anbefalet hvis du har billedfiler med navne der ikke lever op til Kodis retningslinjer.",
+ "LabelKodiMetadataEnablePathSubstitution": "Aktiver stisubstitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiverer stisubstitution for billedstier med serverens stisubstitutionsindstillinger.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Se stisubstitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "kopier extrafanart til extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Ved hentning af billeder, kan de gemmes i b\u00e5de extrafanart og extrathumbs. Dette giver maksimal Kodi skin kompatibilitet.",
"TabPlayback": "Afspilning",
"HeaderLanguagePreferences": "Sprogpr\u00e6ferencer",
"TabCinemaMode": "Biograftilstand",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Brug kun trailere for ikke sete film",
"LabelEnableIntroParentalControl": "Aktiver smart for\u00e6ldrekontrol",
"LabelEnableIntroParentalControlHelp": "Vis kun trailere med samme eller lavere aldersgr\u00e6nse end hovedfilmen.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Disse funktioner kr\u00e6ver et aktivt supporter medlemskab",
"OptionTrailersFromMyMoviesHelp": "Kr\u00e6ver ops\u00e6tning af lokale trailere.",
"LabelCustomIntrosPath": "Sti til brugerdefinerede introduktioner:",
"LabelCustomIntrosPathHelp": "En mappe med videofiler. En tilf\u00e6ldig video vil blive vist efter trailerne.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Indstillinger",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Disse funktioner kr\u00e6ver et aktivt supporter medlemskab",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailere:",
"OptionUpcomingDvdMovies": "Brug trailere for nye og kommende DVD'er og Blu-ray",
"OptionUpcomingStreamingMovies": "Brug trailere for nye og kommende film p\u00e5 Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Enkelte brugere kan frav\u00e6lge biograftilstand i deres personlige indstillinger.",
"LabelEnableCinemaMode": "Aktiver biograftilstand",
"HeaderCinemaMode": "Biograftilstand",
+ "TabDevices": "Enheder",
+ "LabelLocalHttpServerPortNumber": "Lokalt http portnummer:",
+ "LabelLocalHttpServerPortNumberHelp": "Det portnummer Embys http-server bruger.",
+ "LabelEnableAutomaticPortMap": "Aktiver automatisk port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Fors\u00f8g at mappe den offentlige port til den lokale port med uPnP. Dette virker ikke med alle routere.",
"LabelDateAddedBehavior": "Dato tilf\u00f8jet opf\u00f8rsel for nyt indhold:",
"OptionDateAddedImportTime": "Brug datoen for indskanning",
"OptionDateAddedFileTime": "Brug filen oprettelsesdato",
"LabelDateAddedBehaviorHelp": "Hvis der findes en metadata-v\u00e6rdi, vil den altid blive brugt f\u00f8r nogle af ovenst\u00e5ende muligheder.",
"LabelNumberTrailerToPlay": "Antal trailere, der skal afspilles:",
+ "LabelChannelDownloadSizeLimitHelpText": "Begr\u00e6ns st\u00f8rrelsen af mappen med kanalindhold.",
"TitleDevices": "Enheder",
"TabCameraUpload": "Kamera upload",
- "TabDevices": "Enheder",
"HeaderCameraUploadHelp": "Upload automatisk fotos og videoer optaget med din enhed til Emby.",
"MessageNoDevicesSupportCameraUpload": "Du har for \u00f8jeblikket ingen enheder der underst\u00f8tter kamera upload.",
"LabelCameraUploadPath": "Kamera upload sti:",
"LabelCameraUploadPathHelp": "Angiv en brugerdefineret upload sti om \u00f8nsket. Hvis der angives en sti, skal den ogs\u00e5 tilf\u00f8jes i biblioteksops\u00e6tningen. Hvis der ikke angives en sti, vil der blive brugt en standardmappe.",
"LabelCreateCameraUploadSubfolder": "Skab en undermappe for hver enhed",
"LabelCreateCameraUploadSubfolderHelp": "Bestemte mapper kan tildeles til enheden, hvis der klikkes p\u00e5 den p\u00e5 enhedssiden.",
+ "ButtonInviteUser": "Inviter bruger",
"LabelCustomDeviceDisplayName": "Vist navn:",
"LabelCustomDeviceDisplayNameHelp": "Angiv en brugerdefineret navn. hvis der ikke angives et navn, bruges det navn enheden sender.",
"HeaderInviteUser": "Inviter bruger",
- "LabelConnectGuestUserNameHelp": "Dette er din vens brugernavn eller e-mailadresse der bruges til login p\u00e5 Embys hjemmeside.",
"HeaderInviteUserHelp": "At dele dine medier med venner er nemmere en nogensinde med Emby Connect.",
"ButtonSendInvitation": "Send invitation",
- "HeaderSignInWithConnect": "Log ind med Emby Connect",
"HeaderGuests": "G\u00e6ster",
"HeaderLocalUsers": "Lokale brugere",
"HeaderPendingInvitations": "Ventende invitationer",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Hverdage",
"OptionWeekends": "Weekender",
"MessageProfileInfoSynced": "Brugerprofil synkroniseret med Emby Connect",
- "HeaderOptionalLinkEmbyAccount": "Valgfrit: Forbind din Emby konto",
"ButtonTrailerReel": "Trailer rulle",
"HeaderTrailerReel": "Trailer rulle",
"OptionPlayUnwatchedTrailersOnly": "Afspil kun ikke sete trailere",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "Ingen trailere fundet. Installer Trailer kanalen for at tilf\u00f8je et bibliotek med trailere fra internettet.",
"HeaderNewUsers": "Nye brugere",
"ButtonSignUp": "Tilmeld dig",
+ "LabelConnectGuestUserName": "Hans\/hendes Emby brugernavn eller e-mailadresse:",
+ "LabelConnectGuestUserNameHelp": "Dette er din vens brugernavn eller e-mailadresse der bruges til login p\u00e5 Embys hjemmeside.",
"ButtonForgotPassword": "Glemt adgangskode",
"OptionDisableUserPreferences": "Fjern adgang til brugerindstillinger",
"OptionDisableUserPreferencesHelp": "Hvis dette er aktiveret, er det kun administratorer der kan \u00e6ndre brugerbilleder, adgangskoder og sprogpr\u00e6ferencer.",
@@ -1365,49 +1222,174 @@
"HeaderShareMediaFolders": "Del mediemapper",
"MessageGuestSharingPermissionsHelp": "De fleste funktioner er indledningsvis utilg\u00e6ngelige for g\u00e6ster, men de kan sl\u00e5s til efter behov.",
"HeaderInvitations": "Invitationer",
- "LabelForgotPasswordUsernameHelp": "Indtast dit brugernavn, hvis du kan huske det.",
"HeaderForgotPassword": "Glemt adgangskode",
+ "LabelForgotPasswordUsernameHelp": "Indtast dit brugernavn, hvis du kan huske det.",
"TitleForgotPassword": "Glemt adgangskode",
"TitlePasswordReset": "Nulstil adgangskode",
"LabelPasswordRecoveryPinCode": "Pinkode",
"HeaderPasswordReset": "Nulstil adgangskode",
"HeaderParentalRatings": "Aldersgr\u00e6nser",
"HeaderVideoTypes": "Videotyper",
- "HeaderYears": "\u00c5r",
+ "HeaderYears": "Years",
+ "OptionPosterCard": "Plakat",
+ "OptionThumbCard": "Miniature kort",
+ "OptionAllowRemoteSharedDevices": "Tillad fjernstyring af delte enheder",
+ "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheder er delte indtil en bruger begynder at bruge den.",
+ "HeaderRemoteControl": "Fjernstyring",
+ "ViewTypeMusicGenres": "Genrer",
+ "ViewTypeMusicArtists": "Artister",
+ "HeaderSignInWithConnect": "Log ind med Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api dokumentation",
+ "LabelDeveloperResources": "Udviklerressourcer",
"HeaderAddTag": "Tilf\u00f8j tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Bloker indhold med disse tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Information om serveren",
"LabelEnableSingleImageInDidlLimit": "Begr\u00e6ns til et enkelt indlejret billede",
"LabelEnableSingleImageInDidlLimitHelp": "Nogle enheder viser ikke rigtigt, hvis der er flere indlejrede billeder i DIDL.",
"TabActivity": "Aktivitet",
"TitleSync": "Sync",
+ "HeaderSettings": "Indstillinger",
"OptionAllowSyncContent": "Tillad Sync",
- "OptionAllowContentDownloading": "Tillad hentning af medier",
+ "FolderTypeInherit": "Nedarv",
+ "LabelContentType": "Indholdstype:",
"NameSeasonUnknown": "Ukendt s\u00e6son",
"NameSeasonNumber": "S\u00e6son {0}",
"LabelNewUserNameHelp": "Brugernavne kan indeholde bogstaver (a-z), tal (0-9), bindestreg (-), apostrof (') og punktum (.)",
+ "ButtonHelp": "Hj\u00e6lp",
+ "TabAccess": "Adgang",
+ "HeaderDeviceAccess": "Enhedsadgang",
+ "OptionEnableAccessFromAllDevices": "Tillad adgang fra alle enheder",
+ "DeviceAccessHelp": "Dette g\u00e6lder kun for enheder, der kan identificeres unikt, og vil ikke forhindre adgang fra en browser. Ved at filtrere brugeres adgang fra enheder, kan du forhindre dem i at bruge nye enheder f\u00f8r de er blevet godkendt her.",
+ "ButtonQuickStartGuide": "Hurtig-start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Opgaver",
"TabSyncJobs": "Sync opgaver",
+ "HeaderTermsOfService": "Emby tjenestevilk\u00e5r",
+ "MessagePleaseAcceptTermsOfService": "Accepter venligst tjenestevilk\u00e5rene og privatlivspolitikken f\u00f8r du forts\u00e6tter.",
+ "OptionIAcceptTermsOfService": "Jeg accepterer tjenestevilk\u00e5rene",
+ "ButtonPrivacyPolicy": "Privatlivspolitik",
+ "ButtonTermsOfService": "Tjenestevilk\u00e5r",
+ "OptionHideUserFromLoginHelp": "Nyttigt for private kontoer eller skjulte administratorkontoer. Brugeren skal logge ind ved at skive sit brugernavn og adgangskode.",
+ "LabelEnterConnectUserName": "Brugernavn eller email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Opfat arkiver som medier",
+ "OptionDetectArchiveFilesAsMediaHelp": "Aktiver dette for at f\u00e5 filer med .zip og .rar endelser genkendt dom medier.",
+ "ButtonDonate": "Don\u00e9r",
+ "HeaderOptions": "Indstillinger",
+ "HeaderIdentificationResult": "Identifikationsresultat",
+ "OptionEnableAccessToAllChannels": "Tillad adgang til alle kanaler",
+ "LabelAutomaticUpdates": "Aktiver automatiske opdateringer",
+ "LabelFanartApiKey": "Personlig api n\u00f8gle:",
+ "LabelFanartApiKeyHelp": "Foresp\u00f8rgsler til fanart uden en personlig api n\u00f8gle returnerer resultater godkendt for over 7 dage siden. Med en personlig api n\u00f8gle falder dette til 48 timer, og hvis du er fanart VIP medlem falder dette yderligere til omkring 10 minutter.",
+ "HeaderDeveloperOptions": "Indstillinger for udviklere",
+ "OptionEnableWebClientResponseCache": "Aktiver webklient svar-caching",
+ "OptionDisableForDevelopmentHelp": "Konfigurer disse som n\u00f8dvendigt for udviklingsform\u00e5l af webklienten",
+ "OptionEnableWebClientResourceMinification": "Aktiver formindskelse af webklientens forbrug af ressourcer",
+ "LabelDashboardSourcePath": "Webklient kildesti:",
+ "LabelDashboardSourcePathHelp": "Hvis serveren k\u00f8rer fra kilden, specificer da stien til dashboard-ui mappen. Alle webklient-filer vil blive leveret fra denne lokation.",
+ "HeaderPaths": "Stier",
+ "TitleNotifications": "Underretninger",
+ "ButtonDonateWithPayPal": "Doner via PayPal",
+ "TitleScheduledTasks": "Planlagte opgaver",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Offentligt http portnummer:",
+ "LabelPublicHttpPortHelp": "Det offentlige portnummer som bliver knyttet til det lokale http portnummer.",
+ "LabelPublicHttpsPort": "Offentligt https portnummer:",
+ "LabelPublicHttpsPortHelp": "Det offentlige portnummer som bliver knyttet til det lokale https portnummer.",
+ "LabelEnableHttps": "Angiv https til den eksterne adresse",
+ "LabelEnableHttpsHelp": "Aktiver dette for at f\u00e5 serveren til at oplyse en https url som eksterne adresse til klienter.",
+ "LabelHttpsPort": "Lokalt https portnummer",
+ "LabelHttpsPortHelp": "Det portnummer Embys https-server bruger.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Brugerdefineret css",
+ "LabelCustomCssHelp": "Anvend din egen css til webinterfacet.",
+ "ButtonConvertMedia": "Konverter medie",
+ "ButtonOrganize": "Organiser",
+ "ButtonJoinTheDevelopmentTeam": "Bliv medlem af Teamet bag Emby",
+ "OptionEnableAccessToAllLibraries": "Tillad adgang til alle biblioteker",
+ "LabelSyncTempPath": "Sti for midlertidige filer:",
+ "LabelSyncTempPathHelp": "Specificer en brugerdefineret synkroniserings arbejds-mappe. Konverterede filer vil under synkroniseringsprocessen blive gemt her.",
+ "LabelCustomCertificatePath": "Sti til eget certifikat:",
+ "LabelCustomCertificatePathHelp": "Angiv dit eget ssl certifikat som .pfx fil. Hvis du undlader dette, danner serveren et selvsigneret certifikat.",
+ "LabelDisplayCollectionsViewHelp": "Dette skaber en separat visning til samlinger du har skabt eller har adgang til. Du skaber samlinger ved at h\u00f8jreklikke, eller trykke og holde, p\u00e5 en film og v\u00e6lge 'Tilf\u00f8j til samling'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Nyd en 14-dages gratis pr\u00f8veperiode",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Registrer med PayPal",
+ "NotificationOptionCameraImageUploaded": "Kamerabillede tilf\u00f8jet",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Nem pinkode",
+ "LabelEasyPinCode": "Pinkode:",
+ "EasyPasswordHelp": "Din pinkode bruges til offline adgang til underst\u00f8ttede Emby apps, og kan ogs\u00e5 bruges til nemt login inden for eget netv\u00e6rk.",
+ "LabelInNetworkSignInWithEasyPassword": "Tillad login inden for eget netv\u00e6rk med pinkode",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "Aktiver dette for at loge ind i Emby apps med din pinkode inden for dit eget netv\u00e6rk. Din almindelige adgangskode skal du s\u00e5 kun bruge n\u00e5r du ikke er hjemme. Hvis pinkoden er tom, kan du logge ind uden adgangskode inden for dit eget netv\u00e6rk.",
+ "ButtonResetEasyPassword": "Nulstil pinkode",
+ "OptionAllowContentDownloading": "Tillad hentning af medier",
+ "LabelBlockContentWithTags": "Bloker indhold med disse tags:",
"LabelTagFilterMode": "Tilstand:",
"LabelTagFilterAllowModeHelp": "Hvis godkendte tags bliver brugt som en del af en meget forgrenet mappestruktur, kr\u00e6ver tagget indhold at parent mappen ogs\u00e5 tagges.",
+ "UserDownloadingItemWithValues": "{0} henter {1}",
+ "LabelPinCode": "Pinkode:",
+ "ButtonExit": "Afslut",
+ "HeaderGrownupsOnly": "Kun for voksne!",
+ "DividerOr": "-- eller --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Indtast din pinkode for adgang",
+ "KidsModeAdultInstruction": "Klik p\u00e5 l\u00e5seikonet i nederste h\u00f8jre hj\u00f8rne for at konfigurere eller forlade b\u00f8rnetilstand. Du vil blive bedt om din pinkode.",
+ "ButtonConfigurePinCode": "Konfigurer pinkode",
+ "HeaderAdultsReadHere": "Voksne l\u00e6s her!",
+ "LabelEnableEnhancedMovies": "Aktiver udvidede filmvisninger",
+ "LabelEnableEnhancedMoviesHelp": "Aktiver dette for at f\u00e5 vist film som mapper med trailere, medvirkende og andet relateret inhold.",
+ "NotificationOptionUserLockedOut": "Bruger l\u00e5st",
+ "OptionIcon": "Ikon",
+ "UserLockedOutWithName": "Bruger {0} er blevet l\u00e5st",
"HeaderThisUserIsCurrentlyDisabled": "Denne bruger er for \u00f8jeblikket deaktiveret.",
"MessageReenableUser": "Se nedenfor om genaktivering",
+ "LabelTimeLimitHours": "Tidsgr\u00e6nse (timer):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installerede tjenester",
+ "HeaderAvailableServices": "Tilg\u00e6ngelige tjenester",
+ "MessageNoServicesInstalled": "Ingen tjenester er installeret.",
+ "TitlePlugins": "Tilf\u00f8jelser",
+ "HeaderServices": "Tjenester",
+ "ViewTypePlaylists": "Afspilningslister",
+ "LabelAlbumArtists": "Albumartister:",
"LabelEnableInternetMetadataForTvPrograms": "Hent internet metadata for:",
"OptionTVMovies": "TV film",
"HeaderUpcomingMovies": "Kommende film",
- "HeaderUpcomingSports": "Kommende sportsudsendelser",
"HeaderUpcomingPrograms": "Kommende programmer",
"LabelShowLibraryTileNames": "Vis navne p\u00e5 fliser i biblioteket",
"LabelShowLibraryTileNamesHelp": "Afg\u00f8r om der vises navn under hver flise p\u00e5 hjemmesiden",
+ "HeaderSupporterBenefits": "Supporter fordele",
+ "HeaderAddUser": "Tilf\u00f8j bruger",
+ "LabelAddConnectSupporterHelp": "For at tilf\u00f8je en bruger som ikke er angivet skal du f\u00f8rst sammenk\u00e6de deres konto til Emby Connect fra deres brugers profilside.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Konfigurer Emby",
+ "WelcomeToProject": "Velkommen til Emby!",
+ "LinkedToEmbyConnect": "Koblet til Emby Connect",
+ "ProjectHasCommunity": "Emby har et blomstrende f\u00e6llesskab af brugere og bidragsydere.",
+ "VisitProjectWebsite": "Bes\u00f8g Embys hjemmeside",
+ "VisitProjectWebsiteLong": "Bes\u00f8g Emby hjemmesiden for at blive opdateret p\u00e5 de seneste nyheder og holde dig opdateret med udviklernes blog.",
+ "HeaderHelpImproveProject": "Hj\u00e6lp med at forbedre Emvy",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Bliv en Emby supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "L\u00e6r mere om Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Valgfrit: Forbind din Emby konto",
"OptionEnableTranscodingThrottle": "Aktiver neddrosling",
"OptionEnableTranscodingThrottleHelp": "Neddrosling vil automatisk justere hastigheden af transkodning for at minimere serverens CPU brug under afspilning.",
+ "OptionHideWatchedContentFromLatestMedia": "Skjul sete fra seneste",
+ "TabSuggestions": "Forslag",
+ "PlaceholderUsername": "Brugernavn",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Kommende sportsudsendelser",
"LabelUploadSpeedLimit": "Hastighedsgr\u00e6nse for upload (Mbps):",
"OptionAllowSyncTranscoding": "Tillad synkronisering der kr\u00e6ver transkodning",
"HeaderPlayback": "Medieafspilning",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Brugere vil modtage en venlig besked n\u00e5r indhold ikke kan afspilles grundet ovenst\u00e5ende politikker.",
"OptionAllowAudioPlaybackTranscoding": "Tillad lydafspilning der kr\u00e6ver transkodning",
"OptionAllowVideoPlaybackTranscoding": "Tillad videoafspilning der kr\u00e6ver transkodning",
- "OptionAllowMediaPlaybackTranscodingHelp": "Brugere vil modtage en venlig besked n\u00e5r indhold ikke kan afspilles grundet ovenst\u00e5ende politikker.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Fjernklient birate gr\u00e6nse (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "En valgfri streaming bitrate gr\u00e6nse for alle fjernklienter. Dette kan bruges til at forhindre fjernklienter i at bede om en h\u00f8jere bitrate end din forbindelse kan klare.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Begr\u00e6ns antallet af CPU kerner der bruges under synkroniseringskonvertering.",
"OptionEnableFullSpeedConversion": "Aktiver konvertering med fuld hastighed",
"OptionEnableFullSpeedConversionHelp": "Som standard udf\u00f8res synkronseringskonverteringer ved lav hastighed for at minimere ressourceforbrug.",
+ "HeaderRepeatingOptions": "Indstillinger for gentagelse",
+ "OptionMyMediaButtons": "Mine medier (knapper)",
+ "OptionMyMedia": "Mine medier",
+ "OptionMyMediaSmall": "Mine medier (lille)",
"HeaderPlaylists": "Afspilningslister",
+ "ViewTypeMusicPlaylists": "Afspilningslister",
"HeaderViewStyles": "Visningsstiler",
"LabelSelectViewStyles": "Aktiver udvidet pr\u00e6sentation for:",
"LabelSelectViewStylesHelp": "Aktiver dette for at f\u00e5 visninger med kategorier som forslag, seneste, genrer, m.m. Hvis det ikke er aktiveret, bliver der vist almindelige mapper.",
+ "ButtonSignInWithConnect": "Log ind med Emby Connect",
+ "HeaderNewServer": "Ny server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App-indstillinger",
"TabPhotos": "Fotos",
"TabVideos": "Videoer",
"HeaderWelcomeToEmby": "Velkommen til Emby",
"EmbyIntroMessage": "Med Emby kan du nemt streame videoer, musik og fotos til din smartphone, tablet eller andre enheder.",
"ButtonSkip": "Spring over",
"TextConnectToServerManually": "Forbind til en server manuelt",
- "ButtonSignInWithConnect": "Log ind med Emby Connect",
"ButtonConnect": "Forbind",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "F. eks: 192.168.1.100 eller https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "Ny server",
"ButtonChangeServer": "Skift server",
"HeaderConnectToServer": "Forbind til server",
"OptionReportList": "Liste visning",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Eksporter",
"HeaderColumns": "S\u00f8jler",
"ButtonReset": "Reset",
+ "ButtonPurchase": "K\u00f8b",
"OptionEnableExternalVideoPlayers": "Aktiver eksterne afspillere",
+ "LabelNativeExternalPlayersHelp": "Hvis knapper til at afspille indhold i eksterne afspillere.",
+ "LabelEnableItemPreviews": "Aktiver forh\u00e5ndsvisning af elementer",
+ "LabelEnableItemPreviewsHelp": "Hvis aktiveret vil der blive vist glidende forh\u00e5ndsvisninger n\u00e5r der klikkes p\u00e5 elementer p\u00e5 visse sk\u00e6rme.",
"ButtonUnlockGuide": "Opl\u00e5s guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Undertekster",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/de.json b/dashboard-ui/strings/html/de.json
index c044adc559..c933007264 100644
--- a/dashboard-ui/strings/html/de.json
+++ b/dashboard-ui/strings/html/de.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Beenden",
"LabelVisitCommunity": "Besuche die Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Api Dokumentation",
- "LabelDeveloperResources": "Entwickler Ressourcen",
"LabelBrowseLibrary": "Bibliothek durchsuchen",
- "LabelConfigureServer": "Konfiguriere Emby",
"LabelOpenLibraryViewer": "\u00d6ffne Bibliothekenansicht",
"LabelRestartServer": "Server neustarten",
"LabelShowLogWindow": "Zeige Log Fenster",
"LabelPrevious": "Vorheriges",
"LabelFinish": "Fertig",
- "FolderTypeMixed": "Gemischter Inhalt",
"LabelNext": "N\u00e4chstes",
"LabelYoureDone": "Du bist fertig!",
- "ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen",
- "ButtonMoreItems": "Mehr",
- "WelcomeToProject": "Willkommen bei Emby!",
+ "OptionRelease": "Offizielles Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Entwickler (instabil)",
"ThisWizardWillGuideYou": "Dieser Assistent wird dich durch den Einrichtungsprozess f\u00fchren. Um zu beginnen, w\u00e4hle bitte deine bevorzugte Sprache.",
"TellUsAboutYourself": "Sag uns etwas \u00fcber dich selbst",
- "ButtonQuickStartGuide": "Schnellstart Instruktionen",
"LabelYourFirstName": "Vorname:",
"MoreUsersCanBeAddedLater": "Weitere Benutzer k\u00f6nnen sp\u00e4ter \u00fcber die Optionsleiste hinzugef\u00fcgt werden.",
"UserProfilesIntro": "Emby bietet von Haus aus Unterst\u00fctzung von Benutzerprofilen, die ihre eigenen Ansichten, Altersfreigaben und Spielst\u00e4nde von Medien kontrollieren k\u00f6nnen.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Das Extrahieren von Kapitel-Bildern erm\u00f6glicht es den Clients eine grafische Szenenauswahl anzubieten. Das Erstellen ist recht langsam, rechenintensiv und erfordert einige Gigabyte an freien Speicherplatz. Diese Aufgabe startet jede Nacht, das kann aber in den geplanten Aufgaben ge\u00e4ndert werden. Es wird nicht empfohlen diese Aufgabe in Zeiten hoher Server-Auslastung zu starten.",
"LabelEnableAutomaticPortMapping": "Aktiviere automatische Portweiterleitung",
"LabelEnableAutomaticPortMappingHelp": "UPnP erm\u00f6glicht die automatische Routerkonfiguration f\u00fcr den einfachen Remote-Zugriff. Diese Option ist nicht f\u00fcr jeden Router verf\u00fcgbar.",
- "HeaderTermsOfService": "Emby Nutzungsbedingungen",
- "MessagePleaseAcceptTermsOfService": "Bitte akzeptieren Sie die Nutzungsbedingungen & Datenschutzbestimmungen bevor Sie fortfahren.",
- "OptionIAcceptTermsOfService": "Ich akzeptiere die Nutzungsbedingungen.",
- "ButtonPrivacyPolicy": "Datenschutzbestimmungen",
- "ButtonTermsOfService": "Nutzungsbedingungen",
- "HeaderDeveloperOptions": "Entwickleroptionen",
- "OptionEnableWebClientResponseCache": "Aktiviere die Antwortzwischenspeicherung des Web Clients",
- "OptionDisableForDevelopmentHelp": "Konfiguriere diese Einstellungen f\u00fcr die ben\u00f6tigten Entwicklungszwecke des Web Clients.",
- "OptionEnableWebClientResourceMinification": "Aktiviere die Ressourcenminimierung des Web Clients",
- "LabelDashboardSourcePath": "Web Client Sourcepfad:",
- "LabelDashboardSourcePathHelp": "Spezifiziere den Pfad zum Dashboard-UI-Verzeichniss, falls der Server von der Source ausgef\u00fchrt wird. Alle Web-Client-Dateien werden von diesem Pfad aus bedient werden.",
- "ButtonConvertMedia": "Konvertiere Medien",
- "ButtonOrganize": "Organisieren",
- "LinkedToEmbyConnect": "Verbunden mit Emby Connect",
- "HeaderSupporterBenefits": "Unterst\u00fctzer Vorteile",
- "HeaderAddUser": "Benutzer hinzuf\u00fcgen",
- "LabelAddConnectSupporterHelp": "Um einen Benutzer hinzuzuf\u00fcgen, der nicht angezeigt wird, m\u00fcssen Sie diesen erst mit Emby Connect von seinem Benutzerprofil verbinden.",
- "LabelPinCode": "PIN Code:",
- "OptionHideWatchedContentFromLatestMedia": "Verberge gesehene Inhalte von zuletzt hinzugef\u00fcgten.",
- "HeaderSync": "Synchronisation",
"ButtonOk": "Ok",
"ButtonCancel": "Abbrechen",
- "ButtonExit": "Exit",
- "ButtonNew": "Neu",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Pfade",
- "CategorySync": "Synchronisieren",
- "TabPlaylist": "Wiedergabeliste",
- "HeaderEasyPinCode": "Einfacher PIN Code",
- "HeaderGrownupsOnly": "Nur Erwachsene!",
- "DividerOr": "-- oder --",
- "HeaderInstalledServices": "Installierte Dienste",
- "HeaderAvailableServices": "Verf\u00fcgbare Dienste",
- "MessageNoServicesInstalled": "Keine Dienste installiert.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Bitte geben Sie Ihren vereinfachten PIN Code ein:",
- "KidsModeAdultInstruction": "Verwenden Sie das Schloss-Symbol in der rechten oberen Ecke um den Kindermodus zu verlassen oder zu konfigurieren. Sie ben\u00f6tigen daf\u00fcr Ihren PIN Code.",
- "ButtonConfigurePinCode": "PIN Code festlegen",
- "HeaderAdultsReadHere": "Eltern, bitte lesen!",
- "RegisterWithPayPal": "Registrieren mit PayPal",
- "HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine Supporter-Mitgliedschaft",
- "HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
- "LabelSyncTempPath": "Verzeichnis f\u00fcr tempor\u00e4re Dateien",
- "LabelSyncTempPathHelp": "Legen Sie ein eigenes Synchronisations-Arbeits Verzeichnis fest. Konvertierte Medien werden w\u00e4hrend der Synchronisation hier gespeichert.",
- "LabelCustomCertificatePath": "Eigener Zertifikats Ordner:",
- "LabelCustomCertificatePathHelp": "F\u00fcgen Sie ihr eigenes SSL Zertifikat als .pfx Datei hinzu. Wenn ausgelassen, wird der Server ein selbst signiertes Zertifikat f\u00fcr Sie erstellen.",
- "TitleNotifications": "Benachrichtigungen",
- "ButtonDonateWithPayPal": "Spende mit PayPal",
- "OptionDetectArchiveFilesAsMedia": "Behandle Archive wie Medien",
- "OptionDetectArchiveFilesAsMediaHelp": "Wenn aktiviert werden .rar und .zip Datei-Erweiterungen wie Medien behandelt.",
- "LabelEnterConnectUserName": "Benutzername oder Email:",
- "LabelEnterConnectUserNameHelp": "Dies ist Ihr Emby Konto Benutzername oder Email.",
- "LabelEnableEnhancedMovies": "Aktiviere erweiterte Filmdarstellung.",
- "LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.",
- "HeaderSyncJobInfo": "Synchronisations-Aufgabe",
- "OptionReleaseDate": "Ver\u00f6ffentlichungsdatum",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Fehlgeschlagen",
- "LabelSeries": "Serien:",
- "ButtonFullscreen": "Vollbild umschalten",
- "ButtonAudioTracks": "Audiospuren",
- "ButtonPreviousTrack": "Vorheriges St\u00fcck",
- "ButtonNextTrack": "N\u00e4chstes St\u00fcck",
- "HeaderEpisodes": "Episoden:",
- "FolderTypeMovies": "Filme",
- "FolderTypeMusic": "Musik",
- "FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
- "FolderTypePhotos": "Fotos",
- "FolderTypeMusicVideos": "Musikvideos",
- "FolderTypeHomeVideos": "Heimvideos",
- "FolderTypeGames": "Spiele",
- "FolderTypeBooks": "B\u00fccher",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "\u00dcbernehmen",
- "LabelContentType": "Inhalte-Typ:",
- "TitleScheduledTasks": "Geplante Aufgaben",
"HeaderSetupLibrary": "Medienbibliothek einrichten",
"ButtonAddMediaFolder": "Medienverzeichnis hinzuf\u00fcgen",
"LabelFolderType": "Verzeichnistyp:",
"ReferToMediaLibraryWiki": "Siehe die Medienbibliothek Wiki",
"LabelCountry": "Land:",
"LabelLanguage": "Sprache:",
- "LabelTimeLimitHours": "Zeitlimit (Stunden):",
- "ButtonJoinTheDevelopmentTeam": "Schlie\u00dfen Sie sich dem Entwickler-Team an",
"HeaderPreferredMetadataLanguage": "Bevorzugte Metadata Sprache:",
"LabelSaveLocalMetadata": "Speichere Bildmaterial und Metadaten in den Medienverzeichnissen",
"LabelSaveLocalMetadataHelp": "Durch die Speicherung von Bildmaterial und Metadaten direkt in den Medienverzeichnissen, befinden sich diese an einem Ort wo sie sehr leicht bearbeitet werden k\u00f6nnen.",
@@ -130,37 +47,16 @@
"TabPreferences": "Einstellungen",
"TabPassword": "Passwort",
"TabLibraryAccess": "Bibliothekenzugriff",
- "TabAccess": "Zugang",
"TabImage": "Bild",
"TabProfile": "Profil",
- "TabMetadata": "Metadata",
- "TabImages": "Bilder",
- "TabNotifications": "Benachrichtigungen",
- "TabCollectionTitles": "Titel",
- "HeaderDeviceAccess": "Ger\u00e4te Zugang",
- "OptionEnableAccessFromAllDevices": "Zugriff von allen Ger\u00e4ten erlauben",
- "OptionEnableAccessToAllChannels": "Aktiviere Zugriff auf alle Kan\u00e4le",
- "OptionEnableAccessToAllLibraries": "Erlaube Zugriff auf alle Bibliotheken",
- "DeviceAccessHelp": "Dies wird nur auf Ger\u00e4te angewandt die eindeutig identifiziert werden k\u00f6nnen und verhindert nicht den Web-Zugriff. Gefilterter Zugriff auf Ger\u00e4te verhindert die Nutzung neuer Ger\u00e4te solange, bis der Zugriff f\u00fcr diese freigegeben wird.",
"LabelDisplayMissingEpisodesWithinSeasons": "Zeige fehlende Episoden innerhalb von Staffeln",
"LabelUnairedMissingEpisodesWithinSeasons": "Zeige noch nicht ausgestahlte Episoden innerhalb von Staffeln",
"HeaderVideoPlaybackSettings": "Videowiedergabe Einstellungen",
- "HeaderPlaybackSettings": "Wiedergabe Einstellungen",
"LabelAudioLanguagePreference": "Audiosprache Einstellungen:",
"LabelSubtitleLanguagePreference": "Untertitelsprache Einstellungen:",
- "OptionDefaultSubtitles": "Standard",
- "OptionOnlyForcedSubtitles": "Nur erzwungene Untertitel",
- "OptionAlwaysPlaySubtitles": "Untertitel immer anzeigen",
- "OptionNoSubtitles": "Keine Untertitel",
- "OptionDefaultSubtitlesHelp": "Untertitel die den Spracheinstellungen entsprechen werden nur bei einer Tonspur in fremder Sprache heruntergeladen.",
- "OptionOnlyForcedSubtitlesHelp": "Nur Untertitel, die als erzwungener Download markiert wurden, werden heruntergeladen.",
- "OptionAlwaysPlaySubtitlesHelp": "Untertitel die den Spracheinstellungen entsprechen werden unabh\u00e4ngig von der Tonspur Sprache heruntergeladen.",
- "OptionNoSubtitlesHelp": "Untertitel wird standardm\u00e4\u00dfig nicht geladen.",
"TabProfiles": "Profile",
"TabSecurity": "Sicherheit",
"ButtonAddUser": "User hinzuf\u00fcgen",
- "ButtonAddLocalUser": "F\u00fcge lokalen Benutzer hinzu",
- "ButtonInviteUser": "Lade Benutzer ein",
"ButtonSave": "Speichern",
"ButtonResetPassword": "Passwort zur\u00fccksetzten",
"LabelNewPassword": "Neues Passwort:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "H\u00f6chste erlaubte elterlich Bewertung:",
"MaxParentalRatingHelp": "Inhalt mit einer h\u00f6heren Bewertung wird dem User nicht angezeigt.",
"LibraryAccessHelp": "W\u00e4hle die Medienverzeichnisse die du mit diesem Benutzer teilen m\u00f6chtest. Administratoren k\u00f6nnen den Metadaten-Manager verwenden um alle Ordner zu bearbeiten.",
- "ChannelAccessHelp": "W\u00e4hle die Kan\u00e4le, die mit diesem Benutzer geteilt werden sollen. Administratoren sind in der Lage alle K\u00e4nale \u00fcber den Metadaten-Manager zu bearbeiten.",
"ButtonDeleteImage": "L\u00f6sche Bild",
- "LabelSelectUsers": "W\u00e4hle Benutzer:",
"ButtonUpload": "Hochladen",
"HeaderUploadNewImage": "Neues Bild hochladen",
"LabelDropImageHere": "Fotos hierher ziehen",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nichts hier.",
"MessagePleaseEnsureInternetMetadata": "Bitte sicherstellen, dass das Herunterladen von Internet Metadaten aktiviert ist.",
"TabSuggested": "Vorgeschlagen",
- "TabSuggestions": "Empfehlungen",
"TabLatest": "Neueste",
"TabUpcoming": "Bevorstehend",
"TabShows": "Serien",
@@ -217,6 +110,7 @@
"OptionAscending": "Aufsteigend",
"OptionDescending": "Absteigend",
"OptionRuntime": "Dauer",
+ "OptionReleaseDate": "Ver\u00f6ffentlichungsdatum",
"OptionPlayCount": "Z\u00e4hler",
"OptionDatePlayed": "Abgespielt am",
"OptionDateAdded": "Hinzugef\u00fcgt am",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Bewertung",
"OptionNameSort": "Name",
- "OptionFolderSort": "Verzeichnisse",
"OptionBudget": "Budget",
"OptionRevenue": "Einnahme",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster Karte",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Zeitlinie",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb Karte",
- "OptionBanner": "Banner",
"OptionCriticRating": "Kritiker Bewertung",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Kann fortgesetzt werden",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Geplante Aufgaben",
"TabMyPlugins": "Meine Plugins",
"TabCatalog": "Katalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatische Updates",
"HeaderNowPlaying": "Aktuelle Wiedergabe",
"HeaderLatestAlbums": "Neueste Alben",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Zuletzt gespielt",
"HeaderFrequentlyPlayed": "Oft gespielt",
"DevBuildWarning": "Dev Builds sind experimentell. Diese sehr oft ver\u00f6ffentlichten Builds sind nicht getestet. Das Programm kann abst\u00fcrzen und m\u00f6glicherweise k\u00f6nnen einzelne Funktionen nicht funktionieren.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Typ:",
"OptionBluray": "Bluray",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "Merkmal:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Letztes Ergebnis:",
"OptionHasSubtitles": "Untertitel",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Titellied",
@@ -268,8 +153,6 @@
"TabMovies": "Filme",
"TabStudios": "Studios",
"TabTrailers": "Trailer",
- "LabelArtists": "Interpreten:",
- "LabelArtistsHelp": "Trenne mehrere Eintr\u00e4ge durch ;",
"HeaderLatestMovies": "Neueste Filme",
"HeaderLatestTrailers": "Neueste Trailer",
"OptionHasSpecialFeatures": "Besonderes Merkmal",
@@ -290,32 +173,24 @@
"OptionFriday": "Freitag",
"OptionSaturday": "Samstag",
"HeaderManagement": "Verwaltung",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Fehlende IMDb Id",
"OptionMissingTvdbId": "Fehlende TheTVDB Id",
"OptionMissingOverview": "Fehlende \u00dcbersicht",
"OptionFileMetadataYearMismatch": "Datei \/ Metadaten Jahre stimmen nicht \u00fcberein",
"TabGeneral": "Allgemein",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Staffelnummer",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episodennummer",
"TabAbout": "\u00dcber",
"TabSupporterKey": "Unterst\u00fctzerschl\u00fcssel",
"TabBecomeSupporter": "Werde ein Unterst\u00fctzer",
- "ProjectHasCommunity": "Emby hat eine wachsende Community von Benutzern und Unterst\u00fctzern.",
"CheckoutKnowledgeBase": "Schauen Sie sich in der Emby Wissensdatenbank um, um das beste aus Emby heraus zu holen.",
"SearchKnowledgeBase": "Durchsuche die Knowledge Base",
"VisitTheCommunity": "Besuche die Community",
- "VisitProjectWebsite": "Beuchen Sie die Emby Website",
- "VisitProjectWebsiteLong": "Besuchen Sie die Emby Website f\u00fcr aktuelle Informationen und bleiben Sie auf dem letzten Stand mit dem Entwickler Blog.",
"OptionHideUser": "Verberge diesen Benutzer in den Anmeldebildschirmen",
- "OptionHideUserFromLoginHelp": "Hilfreich f\u00fcr private oder versteckte Administrator-Konten. Der Benutzer muss sich manuell mit der Eingabe des Benutzernamens und Passworts anmelden.",
"OptionDisableUser": "Sperre diesen Benutzer",
"OptionDisableUserHelp": "Wenn deaktivierten Benutzern wird der Server keine Verbindung von diesem Benutzer erlauben. Bestehende Verbindungen werden sofort beendet.",
"HeaderAdvancedControl": "Erweiterte Kontrolle",
"LabelName": "Name:",
- "ButtonHelp": "Hilfe",
"OptionAllowUserToManageServer": "Dieser Benutzer kann den Server managen",
"HeaderFeatureAccess": "Funktionszugriff",
"OptionAllowMediaPlayback": "Erlaube Medienwiedergabe",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Erlaube Medienl\u00f6schung",
"OptionAllowManageLiveTv": "Erlaube Live-TV Aufnahmeplanung",
"OptionAllowRemoteControlOthers": "Erlaube Fernsteuerung anderer Benutzer",
- "OptionAllowRemoteSharedDevices": "Erlaube Fernsteuerung geteilter Ger\u00e4te",
- "OptionAllowRemoteSharedDevicesHelp": "DLNA-Ger\u00e4te werden gemeinsam genutzt, bis ein Benutzer die Steuerung \u00fcbernimmt.",
- "OptionAllowLinkSharing": "Erlaube das Teilen in sozialen Netzwerken",
- "OptionAllowLinkSharingHelp": "Es werden nur Web-Seiten mit Medieninformationen geteilt. Medien hingenen werden niemals \u00f6ffentlich geteilt. Die geteilten Inhalte sind nur begrenzt zug\u00e4nglich und werden, basierend auf den Servereinstellungen, nach einer Zeit ung\u00fcltig.",
- "HeaderSharing": "Teilen",
- "HeaderRemoteControl": "Fernsteuerung",
"OptionMissingTmdbId": "Fehlende Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Ausw\u00e4hlen",
"ButtonGroupVersions": "Gruppiere Versionen",
"PismoMessage": "Verwendet Pismo File Mount durch eine gespendete Lizenz.",
- "TangibleSoftwareMessage": "Verwendung konkreter L\u00f6sungen von Java\/C# Konvertern durch eine gespendete Lizenz.",
- "HeaderCredits": "Herausgeber",
"PleaseSupportOtherProduces": "Bitte unterst\u00fctze andere freie Produkte die wir benutzen:",
"VersionNumber": "Version {0}",
"TabPaths": "Pfade",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Erweitert",
- "OptionRelease": "Offizielles Release",
- "OptionBeta": "Beta",
- "OptionDev": "Entwickler (instabil)",
"LabelAllowServerAutoRestart": "Erlaube dem Server sich automatisch neuzustarten, um Updates durchzuf\u00fchren.",
"LabelAllowServerAutoRestartHelp": "Der Server startet nur in benutzerfreien Leerlaufzeiten neu.",
"LabelEnableDebugLogging": "Aktiviere Debug Logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Definiere eigene Pfade. Felder leer lassen um die Standardwerte zu nutzen.",
"LabelCachePath": "Cache Pfad:",
"LabelCachePathHelp": "Legen Sie ein eigenes Verzeichnis f\u00fcr den Server Zwischenspeicher fest. (z.B. f\u00fcr Bilder) Lassen Sie dieses Feld leer um die Standardeinstellung zu verwenden.",
- "LabelRecordingPath": "Aufnahmeverzeichnis:",
- "LabelRecordingPathHelp": "Legen Sie einen eigenes Aufnahmeverzeichnis fest, lassen Sie das Feld leer um das Standardverzeichnis zu verwenden.",
"LabelImagesByNamePath": "Images by name Pfad:",
"LabelImagesByNamePathHelp": "Spezifiziere eine individuelles Verzeichnis, f\u00fcr die heruntergeladenen Bilder der Darsteller, Genres und Studios.",
"LabelMetadataPath": "Metadata Pfad:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episoden",
"OptionOtherVideos": "Andere Filme",
"TitleMetadata": "Metadaten",
- "LabelAutomaticUpdates": "Aktiviere automatische Updates",
"LabelAutomaticUpdatesTmdb": "Aktiviere automatische Updates von TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Aktiviere automatische Updates von TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "Wenn aktiviert, werden neue Bilder von fanart.tv automatisch heruntergeladen, sobald neue hinzugef\u00fcgt wurden. Bereits existierende Bilder werden nicht ersetzt. Diese Funktion wird das Durchsuchen nach neuen Medien verl\u00e4ngern und verursacht h\u00f6here Festplattenaktivit\u00e4ten.",
"LabelAutomaticUpdatesTmdbHelp": "Wenn aktiviert werden neue Bilder von TheMovieDB.org automatisch heruntergeladen. Bereits existierende Bilder werden nicht ersetzt. Diese Funktion wird das Durchsuchen nach neuen Medien verl\u00e4ngern und verursacht h\u00f6here Festplattenaktivit\u00e4ten.",
"LabelAutomaticUpdatesTvdbHelp": "Wenn aktiviert werden neue Bilder von TheTVDB.com automatisch heruntergeladen. Bereits existierende Bilder werden nicht ersetzt. Diese Funktion wird das Durchsuchen nach neuen Medien verl\u00e4ngern und verursacht h\u00f6here Festplattenaktivit\u00e4ten.",
- "LabelFanartApiKey": "Pers\u00f6nlicher API Schl\u00fcssel:",
- "LabelFanartApiKeyHelp": "Fanart Anfragen ohne einen pers\u00f6nlichen API Schl\u00fcssel liefert Ergebnisse der letzten 7 Tage. Bei Verwendung eines pers\u00f6nlichen API Schl\u00fcssels werden Ergebnisse der letzten 48 Stunden, und als VIP Member, der letzten 10 Minuten geliefert.",
"ExtractChapterImagesHelp": "Das Extrahieren von Kapitel-Bildern erm\u00f6glicht es den Clients eine grafische Szenenauswahl anzubieten. Das Erstellen ist recht langsam, rechenintensiv und erfordert ggf. einige Gigabyte an freien Speicherplatz. Diese Aufgabe startet wenn neue Videos erkannt werden und ebenso als eine n\u00e4chtliche Aufgabe. Es wird nicht empfohlen diese Aufgabe in Zeiten hoher Server-Auslastung zu starten.",
"LabelMetadataDownloadLanguage": "Bevorzugte Sprache f\u00fcr Downloads:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passw\u00f6rter werden nicht gebraucht, wenn du dich vom Localhost aus einloggst.",
"TabGuide": "Programm",
"TabChannels": "Kan\u00e4le",
- "TabCollections": "Sammlungen",
"HeaderChannels": "Kan\u00e4le",
"TabRecordings": "Aufnahmen",
"TabScheduled": "Geplant",
"TabSeries": "Serie",
- "TabFavorites": "Favoriten",
- "TabMyLibrary": "Meine Bibliothek",
"ButtonCancelRecording": "Aufnahme abbrechen",
"HeaderPrePostPadding": "Pufferzeit vor\/nach der Aufnahme",
"LabelPrePaddingMinutes": "Minuten vor der Aufnahme",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Einstellungen",
"ButtonRefreshGuideData": "Aktualisiere TV-Programmdaten",
- "ButtonRefresh": "Aktualisieren",
- "ButtonAdvancedRefresh": "Erweiterte Aktualiserung",
"OptionPriority": "Priorit\u00e4t",
"OptionRecordOnAllChannels": "Auf allen Kan\u00e4len aufzeichnen",
"OptionRecordAnytime": "Zu jeder Zeit aufzeichnen",
"OptionRecordOnlyNewEpisodes": "Nehme nur neue Episoden auf",
- "HeaderRepeatingOptions": "Wiederholungs Einstellungen",
"HeaderDays": "Tage",
"HeaderActiveRecordings": "Aktive Aufnahmen",
"HeaderLatestRecordings": "Neueste Aufnahmen",
@@ -431,17 +284,16 @@
"ButtonEdit": "Bearbeiten",
"ButtonRecord": "Aufnehmen",
"ButtonDelete": "L\u00f6schen",
- "ButtonRemove": "Entfernen",
"OptionRecordSeries": "Nehme Serie auf",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Verzeichnisse",
+ "OptionBackdrop": "Backdrop",
"TitleLiveTV": "Live-TV",
"LabelNumberOfGuideDays": "Anzahl von Tagen f\u00fcr die Programminformationen geladen werden sollen:",
"LabelNumberOfGuideDaysHelp": "Das laden von zus\u00e4tzlichen Programmdaten bietet einen besseren \u00dcberblick und die M\u00f6glichkeit weiter in die Zukunft zu planen. Aber es wird l\u00e4nger dauern alles herunterzuladen. Auto w\u00e4hlt auf Grundlage der Kanalanzahl.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Dienste",
"LiveTvPluginRequired": "Ein Live-TV Serviceproviderplugin ist notwendig um fortzufahren.",
"LiveTvPluginRequiredHelp": "Bitte installiere eines der verf\u00fcgbaren Plugins, wie z.B. Next Pvr oder ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Anpassungen f\u00fcr Medientyp:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Men\u00fc",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Prim\u00e4r",
"HeaderFetchImages": "Bilder abrufen:",
"HeaderImageSettings": "Bild Einstellungen",
- "TabOther": "Andere",
"LabelMaxBackdropsPerItem": "Maximale Anzahl von Hintergr\u00fcnden pro Element:",
"LabelMaxScreenshotsPerItem": "Maximale Anzahl von Screenshots pro Element:",
"LabelMinBackdropDownloadWidth": "Minimale Breite f\u00fcr zu herunterladende Hintergr\u00fcnde:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Besetzung & Crew",
"HeaderAdditionalParts": "Zus\u00e4tzliche Teile",
"ButtonSplitVersionsApart": "Spalte Versionen ab",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Fehlend",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Pfadsubstitutionen werden zum Ersetzen eines Serverpfades durch einen Netzwerkpfad genutzt, auf den die Clients direkt zugreifen k\u00f6nnen. Weil Clients direkten Zugang zu den Medien auf dem Server haben, sind diese in der Lage die Medien direkt \u00fcber das Netzwerk zu spielen und dabei vermeiden sie die Nutzung von Server-Ressourcen f\u00fcr das transkodieren von Streams.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Maximale Qualit\u00e4t",
"OptionEnableDebugTranscodingLogging": "Aktiviere debug transcoding logging",
"OptionEnableDebugTranscodingLoggingHelp": "Dies wird sehr lange Logdateien erzeugen und ist nur zur Fehlerbehebung empfehlenswert.",
+ "ButtonNew": "Neu",
+ "TabMetadata": "Metadata",
+ "TabImages": "Bilder",
+ "TabCollectionTitles": "Titel",
+ "ButtonSearch": "Suche",
+ "ButtonRemove": "Entfernen",
"EditCollectionItemsHelp": "Entferne oder f\u00fcge alle Filme, Serien, Alben, B\u00fccher oder Spiele, die du in dieser Sammlung gruppieren willst hinzu.",
"HeaderAddTitles": "Titel hinzuf\u00fcgen",
"LabelEnableDlnaPlayTo": "Aktiviere DLNA Play To",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Systempfade",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "API",
"LinkApiDocumentation": "Api Dokumentation",
"LabelFriendlyServerName": "Freundlicher Servername:",
"LabelFriendlyServerNameHelp": "Dieser Name wird benutzt um diesen Server zu identifizieren. Wenn leer gelassen, wird der Computername benutzt.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Die \u00dcbersetzung von Emby ist ein laufendes Projekt.",
"LabelReadHowYouCanContribute": "Erfahren Sie, wie Sie unterst\u00fctzen k\u00f6nnen.",
"HeaderNewCollection": "Neue Collection",
- "ButtonSubmit": "Best\u00e4tigen",
"ButtonCreate": "Kreieren",
- "LabelCustomCss": "Benutzerdefinierte CSS:",
- "LabelCustomCssHelp": "Wende deine eigene, benutzerdefinierte CSS f\u00fcr das Webinterface an.",
- "LabelLocalHttpServerPortNumber": "Lokale HTTP Portnummer:",
- "LabelLocalHttpServerPortNumberHelp": "Die TCP Port Nummer, auf die der Emby http Server h\u00f6rt.",
- "LabelPublicHttpPort": "\u00d6ffentliche HTTP Portnummer:",
- "LabelPublicHttpPortHelp": "Die \u00f6ffentliche Portnummer sollte einem lokalen HTTP Port zugewiesen werden.",
- "LabelPublicHttpsPort": "\u00d6ffentliche HTTPS Portnummer:",
- "LabelPublicHttpsPortHelp": "Die \u00f6ffentliche Portnummer sollte einem lokalen HTTPS Port zugewiesen werden.",
- "LabelEnableHttps": "Gebe HTTPS als externe Adresse aus",
- "LabelEnableHttpsHelp": "Wenn eingeschaltet, wird der Server eine https url als externe Adresse an alle Clients melden.",
- "LabelHttpsPort": "Lokale HTTPS Portnummer:",
- "LabelHttpsPortHelp": "Die TCP Port-Nummer f\u00fcr sichere Emby https Verbindungen.",
"LabelWebSocketPortNumber": "Web Socket Port Nummer:",
- "LabelEnableAutomaticPortMap": "Aktiviere das automatische Port-Mapping",
- "LabelEnableAutomaticPortMapHelp": "Versuche automatisch den \u00f6ffentlichen Port dem lokalen Port mit Hilfe von UPnP zuzuordnen. Dies kann mit einigen Router-Modellen nicht funktionieren.",
"LabelExternalDDNS": "Externe WAN Adresse:",
"LabelExternalDDNSHelp": "Wenn Sie einen dynamischen DNS verwenden, geben Sie diesen hier ein. Emby Apps werden diese bei Internetverbindungen automatisch verwenden. Lassen Sie dieses Feld f\u00fcr eine automatische Erkennung leer.",
"TabResume": "Fortsetzen",
@@ -591,8 +433,12 @@
"HeaderProgram": "Programm",
"HeaderClients": "Clients",
"LabelCompleted": "Fertiggestellt",
+ "LabelFailed": "Fehlgeschlagen",
"LabelSkipped": "\u00dcbersprungen",
"HeaderEpisodeOrganization": "Episodensortierung",
+ "LabelSeries": "Serien:",
+ "LabelSeasonNumber": "Staffelnummer",
+ "LabelEpisodeNumber": "Episodennummer",
"LabelEndingEpisodeNumber": "Nummer der letzten Episode:",
"LabelEndingEpisodeNumberHelp": "Nur erforderlich f\u00fcr Mehrfachepisoden",
"HeaderSupportTheTeam": "Unterst\u00fctzen Sie das Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Verschieben",
"LabelTransferMethodHelp": "Kopiere oder verschiebe Dateien aus dem \u00dcberwachungsverzeichnis",
"HeaderLatestNews": "Neueste Nachrichten",
- "HeaderHelpImproveProject": "Helfen Sie, Emby zu verbessern",
"HeaderRunningTasks": "Laufende Aufgaben",
"HeaderActiveDevices": "Aktive Ger\u00e4te",
"HeaderPendingInstallations": "Ausstehende Installationen",
- "HeaderServerInformation": "Server Informationen",
"ButtonRestartNow": "Jetzt neustarten",
"ButtonRestart": "Neu starten",
"ButtonShutdown": "Herunterfahren",
"ButtonUpdateNow": "Jetzt aktualisieren",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Bitte herunterfahren und den Server manuell aktualisieren.",
"NewServerVersionAvailable": "Eine neue Version des Emby Servers ist verf\u00fcgbar!",
"ServerUpToDate": "Emby Server ist auf dem aktuellsten Stand.",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Legt die Dauer in Sekunden zwischen den Server Alive Meldungen fest.",
"LabelDefaultUser": "Standardbenutzer",
"LabelDefaultUserHelp": "Legt fest, welche Benutzerbibliothek auf verbundenen Ger\u00e4ten angezeigt werden soll. Dies kann f\u00fcr jedes Ger\u00e4t durch Profile \u00fcberschrieben werden.",
+ "HeaderPlaybackSettings": "Wiedergabe Einstellungen",
"TitleDlna": "DLNA",
- "TitleChannels": "Kanal",
"HeaderServerSettings": "Server Einstellungen",
"LabelWeatherDisplayLocation": "Wetteranzeige Ort:",
"LabelWeatherDisplayLocationHelp": "US Postleitzahl \/ Stadt, Staat, Land \/ Stadt, Land",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Wenn deaktiviert, k\u00f6nnen Clients einen Anmeldebildschirm mit einer visuellen Auswahl der User anzeigen.",
"OptionOtherApps": "Andere Apps",
"OptionMobileApps": "Mobile Apps",
+ "TabNotifications": "Benachrichtigungen",
"HeaderNotificationList": "Klicke auf eine Benachrichtigung um die Benachrichtigungseinstellungen zu bearbeiten",
+ "LabelNotificationEnabled": "Aktiviere diese Benachrichtigung",
+ "NotificationOptionVideoPlayback": "Videowiedergabe gestartet",
+ "NotificationOptionAudioPlayback": "Audiowiedergabe gestartet",
+ "NotificationOptionGamePlayback": "Spielwiedergabe gestartet",
+ "NotificationOptionNewLibraryContent": "Neuer Inhalt hinzugef\u00fcgt",
+ "NotificationOptionServerRestartRequired": "Serverneustart notwendig",
+ "LabelMonitorUsers": "\u00dcberwache Aktivit\u00e4t von:",
+ "LabelSendNotificationToUsers": "Sende die Benachrichtigung an:",
+ "LabelUseNotificationServices": "Nutze folgende Dienste:",
"NotificationOptionApplicationUpdateAvailable": "Anwendungsaktualisierung verf\u00fcgbar",
"NotificationOptionApplicationUpdateInstalled": "Anwendungsaktualisierung installiert",
"NotificationOptionPluginUpdateInstalled": "Pluginaktualisierung installiert",
"NotificationOptionPluginInstalled": "Plugin installiert",
"NotificationOptionPluginUninstalled": "Plugin deinstalliert",
- "NotificationOptionVideoPlayback": "Videowiedergabe gestartet",
- "NotificationOptionAudioPlayback": "Audiowiedergabe gestartet",
- "NotificationOptionGamePlayback": "Spielwiedergabe gestartet",
- "NotificationOptionVideoPlaybackStopped": "Videowiedergabe gestoppt",
- "NotificationOptionAudioPlaybackStopped": "Audiowiedergabe gestoppt",
- "NotificationOptionGamePlaybackStopped": "Spielwiedergabe gestoppt",
"NotificationOptionTaskFailed": "Fehler bei geplanter Aufgabe",
"NotificationOptionInstallationFailed": "Installationsfehler",
- "NotificationOptionNewLibraryContent": "Neuer Inhalt hinzugef\u00fcgt",
- "NotificationOptionNewLibraryContentMultiple": "Neuen Inhalte hinzugef\u00fcgt (mehrere)",
- "NotificationOptionCameraImageUploaded": "Kamera Bild hochgeladen",
- "NotificationOptionUserLockedOut": "Benutzer ausgeschlossen",
- "HeaderSendNotificationHelp": "Benachrichtigungen werden in Ihren Emby-Eingang angezeigt. Weitere Optionen k\u00f6nnen durch Installation im Service-Tab hinzugef\u00fcgt werden.",
- "NotificationOptionServerRestartRequired": "Serverneustart notwendig",
- "LabelNotificationEnabled": "Aktiviere diese Benachrichtigung",
- "LabelMonitorUsers": "\u00dcberwache Aktivit\u00e4t von:",
- "LabelSendNotificationToUsers": "Sende die Benachrichtigung an:",
- "LabelUseNotificationServices": "Nutze folgende Dienste:",
"CategoryUser": "Benutzer",
"CategorySystem": "System",
- "CategoryApplication": "Anwendung",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Benachrichtigungstitel:",
"LabelAvailableTokens": "Verf\u00fcgbare Tokens:",
"AdditionalNotificationServices": "Durchsuche den Plugin Katalog, um weitere Benachrichtigungsdienste zu installieren.",
+ "LabelSelectUsers": "W\u00e4hle Benutzer:",
"OptionAllUsers": "Alle Benutzer",
"OptionAdminUsers": "Administratoren",
"OptionCustomUsers": "Benutzer",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Rechts",
"ButtonBack": "Zur\u00fcck",
"ButtonInfo": "Info",
- "ButtonOsd": "On Screen Display",
"ButtonPageUp": "Bild auf",
"ButtonPageDown": "Bild ab",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Suche",
"ButtonSettings": "Einstellungen",
"ButtonTakeScreenshot": "Bildschirmfoto aufnehmen",
"ButtonLetterUp": "Buchstabe hoch",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Aktuelle Wiedergabe",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Vollbild umschalten",
"ButtonScenes": "Szenen",
"ButtonSubtitles": "Untertitel",
+ "ButtonAudioTracks": "Audiospuren",
+ "ButtonPreviousTrack": "Vorheriges St\u00fcck",
+ "ButtonNextTrack": "N\u00e4chstes St\u00fcck",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "N\u00e4chstes",
- "ButtonPrevious": "Vorheriges",
"LabelGroupMoviesIntoCollections": "Gruppiere Filme in Collections",
"LabelGroupMoviesIntoCollectionsHelp": "Wenn Filmlisten angezeigt werden, dann werden Filme, die zu einer Collection geh\u00f6ren, als ein gruppiertes Element angezeigt.",
+ "CategoryApplication": "Anwendung",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin Fehler",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Lauter",
"ButtonVolumeDown": "Leiser",
"ButtonMute": "Stumm",
"HeaderLatestMedia": "Neueste Medien",
+ "OptionNoSubtitles": "Keine Untertitel",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "W\u00e4hle die Kan\u00e4le, die mit diesem Benutzer geteilt werden sollen. Administratoren sind in der Lage alle K\u00e4nale \u00fcber den Metadaten-Manager zu bearbeiten.",
"HeaderCollections": "Collections",
"LabelProfileCodecsHelp": "Getrennt durch Komma. Leerlassen, um auf alle Codecs anzuwenden.",
"LabelProfileContainersHelp": "Getrennt durch Komma. Leerlassen, um auf alle Container anzuwenden.",
"HeaderResponseProfile": "Antwort Profil",
"LabelType": "Typ:",
- "LabelPersonRole": "Rolle:",
- "LabelPersonRoleHelp": "Rollen sind generell nur f\u00fcr Schauspieler verf\u00fcgbar.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video Codecs:",
"LabelProfileAudioCodecs": "Audio Codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Falls aktiviert, werden alle Videos in DIDL als \"object.item.videoItem\" angezeigt, anstatt eines spezifischen Typs wie beispielsweise \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Unterst\u00fczte Medientypen:",
"TabIdentification": "Identifikation",
- "HeaderIdentification": "Identifizierung",
"TabDirectPlay": "Direktwiedergabe",
"TabContainers": "Container",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "Diese Werte geben an, wie Emby Server sich Ihren Ger\u00e4ten pr\u00e4sentiert.",
"LabelMaxBitrate": "Maximale Bitrate:",
"LabelMaxBitrateHelp": "Lege eine maximale Bitrate, f\u00fcr Anwendungsgebiete mit begrenzter Bandbreite oder bei durch die Endger\u00e4te auferlegten Banbdbreitenbegrenzungen, fest",
- "LabelMaxStreamingBitrate": "Maximale Streamingbitrate",
- "LabelMaxStreamingBitrateHelp": "W\u00e4hle die maximale Bitrate w\u00e4hrend des streamens.",
- "LabelMaxChromecastBitrate": "Max Chromcast Datenrate:",
- "LabelMaxStaticBitrate": "Maximale Synchronisierungsbitrate ",
- "LabelMaxStaticBitrateHelp": "W\u00e4hle die maximale Bitrate f\u00fcr das synchronisieren von Inhalten mit hoher Qualit\u00e4t.",
- "LabelMusicStaticBitrate": "Musik Synchronisierungsbitrate:",
- "LabelMusicStaticBitrateHelp": "W\u00e4hle die maximale Bitrate f\u00fcr das synchronisieren von Musik",
- "LabelMusicStreamingTranscodingBitrate": "Musik Transkodier Bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "W\u00e4hle die maximale Bitrate f\u00fcr das streamen von Musik",
"OptionIgnoreTranscodeByteRangeRequests": "Ignoriere Anfragen f\u00fcr Transkodierbytebereiche",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Falls aktiviert, werden diese Anfragen ber\u00fccksichtigt aber Byte-Range-Header ignoriert werden.",
"LabelFriendlyName": "Freundlicher Name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Dies wird f\u00fcr manche Abspielger\u00e4te ben\u00f6tigt, auf denen die Zeitsuche nicht gut funktioniert.",
"HeaderSubtitleDownloadingHelp": "Wenn Emby Ihre Videodateien untersucht, kann Emby fehlende Untertitel f\u00fcr Sie suchen und mit einem Untertitel Anbieter, z.B. OpenSubtitles.org, herunterladen.",
"HeaderDownloadSubtitlesFor": "Lade Untertitel runter f\u00fcr",
- "MessageNoChapterProviders": "Installiere ein Plugin f\u00fcr Kapitelinhalte, wie beispielsweise ChapterDb, um weitere Optionen f\u00fcr Kapitel zu erhalten.",
- "LabelSkipIfGraphicalSubsPresent": "\u00dcberspringen, falls das Video bereits grafische Untertitel enth\u00e4lt",
- "LabelSkipIfGraphicalSubsPresentHelp": "Das Vorhalten von textbasierten Untertiteln f\u00fchrt zu einer effizienteren Anzeige und verringert die Wahrscheinlichkeit einer Videotranskodierung.",
"TabSubtitles": "Untertitel",
- "TabChapters": "Kapitel",
- "HeaderDownloadChaptersFor": "Lade Kapitelnamen herunter f\u00fcr:",
"LabelOpenSubtitlesUsername": "\"Open Subtitles\" Benutzername:",
"LabelOpenSubtitlesPassword": "\"Open Subtitles\" Passwort:",
- "HeaderChapterDownloadingHelp": "Wenn Emby Ihre Videodateien untersucht, so kann Emby Kapitelnamen f\u00fcr Sie mit Hilfe eines Kapitel-Plugins, z.B. ChapterDb, herunterladen.",
- "LabelPlayDefaultAudioTrack": "Spiele unabh\u00e4ngig von der Sprache die Standardtonspur",
- "LabelSubtitlePlaybackMode": "Untertitel Modus:",
"LabelDownloadLanguages": "Herunterzuladende Sprachen:",
"ButtonRegister": "Registrierung",
+ "LabelSkipIfGraphicalSubsPresent": "\u00dcberspringen, falls das Video bereits grafische Untertitel enth\u00e4lt",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Das Vorhalten von textbasierten Untertiteln f\u00fchrt zu einer effizienteren Anzeige und verringert die Wahrscheinlichkeit einer Videotranskodierung.",
"LabelSkipIfAudioTrackPresent": "\u00dcberspringen, falls der Ton bereits der herunterladbaren Sprache entspricht",
"LabelSkipIfAudioTrackPresentHelp": "Entferne den Haken, um sicherzustellen das alle Videos Untertitel haben, unabh\u00e4ngig von der Audiosprache",
+ "NotificationOptionNewLibraryContentMultiple": "Neuen Inhalte hinzugef\u00fcgt (mehrere)",
"HeaderSendMessage": "sende Nachricht",
"ButtonSend": "senden",
"LabelMessageText": "Inhalt der Nachricht",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Letztes Ergebnis:",
+ "ButtonOsd": "On Screen Display",
"MessageNoAvailablePlugins": "Keine verf\u00fcgbaren Erweiterungen.",
"LabelDisplayPluginsFor": "Zeige Plugins f\u00fcr:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episodenname",
- "LabelSeriesNamePlain": "Serienname",
"ValueSeriesNamePeriod": "Serien.Name",
"ValueSeriesNameUnderscore": "Serien_Name",
"ValueEpisodeNamePeriod": "Episodentitel",
"ValueEpisodeNameUnderscore": "Episoden_Name",
- "LabelSeasonNumberPlain": "Staffelnummer",
- "LabelEpisodeNumberPlain": "Episodennummer",
- "LabelEndingEpisodeNumberPlain": "Nummer der letzten Episode",
"HeaderTypeText": "Texteingabe",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Standard",
+ "OptionOnlyForcedSubtitles": "Nur erzwungene Untertitel",
+ "OptionAlwaysPlaySubtitles": "Untertitel immer anzeigen",
+ "OptionDefaultSubtitlesHelp": "Untertitel die den Spracheinstellungen entsprechen werden nur bei einer Tonspur in fremder Sprache heruntergeladen.",
+ "OptionOnlyForcedSubtitlesHelp": "Nur Untertitel, die als erzwungener Download markiert wurden, werden heruntergeladen.",
+ "OptionAlwaysPlaySubtitlesHelp": "Untertitel die den Spracheinstellungen entsprechen werden unabh\u00e4ngig von der Tonspur Sprache heruntergeladen.",
+ "OptionNoSubtitlesHelp": "Untertitel wird standardm\u00e4\u00dfig nicht geladen.",
+ "TangibleSoftwareMessage": "Verwendung konkreter L\u00f6sungen von Java\/C# Konvertern durch eine gespendete Lizenz.",
+ "HeaderCredits": "Herausgeber",
+ "TabCollections": "Sammlungen",
+ "TabFavorites": "Favoriten",
+ "TabMyLibrary": "Meine Bibliothek",
+ "LabelCustomizeOptionsPerMediaType": "Anpassungen f\u00fcr Medientyp:",
+ "LabelPlayDefaultAudioTrack": "Spiele unabh\u00e4ngig von der Sprache die Standardtonspur",
+ "LabelSubtitlePlaybackMode": "Untertitel Modus:",
+ "TabOther": "Andere",
+ "NotificationOptionVideoPlaybackStopped": "Videowiedergabe gestoppt",
+ "NotificationOptionAudioPlaybackStopped": "Audiowiedergabe gestoppt",
+ "NotificationOptionGamePlaybackStopped": "Spielwiedergabe gestoppt",
"HeaderSearchForSubtitles": "Suche nach Untertiteln",
- "ButtonMore": "Mehr",
"MessageNoSubtitleSearchResultsFound": "Keine Suchergebnisse gefunden",
"TabDisplay": "Anzeige",
"TabLanguages": "Sprachen",
- "TabAppSettings": "App Einstellungen",
"LabelEnableThemeSongs": "Aktiviere Titelmelodie",
"LabelEnableBackdrops": "Aktiviere Hintergr\u00fcnde",
"LabelEnableThemeSongsHelp": "Wenn aktiviert, wird die Titelmusik w\u00e4hrend dem Durchsuchen durch die Bibliothek im Hintergrund abgespielt",
"LabelEnableBackdropsHelp": "Falls aktiviert, werden beim durchsuchen der Bibliothek auf einigen Seiten passende Hintergr\u00fcnde angezeigt.",
- "HeaderHomePage": "Startseite",
- "HeaderSettingsForThisDevice": "Einstellungen f\u00fcr dieses Ger\u00e4t",
"OptionAuto": "Auto",
"OptionYes": "Ja",
"OptionNo": "Nein",
- "HeaderOptions": "Optionen",
- "HeaderIdentificationResult": "Identifikationsergebnis",
"LabelHomePageSection1": "Startseite Bereich 1:",
"LabelHomePageSection2": "Startseite Bereich 2:",
"LabelHomePageSection3": "Startseite Bereich 3:",
- "LabelHomePageSection4": "Startseite Bereich 4:",
- "OptionMyMediaButtons": "Meine Medien (Schaltfl\u00e4chen)",
- "OptionMyMedia": "Meine Medien",
- "OptionMyMediaSmall": "Meine Medien (Klein)",
"OptionResumablemedia": "Wiederhole",
"OptionLatestMedia": "Neuste Medien",
- "OptionLatestChannelMedia": "Neueste Channel Inhalte:",
- "HeaderLatestChannelItems": "Neueste Channel Inhalte:",
"OptionNone": "Keines",
"HeaderLiveTv": "Live-TV",
"HeaderReports": "Berichte",
"HeaderMetadataManager": "Metadaten-Manager",
- "HeaderSettings": "Einstellungen",
"MessageLoadingChannels": "Lade Kanalinhalt...",
- "MessageLoadingContent": "Lade Inhalt...",
"ButtonMarkRead": "Als gelesen markieren",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Meistgesehen",
"TabNextUp": "Als N\u00e4chstes",
- "PlaceholderUsername": "Benutzername",
- "HeaderBecomeProjectSupporter": "Werden Sie Emby Unterst\u00fctzer",
"MessageNoMovieSuggestionsAvailable": "Momentan sind keine Filmvorschl\u00e4ge verf\u00fcgbar. Schaue und bewerte zuerst deine Filme. Komme danach zur\u00fcck, um deine Filmvorschl\u00e4ge anzuschauen.",
"MessageNoCollectionsAvailable": "Sammlungen erlauben Ihnen eine personalisierte Gruppierung von Filmen, Serien, Alben, B\u00fcchern und Spielen. Klicken Sie die + Schaltfl\u00e4che um Sammlungen zu erstellen.",
- "MessageNoPlaylistsAvailable": "Wiedergabeliste erlauben es dir eine Liste mit Inhalt zu erstellen der fortlaufend abgespielt wird. Um einer Wiedergabeliste Inhalte hinzuzuf\u00fcgen klicke rechts oder mache einen langen Tap und w\u00e4hle daraufhin \"Zur Wiedergabeliste hinzuf\u00fcgen\" aus.",
- "MessageNoPlaylistItemsAvailable": "Diese Wiedergabeliste ist momentan leer.",
+ "ButtonClose": "Schlie\u00dfen",
+ "HeaderConfirmDeletion": "Best\u00e4tige L\u00f6schung",
+ "HeaderHomePage": "Startseite",
+ "HeaderSettingsForThisDevice": "Einstellungen f\u00fcr dieses Ger\u00e4t",
"ButtonDismiss": "Verwerfen",
+ "ButtonMore": "Mehr",
"ButtonEditOtherUserPreferences": "Bearbeite dieses Benutzerprofil, das Benutzerbild und die pers\u00f6nlichen Einstellungen.",
+ "TitleChannels": "Kanal",
"LabelChannelStreamQuality": "Bevorzugte Qualit\u00e4t des Internetstreams",
"LabelChannelStreamQualityHelp": "In einer Umgebung mit langsamer Bandbreite kann die Beschr\u00e4nkung der Wiedergabequalit\u00e4t eine fl\u00fcssige Darstellung sichern.",
"OptionBestAvailableStreamQuality": "Die besten verf\u00fcgbaren",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "L\u00f6sche Inhalt nach: (Tagen)",
"LabelChannelDownloadAgeHelp": "Heruntergeladene Inhalte die \u00e4lter als dieser Wert sind werden gel\u00f6scht. Sie werden aber weiterhin \u00fcber das Internetstreaming verf\u00fcgbar sein.",
"ChannelSettingsFormHelp": "Installiere Kan\u00e4le wie beispielsweise \"Trailers\" oder \"Vimeo\" aus dem Plugin Katalog.",
- "ButtonOptions": "Optionen",
- "ViewTypePlaylists": "Wiedergabelisten",
+ "ButtonAddToCollection": "Zu Sammlung hinzuf\u00fcgen",
+ "ButtonSubmit": "Best\u00e4tigen",
"ViewTypeMovies": "Filme",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Spiele",
"ViewTypeMusic": "Musik",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "K\u00fcnstler",
"ViewTypeBoxSets": "Sammlungen",
- "ViewTypeChannels": "Kan\u00e4le",
- "ViewTypeLiveTV": "Live-TV",
- "ViewTypeLiveTvNowPlaying": "Gerade ausgestrahlt",
- "ViewTypeLatestGames": "Neueste Spiele",
- "ViewTypeRecentlyPlayedGames": "K\u00fcrzlich abgespielt",
- "ViewTypeGameFavorites": "Favoriten",
- "ViewTypeGameSystems": "Spielesysteme",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Fortsetzen",
- "ViewTypeTvNextUp": "Als n\u00e4chstes",
- "ViewTypeTvLatest": "Neueste",
- "ViewTypeTvShowSeries": "Serien",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Serien Favoriten",
- "ViewTypeTvFavoriteEpisodes": "Episoden Favoriten",
- "ViewTypeMovieResume": "Fortsetzen",
- "ViewTypeMovieLatest": "Neueste",
- "ViewTypeMovieMovies": "Filme",
- "ViewTypeMovieCollections": "Sammlungen",
- "ViewTypeMovieFavorites": "Favoriten",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Neueste",
- "ViewTypeMusicPlaylists": "Wiedergabelisten",
- "ViewTypeMusicAlbums": "Alben",
- "ViewTypeMusicAlbumArtists": "Album-K\u00fcnstler",
"HeaderOtherDisplaySettings": "Anzeige Einstellungen",
- "ViewTypeMusicSongs": "Lieder",
- "ViewTypeMusicFavorites": "Favoriten",
- "ViewTypeMusicFavoriteAlbums": "Album Favoriten",
- "ViewTypeMusicFavoriteArtists": "Interpreten Favoriten",
- "ViewTypeMusicFavoriteSongs": "Lieder Favoriten",
- "HeaderMyViews": "Meine Ansichten",
"LabelSelectFolderGroups": "Gruppiere Inhalte von folgenden Verzeichnissen automatisch zu Ansichten wie beispielsweise Filme, Musik und TV:",
"LabelSelectFolderGroupsHelp": "Verzeichnisse die nicht markiert sind werden alleine, mit ihren eigenen Ansichten, angezeigt.",
+ "ViewTypeChannels": "Kan\u00e4le",
+ "ViewTypeLiveTV": "Live-TV",
"OptionDisplayAdultContent": "Zeige Inhalt f\u00fcr Erwachsene an",
+ "MessageNoChapterProviders": "Installiere ein Plugin f\u00fcr Kapitelinhalte, wie beispielsweise ChapterDb, um weitere Optionen f\u00fcr Kapitel zu erhalten.",
+ "TabChapters": "Kapitel",
+ "HeaderDownloadChaptersFor": "Lade Kapitelnamen herunter f\u00fcr:",
+ "HeaderChapterDownloadingHelp": "Wenn Emby Ihre Videodateien untersucht, so kann Emby Kapitelnamen f\u00fcr Sie mit Hilfe eines Kapitel-Plugins, z.B. ChapterDb, herunterladen.",
"OptionLibraryFolders": "Medienverzeichnisse",
+ "LabelHomePageSection4": "Startseite Bereich 4:",
+ "OptionLatestChannelMedia": "Neueste Channel Inhalte:",
+ "HeaderLatestChannelItems": "Neueste Channel Inhalte:",
"TitleRemoteControl": "Fernsteuerung",
+ "HeaderMyViews": "Meine Ansichten",
"OptionLatestTvRecordings": "Neueste Aufnahmen",
+ "ButtonRefresh": "Aktualisieren",
"LabelProtocolInfo": "Protokoll Information:",
"LabelProtocolInfoHelp": "Der Wert, der f\u00fcr die Beantwortung von GetProtocolInfo Anfragen durch die Endger\u00e4te benutzt wird.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby beinhaltet eine native Unterst\u00fctzung von Nfo Metadata Dateien. Um Nfo Metadata ein oder auszuschalten, verwenden Sie den Erweitert Tab.",
- "LabelKodiMetadataUser": "Synchronisiere den \"Gesehen\" Status von Benutzern in NFO's f\u00fcr:",
- "LabelKodiMetadataUserHelp": "Aktivieren Sie dies, um den \"Gesehen\" Status zwischen Emby Server und Nfo Dateien synchron zu halten.",
- "LabelKodiMetadataDateFormat": "Ver\u00f6ffentlichungsdatum Format:",
- "LabelKodiMetadataDateFormatHelp": "Alle Daten in den NFO's werde unter Benutzung dieses Format gelesen und geschrieben.",
- "LabelKodiMetadataSaveImagePaths": "Speicher Bildpfade innerhalb der NFO Dateien",
- "LabelKodiMetadataSaveImagePathsHelp": "Dies ist empfehlenswert wenn du Dateinamen hast, die nicht den Kodi Richtlinien entsprechen.",
- "LabelKodiMetadataEnablePathSubstitution": "Aktiviere Pfadersetzung",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiviert die Pfadersetzung f\u00fcr Bildpfade durch Benutzung der Server Pfadersetzung Einstellungen",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Siehe Pfadersetzung.",
- "OptionDisplayChannelsInline": "Zeige Kan\u00e4le in meinen Ansichten.",
- "OptionDisplayChannelsInlineHelp": "Wenn aktiviert. werden Kan\u00e4le direkt in Ihren anderen Ansichten. Wenn deaktiviert werden diese nur in einer separaten Kanal-Ansicht angezeigt.",
"LabelDisplayCollectionsView": "Zeigt eine Ansicht f\u00fcr Sammlungen, um Filmsammlungen darzustellen",
- "LabelDisplayCollectionsViewHelp": "Die erstellt eine eigene Ansicht f\u00fcr Sammlungen, auf denen Sie Zugriff haben. Um eine Sammlung zu erstellen benutzen Sie einen Rechtsklick oder halten Sie einen Film gedr\u00fcckt und w\u00e4hlen Sie 'Zu Sammlung hinzuf\u00fcgen'.",
- "LabelKodiMetadataEnableExtraThumbs": "Kopiere Extrafanart in Extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "Beim downloaden von Bildern k\u00f6nnen diese sowohl als Extrafanart als auch als Extrathumb gespeichert werden, um maximale Kodi Kompatibilit\u00e4t zu erzielen.",
+ "HeaderSubtitles": "Untertitel",
"TabServices": "Dienste",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server Logdateien",
@@ -1029,6 +820,8 @@
"LabelAppName": "App Name",
"LabelAppNameExample": "Beispiel: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Geben Sie einer Applikation die Erlaubnis mit dem Emby Server zu kommunizieren.",
+ "TabUsers": "Benutzer",
+ "TabScheduledTasks": "Geplante Aufgaben",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identfikations Header",
"LabelValue": "Wert:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "Ansicht",
"LabelPageSize": "Elementenbegrenzung:",
- "LabelPath": "Pfad:",
"LabelView": "Ansicht:",
- "TabUsers": "Benutzer",
- "LabelSortName": "Sortiername:",
- "LabelDateAdded": "Hinzugef\u00fcgt am:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Funktionen",
"HeaderAdvanced": "Erweitert",
"ButtonSync": "Synchronisieren",
- "TabScheduledTasks": "Geplante Aufgaben",
"HeaderChapters": "Kapitel",
"HeaderResumeSettings": "Wiederaufnahme Einstellungen",
"TabSync": "Synchronisieren",
"TitleUsers": "Benutzer",
+ "LabelMaxStreamingBitrate": "Maximale Streamingbitrate",
+ "LabelMaxStreamingBitrateHelp": "W\u00e4hle die maximale Bitrate w\u00e4hrend des streamens.",
+ "LabelMaxStaticBitrate": "Maximale Synchronisierungsbitrate ",
+ "LabelMaxStaticBitrateHelp": "W\u00e4hle die maximale Bitrate f\u00fcr das synchronisieren von Inhalten mit hoher Qualit\u00e4t.",
"LabelProtocol": "Protokoll: ",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Synchronisieren",
"ButtonAddToPlaylist": "Hinzuf\u00fcgen zur Wiedergabeliste",
+ "MessageNoPlaylistsAvailable": "Wiedergabeliste erlauben es dir eine Liste mit Inhalt zu erstellen der fortlaufend abgespielt wird. Um einer Wiedergabeliste Inhalte hinzuzuf\u00fcgen klicke rechts oder mache einen langen Tap und w\u00e4hle daraufhin \"Zur Wiedergabeliste hinzuf\u00fcgen\" aus.",
+ "MessageNoPlaylistItemsAvailable": "Diese Wiedergabeliste ist momentan leer.",
"TabPlaylists": "Wiedergabelisten",
- "ButtonClose": "Schlie\u00dfen",
"LabelAllLanguages": "Alle Sprachen",
"HeaderBrowseOnlineImages": "Durchsuche Onlinebilder",
"LabelSource": "Quelle:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box R\u00fcckseite",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Men\u00fc",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Undefiniert",
"OptionMissingParentalRating": "Fehlende Altersfreigabe",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episoden:",
"OptionSeason0": "Staffel 0",
"LabelReport": "Bericht:",
"OptionReportSongs": "Lieder",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Interpreten",
"OptionReportAlbums": "Alben",
"OptionReportAdultVideos": "Videos f\u00fcr Erwachsene",
+ "ButtonMoreItems": "Mehr",
"HeaderActivity": "Aktivit\u00e4ten",
"ScheduledTaskStartedWithName": "{0} gestartet",
"ScheduledTaskCancelledWithName": "{0} wurde abgebrochen",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Download der Untertitel fehlgeschlagen f\u00fcr {0}",
"LabelRunningTimeValue": "Laufzeit: {0}",
"LabelIpAddressValue": "IP Adresse: {0}",
- "UserLockedOutWithName": "Benutzer {0} wurde ausgeschlossen",
"UserConfigurationUpdatedWithName": "Benutzereinstellungen wurden aktualisiert f\u00fcr {0}",
"UserCreatedWithName": "Benutzer {0} wurde erstellt",
"UserPasswordChangedWithName": "Das Passwort f\u00fcr Benutzer {0} wurde ge\u00e4ndert",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server wurde auf den neusten Stand gebracht.",
"AuthenticationSucceededWithUserName": "{0} erfolgreich authentifiziert",
"FailedLoginAttemptWithUserName": "Fehlgeschlagener Anmeldeversuch von {0}",
- "UserDownloadingItemWithValues": "{0} l\u00e4dt {1} herunter",
"UserStartedPlayingItemWithValues": "{0} hat die Wiedergabe von {1} gestartet",
"UserStoppedPlayingItemWithValues": "{0} hat die Wiedergabe von {1} beendet",
"AppDeviceValues": "App: {0}, Ger\u00e4t: {1}",
"ProviderValue": "Anbieter: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Lade Inhalt...",
"LabelChannelDownloadSizeLimit": "Download Gr\u00f6\u00dfenlimit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limitiere die Gr\u00f6\u00dfe des Channel Download Verzeichnisses.",
+ "LabelMusicStaticBitrate": "Musik Synchronisierungsbitrate:",
+ "LabelMusicStaticBitrateHelp": "W\u00e4hle die maximale Bitrate f\u00fcr das synchronisieren von Musik",
+ "LabelMusicStreamingTranscodingBitrate": "Musik Transkodier Bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "W\u00e4hle die maximale Bitrate f\u00fcr das streamen von Musik",
"HeaderRecentActivity": "K\u00fcrzliche Aktivit\u00e4ten",
"HeaderPeople": "Personen",
"HeaderDownloadPeopleMetadataFor": "Lade Biografien und Bilder herunter f\u00fcr:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Nutze die Verzeichnissansicht f\u00fcr die Darstellung der reinen Medienordner",
"ViewTypeLiveTvRecordingGroups": "Aufnahmen",
"ViewTypeLiveTvChannels": "Kan\u00e4le",
- "LabelEasyPinCode": "Einfacher pin code:",
- "EasyPasswordHelp": "Ihre vereinfachte PIN Eingabe wird f\u00fcr offline Zugriffe von unterst\u00fctzenden Emby Apps verwendet. Sie kann ebenso als erleichterten Zugang aus dem eigenen Netzwerk verwendet werden.",
- "LabelInNetworkSignInWithEasyPassword": "Schalte Login mit einfachen Passwort f\u00fcr das eigene Netzwerk ein.",
- "LabelInNetworkSignInWithEasyPasswordHelp": "Wenn aktiviert, k\u00f6nnen Sie sich in ihrem eigenen Netzwerk mit dem vereinfachten PIN bei Emby Apps anmelden. Ihr regul\u00e4res Kennwort wird nur ben\u00f6tigt, wenn Sie unterwegs sind. Wenn Sie den PIN frei lassen, so ben\u00f6tigen Sie in Ihrem Netzwerk keinen PIN.",
"HeaderPassword": "Passwort",
"HeaderLocalAccess": "Lokaler Zugriff",
"HeaderViewOrder": "Reihenfolge f\u00fcr Ansichten",
- "ButtonResetEasyPassword": "Einfachen PIN zur\u00fccksetzen",
"LabelSelectUserViewOrder": "W\u00e4hlen Sie die Reihenfolge der Ansichten in Ihren Emby apps aus.",
+ "LabelReleaseDate": "Ver\u00f6ffentlichungsdatum:",
+ "LabelEndDate": "Endzeit:",
+ "LabelYear": "Jahr:",
+ "FolderTypeMixed": "Gemischter Inhalt",
+ "FolderTypeMovies": "Filme",
+ "FolderTypeMusic": "Musik",
+ "FolderTypeAdultVideos": "Videos f\u00fcr Erwachsene",
+ "FolderTypePhotos": "Fotos",
+ "FolderTypeMusicVideos": "Musikvideos",
+ "FolderTypeHomeVideos": "Heimvideos",
+ "FolderTypeGames": "Spiele",
+ "FolderTypeBooks": "B\u00fccher",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Interpreten:",
+ "LabelArtistsHelp": "Trenne mehrere Eintr\u00e4ge durch ;",
+ "ButtonAdvancedRefresh": "Erweiterte Aktualiserung",
+ "LabelPersonRole": "Rolle:",
+ "LabelPersonRoleHelp": "Rollen sind generell nur f\u00fcr Schauspieler verf\u00fcgbar.",
+ "LabelPath": "Pfad:",
+ "LabelSortName": "Sortiername:",
+ "LabelDateAdded": "Hinzugef\u00fcgt am:",
"LabelMetadataRefreshMode": "Metadaten Aktualisierungsmethode:",
"LabelImageRefreshMode": "Aktualisierungsmethode f\u00fcr Bilder:",
"OptionDownloadMissingImages": "Lade fehlende Bilder herunter",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Informationen zur Person",
"HeaderIdentifyItem": "Identifiziere Element",
"HeaderIdentifyItemHelp": "Gib ein oder mehrere Suchkriterien ein. Entferne Kriterien um die Suchergebnisse zu erweitern.",
- "HeaderConfirmDeletion": "Best\u00e4tige L\u00f6schung",
"LabelFollowingFileWillBeDeleted": "Die folgende Datei wird gel\u00f6scht werden:",
"LabelIfYouWishToContinueWithDeletion": "Falls du fortfahren m\u00f6chtest, gibt bitte das Ergebnis aus folgender Rechnung an:",
"ButtonIdentify": "Identifizieren",
"LabelAlbumArtist": "Album-Interpret:",
- "LabelAlbumArtists": "Alben Interpreten:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community Bewertung:",
"LabelVoteCount": "Stimmen:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "\u00dcbersicht:",
"LabelShortOverview": "Kurz\u00fcbersicht:",
- "LabelReleaseDate": "Ver\u00f6ffentlichungsdatum:",
- "LabelYear": "Jahr:",
"LabelPlaceOfBirth": "Geburtsort:",
- "LabelEndDate": "Endzeit:",
"LabelAirDate": "Ausstrahlungstage:",
"LabelAirTime:": "Ausstrahlungszeit:",
"LabelRuntimeMinutes": "Laufzeit (Minuten):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadaten Einstellungen",
"LabelLockItemToPreventChanges": "Sperre diesen Eintrag um zuk\u00fcnftige \u00c4nderungen zu verhindern",
"MessageLeaveEmptyToInherit": "Freilassen f\u00fcr die Vererbung von Berechtigungen oder dem systemweiten Standardwert.",
- "TabDonate": "Spenden",
"HeaderDonationType": "Spendentyp:",
"OptionMakeOneTimeDonation": "Mache eine separate Spende",
- "OptionOneTimeDescription": "Dies ist eine zus\u00e4tzliche Spende an das Team, um deine Unterst\u00fctzung zu zeigen. Dies bringt dir keine zus\u00e4tzlichen Vorteile.",
- "OptionLifeTimeSupporterMembership": "Lebensl\u00e4ngliche Unterst\u00fctzer Mitgliedschaft",
- "OptionYearlySupporterMembership": "J\u00e4hrliche Unterst\u00fctzer Mitgliedschaft",
- "OptionMonthlySupporterMembership": "Monatliche Unterst\u00fctzer Mitgliedschaft",
"OptionNoTrailer": "Kein Trailer",
"OptionNoThemeSong": "Kein Theme Song",
"OptionNoThemeVideo": "Kein Theme Video",
"LabelOneTimeDonationAmount": "Spendenbetrag:",
- "ButtonDonate": "Spenden",
- "ButtonPurchase": "Kaufen",
"OptionActor": "Schauspieler",
"OptionComposer": "Komponist",
"OptionDirector": "Regisseur",
"OptionGuestStar": "Gaststar",
"OptionProducer": "Produzent",
"OptionWriter": "Drehbuchautor",
+ "LabelEpisodeNamePlain": "Episodenname",
+ "LabelSeriesNamePlain": "Serienname",
+ "LabelSeasonNumberPlain": "Staffelnummer",
+ "LabelEpisodeNumberPlain": "Episodennummer",
+ "LabelEndingEpisodeNumberPlain": "Nummer der letzten Episode",
+ "OptionOneTimeDescription": "Dies ist eine zus\u00e4tzliche Spende an das Team, um deine Unterst\u00fctzung zu zeigen. Dies bringt dir keine zus\u00e4tzlichen Vorteile.",
"LabelAirDays": "Ausstrahlungstage:",
"LabelAirTime": "Ausstrahlungszeit:",
"HeaderMediaInfo": "Medieninformation",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Entwicklerinformationen",
"HeaderRevisionHistory": "Versionsverlauf",
"ButtonViewWebsite": "Besuche die Website",
+ "ViewTypeLiveTvNowPlaying": "Gerade ausgestrahlt",
+ "ViewTypeLatestGames": "Neueste Spiele",
+ "ViewTypeRecentlyPlayedGames": "K\u00fcrzlich abgespielt",
+ "ViewTypeGameFavorites": "Favoriten",
+ "ViewTypeGameSystems": "Spielesysteme",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Fortsetzen",
+ "ViewTypeTvNextUp": "Als n\u00e4chstes",
+ "ViewTypeTvLatest": "Neueste",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Fortsetzen",
+ "ViewTypeMovieLatest": "Neueste",
+ "ViewTypeMovieMovies": "Filme",
+ "ViewTypeMovieCollections": "Sammlungen",
+ "ViewTypeMovieFavorites": "Favoriten",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Neueste",
+ "ViewTypeMusicAlbums": "Alben",
+ "ViewTypeMusicAlbumArtists": "Album-K\u00fcnstler",
+ "TabDonate": "Spenden",
+ "OptionLifeTimeSupporterMembership": "Lebensl\u00e4ngliche Unterst\u00fctzer Mitgliedschaft",
+ "OptionYearlySupporterMembership": "J\u00e4hrliche Unterst\u00fctzer Mitgliedschaft",
+ "OptionMonthlySupporterMembership": "Monatliche Unterst\u00fctzer Mitgliedschaft",
+ "ViewTypeTvShowSeries": "Serien",
+ "ViewTypeTvFavoriteSeries": "Serien Favoriten",
+ "ViewTypeTvFavoriteEpisodes": "Episoden Favoriten",
"HeaderXmlSettings": "XML Einstellungen",
"HeaderXmlDocumentAttributes": "XML-Dokument Eigenschaften",
"HeaderXmlDocumentAttribute": "XML-Dokument Eigenschaft",
"XmlDocumentAttributeListHelp": "Diese Attribute werden f\u00fcr das Stammelement jeder XML-Antwort angewendet.",
"OptionSaveMetadataAsHidden": "Speichere Metadaten und Bilder als versteckte Dateien",
+ "ViewTypeMusicSongs": "Lieder",
"LabelExtractChaptersDuringLibraryScan": "Erzeuge Kapitelbilder w\u00e4hrend des scannens der Bibliothek",
"LabelExtractChaptersDuringLibraryScanHelp": "Fall aktiviert, werden Kapitelbilder w\u00e4hrend des Imports von Videos beim Bibliothekenscan erzeugt. Falls deaktiviert, werden die Kapitelbilder w\u00e4hrend einer eigens daf\u00fcr geplanten Aufgabe erstellt, was den Bibliothekenscan beschleunigt.",
- "LabelConnectGuestUserName": "Ihr Emby Benutzername oder Emailadresse:",
+ "ViewTypeMusicFavorites": "Favoriten",
+ "ViewTypeMusicFavoriteAlbums": "Album Favoriten",
+ "ViewTypeMusicFavoriteArtists": "Interpreten Favoriten",
+ "ViewTypeMusicFavoriteSongs": "Lieder Favoriten",
+ "ButtonAddLocalUser": "F\u00fcge lokalen Benutzer hinzu",
+ "HeaderIdentification": "Identifizierung",
"LabelConnectUserName": "Emby Benutzername\/ Email-Adresse:",
"LabelConnectUserNameHelp": "Verbinden Sie diesen Benutzer mit einem Emby Konto um eine leichte erleichterte Verbindung ohne der Kenntnis einer Server IP Adresse zu erm\u00f6glichen.",
- "ButtonLearnMoreAboutEmbyConnect": "Erfahren Sie mehr \u00fcber Emby-Connect",
+ "ButtonNext": "N\u00e4chstes",
+ "ButtonPrevious": "Vorheriges",
"LabelExternalPlayers": "Externe Abspielger\u00e4te:",
"LabelExternalPlayersHelp": "Zeige Buttons um Inhalt auf externen Ger\u00e4te abzuspielen. Dies ist nur auf Ger\u00e4ten verf\u00fcgbar, die URL Schemes unterst\u00fctzen (Generell Android und iOS). In Verbindung mit externen Abspielern gibt es generell keine Unterst\u00fctzung f\u00fcr die Fernbedienung oder die Fortsetzung von gesehenen Inhalten.",
- "LabelNativeExternalPlayersHelp": "Zeige Schaltfl\u00e4chen f\u00fcr Wiedergabe in externen Playern.",
- "LabelEnableItemPreviews": "Aktiviere Vorschaubild f\u00fcr Eintrag",
- "LabelEnableItemPreviewsHelp": "Wenn aktiviert, wird bei bestimmten Darstellungen eine Vorschauen bei Klick angezeigt.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Untertitel Profil",
"HeaderSubtitleProfiles": "Untertitel Profile",
"HeaderSubtitleProfilesHelp": "Untertitel Profile beschreiben die vom Ger\u00e4t unterst\u00fctzten Untertitelformate.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "HLs segmentierte Untertitel",
"LabelSubtitleFormatHelp": "Beispiel: srt",
"ButtonLearnMore": "Erfahre mehr",
+ "HeaderKodiMetadataHelp": "Emby beinhaltet eine native Unterst\u00fctzung von Nfo Metadata Dateien. Um Nfo Metadata ein oder auszuschalten, verwenden Sie den Erweitert Tab.",
+ "LabelKodiMetadataUser": "Synchronisiere den \"Gesehen\" Status von Benutzern in NFO's f\u00fcr:",
+ "LabelKodiMetadataUserHelp": "Aktivieren Sie dies, um den \"Gesehen\" Status zwischen Emby Server und Nfo Dateien synchron zu halten.",
+ "LabelKodiMetadataDateFormat": "Ver\u00f6ffentlichungsdatum Format:",
+ "LabelKodiMetadataDateFormatHelp": "Alle Daten in den NFO's werde unter Benutzung dieses Format gelesen und geschrieben.",
+ "LabelKodiMetadataSaveImagePaths": "Speicher Bildpfade innerhalb der NFO Dateien",
+ "LabelKodiMetadataSaveImagePathsHelp": "Dies ist empfehlenswert wenn du Dateinamen hast, die nicht den Kodi Richtlinien entsprechen.",
+ "LabelKodiMetadataEnablePathSubstitution": "Aktiviere Pfadersetzung",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiviert die Pfadersetzung f\u00fcr Bildpfade durch Benutzung der Server Pfadersetzung Einstellungen",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Siehe Pfadersetzung.",
+ "LabelKodiMetadataEnableExtraThumbs": "Kopiere Extrafanart in Extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Beim downloaden von Bildern k\u00f6nnen diese sowohl als Extrafanart als auch als Extrathumb gespeichert werden, um maximale Kodi Kompatibilit\u00e4t zu erzielen.",
"TabPlayback": "Wiedergabe",
"HeaderLanguagePreferences": "Spracheinstellungen",
"TabCinemaMode": "Kino-Modus",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Benutze nur Trailer von nicht gesehenen Inhalten",
"LabelEnableIntroParentalControl": "Aktiviere die smarte Kindersicherung",
"LabelEnableIntroParentalControlHelp": "Es werden nur Trailer ausgew\u00e4hlt, die der Altersfreigabe des Inhalts entsprechen der angesehen wird.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Diese Funktion ben\u00f6tigt eine aktive Unterst\u00fctzer Mitgliedschaft und die Installation des Trailer Channel Plugins.",
"OptionTrailersFromMyMoviesHelp": "Ben\u00f6tigt die Einrichtung lokaler Trailer.",
"LabelCustomIntrosPath": "Benutzerdefinierter Pfad f\u00fcr Intros:",
"LabelCustomIntrosPathHelp": "Ein Ordner der Videodateien beinhaltet. Ein Video wird zuf\u00e4llig ausgew\u00e4hlt und nach einem Trailer abgespielt.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Optionen",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Diese Funktion ben\u00f6tigt eine aktive Unterst\u00fctzer Mitgliedschaft und die Installation des Trailer Channel Plugins.",
"LabelSelectInternetTrailersForCinemaMode": "Internet Trailer:",
"OptionUpcomingDvdMovies": "Beinhaltet Trailer von neuen und erscheinenden Filmen auf DVD & Blu-ray",
"OptionUpcomingStreamingMovies": "Beinhaltet Trailer von neuen und erscheinenden Filmen auf Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Einzelne Benutzer erhalten die M\u00f6glichkeit den Kino-Modus in den eigenen Einstellungen zu deaktivieren.",
"LabelEnableCinemaMode": "Aktiviere den Kino-Modus",
"HeaderCinemaMode": "Kino-Modus",
+ "TabDevices": "Ger\u00e4te",
+ "LabelLocalHttpServerPortNumber": "Lokale HTTP Portnummer:",
+ "LabelLocalHttpServerPortNumberHelp": "Die TCP Port Nummer, auf die der Emby http Server h\u00f6rt.",
+ "LabelEnableAutomaticPortMap": "Aktiviere das automatische Port-Mapping",
+ "LabelEnableAutomaticPortMapHelp": "Versuche automatisch den \u00f6ffentlichen Port dem lokalen Port mit Hilfe von UPnP zuzuordnen. Dies kann mit einigen Router-Modellen nicht funktionieren.",
"LabelDateAddedBehavior": "Verhalten f\u00fcr Hinzuf\u00fcgedatum bei neuen Inhalten:",
"OptionDateAddedImportTime": "Benutze das Scandatum vom hinzuf\u00fcgen in die Bbliothek",
"OptionDateAddedFileTime": "Benutze das Erstellungsdatum der Datei",
"LabelDateAddedBehaviorHelp": "Wenn ein Metadatenwert vorhanden ist, wird dieser immer gegen\u00fcber den anderen Optionen bevorzugt werden.",
"LabelNumberTrailerToPlay": "Anzahl der abzuspielenden Trailer:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limitiere die Gr\u00f6\u00dfe des Channel Download Verzeichnisses.",
"TitleDevices": "Ger\u00e4te",
"TabCameraUpload": "Kamera-Upload",
- "TabDevices": "Ger\u00e4te",
"HeaderCameraUploadHelp": "Lade automatisch Fotos und Videos, die von Ihrem Mobilger\u00e4t gemacht wurden, nach Emby hoch.",
"MessageNoDevicesSupportCameraUpload": "Du hast bis jetzt keine Ger\u00e4t die den Kamera-Upload unterst\u00fctzen.",
"LabelCameraUploadPath": "Kamera-Upload Pfad:",
"LabelCameraUploadPathHelp": "W\u00e4hle, falls gew\u00fcnscht, einen eigenen Upload Pfad. Wird keiner festgelegt, so wird der Standard-Pfad verwendet. Ein eigener Pfad muss zus\u00e4tzlich in der Medien Bibliothek hinzugef\u00fcgt werden!",
"LabelCreateCameraUploadSubfolder": "Erstelle ein Unterverzeichnis f\u00fcr jedes Ger\u00e4t",
"LabelCreateCameraUploadSubfolderHelp": "Bestimmte Verzeichnisse k\u00f6nnen Ger\u00e4ten durch einen Klick auf der Ger\u00e4teseite zugewiesen werden.",
+ "ButtonInviteUser": "Lade Benutzer ein",
"LabelCustomDeviceDisplayName": "Angezeigter Name:",
"LabelCustomDeviceDisplayNameHelp": "Lege einen individuellen Anzeigenamen fest oder lasse das Feld leer, um den vom ger\u00e4t \u00fcbermittelten Namen zu nutzen.",
"HeaderInviteUser": "Lade Benutzer ein",
- "LabelConnectGuestUserNameHelp": "Dies ist der Benutzername oder die Emailadresse die Ihr Freund verwendet um sich auf der Emby Website anzumelden.",
"HeaderInviteUserHelp": "Das Tauschen von Medien mit Freunden ist mit Emby Connect leichter als jemals zuvor.",
"ButtonSendInvitation": "Sende Einladung",
- "HeaderSignInWithConnect": "Anmelden mit Emby Connect",
"HeaderGuests": "G\u00e4ste",
"HeaderLocalUsers": "Lokale Benutzer",
"HeaderPendingInvitations": "Ausstehende Einladungen",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "W\u00f6chentlich",
"OptionWeekends": "An Wochenenden",
"MessageProfileInfoSynced": "Benutzerprofil Informationen mit Emby Connect synchronisiert",
- "HeaderOptionalLinkEmbyAccount": "Optional: Verbinden Sie Ihr Emby Konto",
"ButtonTrailerReel": "Trailer Rolle",
"HeaderTrailerReel": "Trailer Rolle",
"OptionPlayUnwatchedTrailersOnly": "Spiele nur bisher nicht gesehene Trailer",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "Keine Trailer gefunden. Installieren Sie den Trailer-Channel um Ihre Film-Bibliothek mit Trailer aus dem Internet zu erweitern.",
"HeaderNewUsers": "Neue Benutzer",
"ButtonSignUp": "Anmeldung",
+ "LabelConnectGuestUserName": "Ihr Emby Benutzername oder Emailadresse:",
+ "LabelConnectGuestUserNameHelp": "Dies ist der Benutzername oder die Emailadresse die Ihr Freund verwendet um sich auf der Emby Website anzumelden.",
"ButtonForgotPassword": "Passwort vergessen",
"OptionDisableUserPreferences": "Deaktiviere den Zugriff auf Benutzereinstellungen",
"OptionDisableUserPreferencesHelp": "Falls aktiviert, werden nur Administratoren die M\u00f6glichkeit haben, Benutzerbilder, Passw\u00f6rter und Spracheinstellungen zu bearbeiten.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Teile Medienverzeichnisse",
"MessageGuestSharingPermissionsHelp": "Die meisten Funktionen sind f\u00fcr G\u00e4ste zun\u00e4chst nicht verf\u00fcgbar, k\u00f6nnen aber je nach Bedarf aktiviert werden.",
"HeaderInvitations": "Einladungen",
- "LabelForgotPasswordUsernameHelp": "Bitte gib deinen Benutzernamen ein, falls du dich daran erinnerst.",
"HeaderForgotPassword": "Passwort vergessen",
+ "LabelForgotPasswordUsernameHelp": "Bitte gib deinen Benutzernamen ein, falls du dich daran erinnerst.",
"TitleForgotPassword": "Passwort vergessen",
"TitlePasswordReset": "Passwort zur\u00fccksetzen",
"LabelPasswordRecoveryPinCode": "PIN-Code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Altersbeschr\u00e4nkung",
"HeaderVideoTypes": "Videotypen",
"HeaderYears": "Jahre",
+ "OptionPosterCard": "Poster Karte",
+ "OptionThumbCard": "Thumb Karte",
+ "OptionAllowRemoteSharedDevices": "Erlaube Fernsteuerung geteilter Ger\u00e4te",
+ "OptionAllowRemoteSharedDevicesHelp": "DLNA-Ger\u00e4te werden gemeinsam genutzt, bis ein Benutzer die Steuerung \u00fcbernimmt.",
+ "HeaderRemoteControl": "Fernsteuerung",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "K\u00fcnstler",
+ "HeaderSignInWithConnect": "Anmelden mit Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Dokumentation",
+ "LabelDeveloperResources": "Entwickler Ressourcen",
"HeaderAddTag": "F\u00fcge Tag hinzu",
- "HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit keiner oder nicht erkannter Altersfreigabe",
- "LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Informationen",
"LabelEnableSingleImageInDidlLimit": "Begrenze auf ein eingebundenes Bild",
"LabelEnableSingleImageInDidlLimitHelp": "Einige Ger\u00e4te zeigen m\u00f6glicherweise Darstellungsfehler wenn mehrere Bilder mit Didl eingebunden wurden.",
"TabActivity": "Aktivit\u00e4t",
"TitleSync": "Synchronisation",
+ "HeaderSettings": "Einstellungen",
"OptionAllowSyncContent": "Erlaube Synchronisation",
- "OptionAllowContentDownloading": "Erlaube Mediendownload",
+ "FolderTypeInherit": "\u00dcbernehmen",
+ "LabelContentType": "Inhalte-Typ:",
"NameSeasonUnknown": "Staffel unbekannt",
"NameSeasonNumber": "Staffel {0}",
"LabelNewUserNameHelp": "Benutzernamen k\u00f6nnen Zeichen (a-z), Zahlen (0-9), Striche (-), Unterstriche (_), Apostrophe (') und Punkte (.) enthalten.",
+ "ButtonHelp": "Hilfe",
+ "TabAccess": "Zugang",
+ "HeaderDeviceAccess": "Ger\u00e4te Zugang",
+ "OptionEnableAccessFromAllDevices": "Zugriff von allen Ger\u00e4ten erlauben",
+ "DeviceAccessHelp": "Dies wird nur auf Ger\u00e4te angewandt die eindeutig identifiziert werden k\u00f6nnen und verhindert nicht den Web-Zugriff. Gefilterter Zugriff auf Ger\u00e4te verhindert die Nutzung neuer Ger\u00e4te solange, bis der Zugriff f\u00fcr diese freigegeben wird.",
+ "ButtonQuickStartGuide": "Schnellstart Instruktionen",
+ "HeaderSyncJobInfo": "Synchronisations-Aufgabe",
"TabJobs": "Aufgaben",
"TabSyncJobs": "Synchronisations-Aufgaben",
+ "HeaderTermsOfService": "Emby Nutzungsbedingungen",
+ "MessagePleaseAcceptTermsOfService": "Bitte akzeptieren Sie die Nutzungsbedingungen & Datenschutzbestimmungen bevor Sie fortfahren.",
+ "OptionIAcceptTermsOfService": "Ich akzeptiere die Nutzungsbedingungen.",
+ "ButtonPrivacyPolicy": "Datenschutzbestimmungen",
+ "ButtonTermsOfService": "Nutzungsbedingungen",
+ "OptionHideUserFromLoginHelp": "Hilfreich f\u00fcr private oder versteckte Administrator-Konten. Der Benutzer muss sich manuell mit der Eingabe des Benutzernamens und Passworts anmelden.",
+ "LabelEnterConnectUserName": "Benutzername oder Email:",
+ "LabelEnterConnectUserNameHelp": "Dies ist Ihr Emby Konto Benutzername oder Email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Behandle Archive wie Medien",
+ "OptionDetectArchiveFilesAsMediaHelp": "Wenn aktiviert werden .rar und .zip Datei-Erweiterungen wie Medien behandelt.",
+ "ButtonDonate": "Spenden",
+ "HeaderOptions": "Optionen",
+ "HeaderIdentificationResult": "Identifikationsergebnis",
+ "OptionEnableAccessToAllChannels": "Aktiviere Zugriff auf alle Kan\u00e4le",
+ "LabelAutomaticUpdates": "Aktiviere automatische Updates",
+ "LabelFanartApiKey": "Pers\u00f6nlicher API Schl\u00fcssel:",
+ "LabelFanartApiKeyHelp": "Fanart Anfragen ohne einen pers\u00f6nlichen API Schl\u00fcssel liefert Ergebnisse der letzten 7 Tage. Bei Verwendung eines pers\u00f6nlichen API Schl\u00fcssels werden Ergebnisse der letzten 48 Stunden, und als VIP Member, der letzten 10 Minuten geliefert.",
+ "HeaderDeveloperOptions": "Entwickleroptionen",
+ "OptionEnableWebClientResponseCache": "Aktiviere die Antwortzwischenspeicherung des Web Clients",
+ "OptionDisableForDevelopmentHelp": "Konfiguriere diese Einstellungen f\u00fcr die ben\u00f6tigten Entwicklungszwecke des Web Clients.",
+ "OptionEnableWebClientResourceMinification": "Aktiviere die Ressourcenminimierung des Web Clients",
+ "LabelDashboardSourcePath": "Web Client Sourcepfad:",
+ "LabelDashboardSourcePathHelp": "Spezifiziere den Pfad zum Dashboard-UI-Verzeichniss, falls der Server von der Source ausgef\u00fchrt wird. Alle Web-Client-Dateien werden von diesem Pfad aus bedient werden.",
+ "HeaderPaths": "Pfade",
+ "TitleNotifications": "Benachrichtigungen",
+ "ButtonDonateWithPayPal": "Spende mit PayPal",
+ "TitleScheduledTasks": "Geplante Aufgaben",
+ "LinkApi": "API",
+ "LabelPublicHttpPort": "\u00d6ffentliche HTTP Portnummer:",
+ "LabelPublicHttpPortHelp": "Die \u00f6ffentliche Portnummer sollte einem lokalen HTTP Port zugewiesen werden.",
+ "LabelPublicHttpsPort": "\u00d6ffentliche HTTPS Portnummer:",
+ "LabelPublicHttpsPortHelp": "Die \u00f6ffentliche Portnummer sollte einem lokalen HTTPS Port zugewiesen werden.",
+ "LabelEnableHttps": "Gebe HTTPS als externe Adresse aus",
+ "LabelEnableHttpsHelp": "Wenn eingeschaltet, wird der Server eine https url als externe Adresse an alle Clients melden.",
+ "LabelHttpsPort": "Lokale HTTPS Portnummer:",
+ "LabelHttpsPortHelp": "Die TCP Port-Nummer f\u00fcr sichere Emby https Verbindungen.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Benutzerdefinierte CSS:",
+ "LabelCustomCssHelp": "Wende deine eigene, benutzerdefinierte CSS f\u00fcr das Webinterface an.",
+ "ButtonConvertMedia": "Konvertiere Medien",
+ "ButtonOrganize": "Organisieren",
+ "ButtonJoinTheDevelopmentTeam": "Schlie\u00dfen Sie sich dem Entwickler-Team an",
+ "OptionEnableAccessToAllLibraries": "Erlaube Zugriff auf alle Bibliotheken",
+ "LabelSyncTempPath": "Verzeichnis f\u00fcr tempor\u00e4re Dateien",
+ "LabelSyncTempPathHelp": "Legen Sie ein eigenes Synchronisations-Arbeits Verzeichnis fest. Konvertierte Medien werden w\u00e4hrend der Synchronisation hier gespeichert.",
+ "LabelCustomCertificatePath": "Eigener Zertifikats Ordner:",
+ "LabelCustomCertificatePathHelp": "F\u00fcgen Sie ihr eigenes SSL Zertifikat als .pfx Datei hinzu. Wenn ausgelassen, wird der Server ein selbst signiertes Zertifikat f\u00fcr Sie erstellen.",
+ "LabelDisplayCollectionsViewHelp": "Die erstellt eine eigene Ansicht f\u00fcr Sammlungen, auf denen Sie Zugriff haben. Um eine Sammlung zu erstellen benutzen Sie einen Rechtsklick oder halten Sie einen Film gedr\u00fcckt und w\u00e4hlen Sie 'Zu Sammlung hinzuf\u00fcgen'.",
+ "HeaderSyncRequiresSupporterMembership": "Synchronisation ben\u00f6tigt eine Unterst\u00fctzer-Mitgliedschaft",
+ "HeaderEnjoyDayTrial": "Genie\u00dfen Sie eine 14 Tage Testversion",
+ "CategorySync": "Synchronisieren",
+ "RegisterWithPayPal": "Registrieren mit PayPal",
+ "NotificationOptionCameraImageUploaded": "Kamera Bild hochgeladen",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Einfacher PIN Code",
+ "LabelEasyPinCode": "Einfacher pin code:",
+ "EasyPasswordHelp": "Ihre vereinfachte PIN Eingabe wird f\u00fcr offline Zugriffe von unterst\u00fctzenden Emby Apps verwendet. Sie kann ebenso als erleichterten Zugang aus dem eigenen Netzwerk verwendet werden.",
+ "LabelInNetworkSignInWithEasyPassword": "Schalte Login mit einfachen Passwort f\u00fcr das eigene Netzwerk ein.",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "Wenn aktiviert, k\u00f6nnen Sie sich in ihrem eigenen Netzwerk mit dem vereinfachten PIN bei Emby Apps anmelden. Ihr regul\u00e4res Kennwort wird nur ben\u00f6tigt, wenn Sie unterwegs sind. Wenn Sie den PIN frei lassen, so ben\u00f6tigen Sie in Ihrem Netzwerk keinen PIN.",
+ "ButtonResetEasyPassword": "Einfachen PIN zur\u00fccksetzen",
+ "OptionAllowContentDownloading": "Erlaube Mediendownload",
+ "LabelBlockContentWithTags": "Blockiere Inhalte mit Tags:",
"LabelTagFilterMode": "Modus:",
"LabelTagFilterAllowModeHelp": "Wenn erlaubte Tags als Teil einer unter verzweigten Ordnerstruktur verwendet werden, m\u00fcssen \u00fcbergeordnete Verzeichnisse ebenso mit Tags versehen werden.",
+ "UserDownloadingItemWithValues": "{0} l\u00e4dt {1} herunter",
+ "LabelPinCode": "PIN Code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Nur Erwachsene!",
+ "DividerOr": "-- oder --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Bitte geben Sie Ihren vereinfachten PIN Code ein:",
+ "KidsModeAdultInstruction": "Verwenden Sie das Schloss-Symbol in der rechten oberen Ecke um den Kindermodus zu verlassen oder zu konfigurieren. Sie ben\u00f6tigen daf\u00fcr Ihren PIN Code.",
+ "ButtonConfigurePinCode": "PIN Code festlegen",
+ "HeaderAdultsReadHere": "Eltern, bitte lesen!",
+ "LabelEnableEnhancedMovies": "Aktiviere erweiterte Filmdarstellung.",
+ "LabelEnableEnhancedMoviesHelp": "Wenn aktiviert, werden Filme als Verzeichnisse dargestellt, welche Trailer, Extras, Besetzung & Crew sowie weitere Inhalte enth\u00e4lt.",
+ "NotificationOptionUserLockedOut": "Benutzer ausgeschlossen",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "Benutzer {0} wurde ausgeschlossen",
"HeaderThisUserIsCurrentlyDisabled": "Dieser Benutzer ist aktuell deaktiviert",
"MessageReenableUser": "F\u00fcr Reaktivierung schauen Sie unten",
+ "LabelTimeLimitHours": "Zeitlimit (Stunden):",
+ "HeaderSendNotificationHelp": "Benachrichtigungen werden in Ihren Emby-Eingang angezeigt. Weitere Optionen k\u00f6nnen durch Installation im Service-Tab hinzugef\u00fcgt werden.",
+ "HeaderInstalledServices": "Installierte Dienste",
+ "HeaderAvailableServices": "Verf\u00fcgbare Dienste",
+ "MessageNoServicesInstalled": "Keine Dienste installiert.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Dienste",
+ "ViewTypePlaylists": "Wiedergabelisten",
+ "LabelAlbumArtists": "Alben Interpreten:",
"LabelEnableInternetMetadataForTvPrograms": "Lade Internet Metadaten f\u00fcr:",
"OptionTVMovies": "TV Filme",
"HeaderUpcomingMovies": "Bevorstehende Filme",
- "HeaderUpcomingSports": "Folgende Sportveranstaltungen",
"HeaderUpcomingPrograms": "Bevorstehende Programme",
"LabelShowLibraryTileNames": "Zeige Bibliothek Kachelnamen.",
"LabelShowLibraryTileNamesHelp": "Legen Sie fest, ob Beschriftungen unter den Kacheln der Startseite angezeigt werden sollen.",
+ "HeaderSupporterBenefits": "Unterst\u00fctzer Vorteile",
+ "HeaderAddUser": "Benutzer hinzuf\u00fcgen",
+ "LabelAddConnectSupporterHelp": "Um einen Benutzer hinzuzuf\u00fcgen, der nicht angezeigt wird, m\u00fcssen Sie diesen erst mit Emby Connect von seinem Benutzerprofil verbinden.",
+ "TabPlaylist": "Wiedergabeliste",
+ "LabelConfigureServer": "Konfiguriere Emby",
+ "WelcomeToProject": "Willkommen bei Emby!",
+ "LinkedToEmbyConnect": "Verbunden mit Emby Connect",
+ "ProjectHasCommunity": "Emby hat eine wachsende Community von Benutzern und Unterst\u00fctzern.",
+ "VisitProjectWebsite": "Beuchen Sie die Emby Website",
+ "VisitProjectWebsiteLong": "Besuchen Sie die Emby Website f\u00fcr aktuelle Informationen und bleiben Sie auf dem letzten Stand mit dem Entwickler Blog.",
+ "HeaderHelpImproveProject": "Helfen Sie, Emby zu verbessern",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Werden Sie Emby Unterst\u00fctzer",
+ "ButtonLearnMoreAboutEmbyConnect": "Erfahren Sie mehr \u00fcber Emby-Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Verbinden Sie Ihr Emby Konto",
"OptionEnableTranscodingThrottle": "aktiviere Drosselung",
"OptionEnableTranscodingThrottleHelp": "Die Drosselung justiert die Transkodier-Geschwindigkeit, um die Server CPU Auslastung w\u00e4hrend der Wiedergabe zu minimieren.",
+ "OptionHideWatchedContentFromLatestMedia": "Verberge gesehene Inhalte von zuletzt hinzugef\u00fcgten.",
+ "TabSuggestions": "Empfehlungen",
+ "PlaceholderUsername": "Benutzername",
+ "HeaderSync": "Synchronisation",
+ "HeaderUpcomingSports": "Folgende Sportveranstaltungen",
"LabelUploadSpeedLimit": "Upload Geschwindigkeitslimit (Mbps):",
"OptionAllowSyncTranscoding": "Erlaube Synchronisation die Transkodierung ben\u00f6tigen",
"HeaderPlayback": "Medien Wiedergabe",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Benutzer werden, basierend auf deren Einstellungen, eine aussagekr\u00e4ftige Nachricht erhalten, wenn Inhalte nicht abgespielt werden k\u00f6nnen.",
"OptionAllowAudioPlaybackTranscoding": "Erlaube Audio-Wiedergabe die Transkodierung ben\u00f6tigt",
"OptionAllowVideoPlaybackTranscoding": "Erlaube Video-Wiedergabe die Transkodierung ben\u00f6tigt",
- "OptionAllowMediaPlaybackTranscodingHelp": "Benutzer werden, basierend auf deren Einstellungen, eine aussagekr\u00e4ftige Nachricht erhalten, wenn Inhalte nicht abgespielt werden k\u00f6nnen.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Entfernte Client Datenraten-Begrenzung (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "Eine optionale Streaming Datengrenze f\u00fcr alle Clients mit Fernzugriff. Dies verhindert, dass Clients eine h\u00f6here Bandbreite als die zur Verf\u00fcgung stehende Verbindung, anfragen.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Begrenzt die Anzahl der verwendeten CPU Kerne w\u00e4hrend der Konvertierung f\u00fcr die Synchronisation.",
"OptionEnableFullSpeedConversion": "Aktiviere Hochleistung-Konvertierung.",
"OptionEnableFullSpeedConversionHelp": "Standardm\u00e4\u00dfig werden Synchronisations-Konvertierungen bei geringer Geschwindigkeit durchgef\u00fchrt um Ressourcen zu sparen.",
+ "HeaderRepeatingOptions": "Wiederholungs Einstellungen",
+ "OptionMyMediaButtons": "Meine Medien (Schaltfl\u00e4chen)",
+ "OptionMyMedia": "Meine Medien",
+ "OptionMyMediaSmall": "Meine Medien (Klein)",
"HeaderPlaylists": "Wiedergabeliste",
+ "ViewTypeMusicPlaylists": "Wiedergabelisten",
"HeaderViewStyles": "Zeige Stiele",
"LabelSelectViewStyles": "Aktiviere erweiterte Ansichten f\u00fcr:",
"LabelSelectViewStylesHelp": "Wenn aktiviert werden Darstellungen von Kategorien mit Medieninformationen wie Empfehlungen, k\u00fcrzlich hinzugef\u00fcgt, Genres und weitere, angereichert. Wenn deaktiviert werden diese nur als simple Verzeichnisse dargestellt.",
+ "ButtonSignInWithConnect": "Anmelden mit Emby Connect",
+ "HeaderNewServer": "Neuer Server",
+ "LabelMaxChromecastBitrate": "Max Chromcast Datenrate:",
+ "TabAppSettings": "App Einstellungen",
"TabPhotos": "Fotos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Willkommen zu Emby",
"EmbyIntroMessage": "Mit Emby k\u00f6nnen Sie auf auf einfache Art und Weise Videos, Musik und Fotos zu Smartphones, Tablets und anderen Ger\u00e4ten von Ihrem Emby-Server senden.",
"ButtonSkip": "\u00dcberspringen",
"TextConnectToServerManually": "Verbinde manuell zum Server",
- "ButtonSignInWithConnect": "Anmelden mit Emby Connect",
"ButtonConnect": "Verbinde",
"LabelServerHost": "Adresse:",
"LabelServerHostHelp": "192.168.1.100 oder https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "Neuer Server",
"ButtonChangeServer": "Wechsel Server",
"HeaderConnectToServer": "Verbinde zu Server",
"OptionReportList": "Listenanzeige",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Spalten",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Kaufen",
"OptionEnableExternalVideoPlayers": "Aktiviere externe Videoplayer",
+ "LabelNativeExternalPlayersHelp": "Zeige Schaltfl\u00e4chen f\u00fcr Wiedergabe in externen Playern.",
+ "LabelEnableItemPreviews": "Aktiviere Vorschaubild f\u00fcr Eintrag",
+ "LabelEnableItemPreviewsHelp": "Wenn aktiviert, wird bei bestimmten Darstellungen eine Vorschauen bei Klick angezeigt.",
"ButtonUnlockGuide": "Guide freischalten",
+ "ButtonManageServer": "Konfiguriere Server",
"LabelEnableFullScreen": "Aktiviere Vollbild",
"LabelEnableChromecastAc3Passthrough": "Aktiviere direkte Chromcast AC3 Weiterleitung",
- "OptionSyncToSDCard": "Synchronisiert auf externe SD Karte",
+ "LabelSyncPath": "Synchronisationsverzeichnis:",
"LabelEmail": "Email:",
"LabelUsername": "Benutzername:",
"HeaderSignUp": "Anmelden",
"LabelPasswordConfirm": "Passwort (Best\u00e4tigung):",
"ButtonAddServer": "Server hinzuf\u00fcgen",
+ "ButtonShare": "Teilen",
+ "OptionAllowLinkSharing": "Erlaube das Teilen in sozialen Netzwerken",
+ "OptionAllowLinkSharingHelp": "Es werden nur Web-Seiten mit Medieninformationen geteilt. Medien hingenen werden niemals \u00f6ffentlich geteilt. Die geteilten Inhalte sind nur begrenzt zug\u00e4nglich und werden, basierend auf den Servereinstellungen, nach einer Zeit ung\u00fcltig.",
+ "HeaderSharing": "Teilen",
"TabHomeScreen": "Startseite",
"HeaderDisplay": "Anzeigen",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "Diese Einstellungen werden mit allen Ger\u00e4ten geteilt",
+ "LabelRecordingPath": "Aufnahmeverzeichnis:",
+ "LabelRecordingPathHelp": "Legen Sie einen eigenes Aufnahmeverzeichnis fest, lassen Sie das Feld leer um das Standardverzeichnis zu verwenden.",
"OptionEnableAutomaticServerUpdates": "Aktiviere automatische Server Updates",
"OptionOtherTrailers": "Verwende Trailer von \u00e4lteren Filmen",
"HeaderOverview": "\u00dcbersicht",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Ger\u00e4t hinzuf\u00fcgen",
"HeaderAddDevice": "Ger\u00e4t hinzuf\u00fcgen",
"HeaderExternalServices": "Externe Dienste",
- "LabelTunerIpAddress": "Tuner IP Adresse:",
"TabExternalServices": "Externe Dienste",
"TabTuners": "Tuner",
"HeaderGuideProviders": "Fernsehprogramm Quellen",
"AddGuideProviderHelp": "Fernsehprogramm Quelle hinzuf\u00fcgen",
"LabelZipCode": "PLZ:",
- "GuideProviderSelectListings": "W\u00e4hle Listen",
- "GuideProviderLogin": "Anmelden",
"LabelLineup": "TV Programm:",
"MessageTunerDeviceNotListed": "Wird Ihr Tuner hier nicht angezeigt? Installieren Sie einen externen Dienst f\u00fcr Weitere Live-TV Funktionen.",
+ "OptionSyncToSDCard": "Synchronisiert auf externe SD Karte",
+ "LabelTunerIpAddress": "Tuner IP Adresse:",
+ "GuideProviderSelectListings": "W\u00e4hle Listen",
+ "GuideProviderLogin": "Anmelden",
"LabelImportOnlyFavoriteChannels": "Beschr\u00e4nke auf favorisierte Kan\u00e4le",
"ImportFavoriteChannelsHelp": "Wenn aktiviert, werden nur auf dem Tuner favorisierte Kan\u00e4le importiert.",
"ButtonRepeat": "Wiederholen",
- "LabelEnableThisTuner": "Aktiviere diesen Tuner",
- "LabelEnableThisTunerHelp": "Abw\u00e4hlen um das importieren von Kan\u00e4len dieses Tuners zu verhindern",
- "HeaderLocked": "Blockiert",
"HeaderUnidentified": "Nicht identifiziert",
"HeaderImagePrimary": "Bevorzugt",
"HeaderImageBackdrop": "Hintergrund",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "Benutzerbild",
+ "LabelEnableThisTuner": "Aktiviere diesen Tuner",
+ "LabelEnableThisTunerHelp": "Abw\u00e4hlen um das importieren von Kan\u00e4len dieses Tuners zu verhindern",
+ "HeaderLocked": "Blockiert",
"ButtonDisplaySettings": "Bildeinstellungen",
"ButtonHomeScreenSettings": "Startbildschirm Einstellungen",
"ButtonPlaybackSettings": "Wiedergabe Einstellungen",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Legen Sie die maximale Anzahl von Transkodierungs-Threads fest. Das Reduzieren der Thread-Anzahl verringert die CPU Auslastung, wird aber m\u00f6glicherweise die Transkodierung nicht schnell genug f\u00fcr eine st\u00f6rungsfrei Wiedergabe erm\u00f6glichen.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synchronisationsverzeichnis:",
"OptionSyncOnlyOnWifi": "Synchronisiere nur bei Wifi",
+ "OptionDisplayChannelsInline": "Zeige Kan\u00e4le in meinen Ansichten.",
+ "OptionDisplayChannelsInlineHelp": "Wenn aktiviert. werden Kan\u00e4le direkt in Ihren anderen Ansichten. Wenn deaktiviert werden diese nur in einer separaten Kanal-Ansicht angezeigt.",
"OptionSyncLosslessAudioOriginal": "Synchronisiere unkomprimierte Audiospur in original Qualit\u00e4t (Wenn unterst\u00fctzt).",
"HeaderMetadata": "Metadaten",
"HeaderRecordingOptions": "Aufnahme Einstellungen",
- "ButtonShare": "Teilen",
"HeaderUpcomingForKids": "Vorschau f\u00fcr Kinder",
"HeaderSetupLiveTV": "Live TV einrichten",
"LabelTunerType": "Tuner Typ:",
"HelpMoreTunersCanBeAdded": "Weitere Tuner k\u00f6nnen sp\u00e4ter \u00fcber die Live TV Einstellungen hinzugef\u00fcgt werden.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Weitere TV Quellen k\u00f6nnen sp\u00e4ter in den Live TV Einstellungen hinzugef\u00fcgt werden.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Eine aktive Emby Unterst\u00fctzer-Mitgliedschaft wird f\u00fcr das automatisierte Erstellen von Aufnahmen ben\u00f6tigt.",
"HeaderSetupTVGuide": "TV Guide einrichten",
"LabelDataProvider": "Datenquelle:",
"OptionSendRecordingsToAutoOrganize": "Aktiviere Auto-Organisation f\u00fcr neue Aufnahmen",
"OptionSendRecordingsToAutoOrganizeHelp": "Neue Aufnahmen werden mittels automatischer Organisation in Ihrer Bibliothek importiert.",
"HeaderDefaultPadding": "Standard Vor\/ Nachlauf",
- "HeaderSubtitles": "Untertitel",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Weitere TV Quellen k\u00f6nnen sp\u00e4ter in den Live TV Einstellungen hinzugef\u00fcgt werden.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Aktiviere Bild per Bild Videoanalyse.",
"OptionEnableVideoFrameAnalysisHelp": "Extrahiere detaillierte Videoinformationen um die Videotranskodierung so effizient wie m\u00f6glich zu machen. Das Erstellen der Bibliothek wird dadurch l\u00e4nger dauern. ",
"LabelVideoFrameAnalysisLimit": "Limitiere die Bild per Bild Analyse auf weniger als:",
+ "HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit keiner oder nicht erkannter Altersfreigabe",
"LabelHardwareVideoDecoder": "Hardware Video Dekoder:",
- "LabelHardwareVideoDecoderHelp": "Available on supported systems only."
+ "LabelHardwareVideoDecoderHelp": "Nur auf unterst\u00fctzen Systemen verf\u00fcgbar."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/el.json b/dashboard-ui/strings/html/el.json
index 7fed660966..15bc01a539 100644
--- a/dashboard-ui/strings/html/el.json
+++ b/dashboard-ui/strings/html/el.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
"LabelVisitCommunity": "\u039a\u03bf\u03b9\u03bd\u03cc\u03c4\u03b7\u03c4\u03b1",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "\u03a0\u03c1\u03cc\u03c4\u03c5\u03c0\u03bf",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "\u03a0\u03b7\u03b3\u03ad\u03c2 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae",
"LabelBrowseLibrary": "\u03a0\u03b5\u03c1\u03b9\u03b7\u03b3\u03b7\u03b8\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7",
- "LabelConfigureServer": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 Emby",
"LabelOpenLibraryViewer": "\u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b8\u03b5\u03b1\u03c4\u03ae",
"LabelRestartServer": "\u0395\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03b4\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae",
"LabelShowLogWindow": "\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2",
"LabelPrevious": "\u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c2",
"LabelFinish": "\u03a4\u03ad\u03bb\u03bf\u03c2",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf",
"LabelYoureDone": "\u0395\u03af\u03c3\u03c4\u03b5 \u0388\u03c4\u03bf\u03b9\u03bc\u03bf\u03b9!",
- "ButtonAddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "\u039a\u03b1\u03bb\u03c9\u03c2 \u03ae\u03c1\u03b8\u03b1\u03c4\u03b5 \u03c3\u03c4\u03bf Emby!",
+ "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)",
"ThisWizardWillGuideYou": "\u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03bf\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b8\u03b1 \u03c3\u03b1\u03c2 \u03ba\u03b1\u03b8\u03bf\u03b4\u03b7\u03b3\u03ae\u03c3\u03b5\u03b9 \u03bc\u03ad\u03c3\u03c9 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03b9\u03ba\u03b1\u03c3\u03af\u03b1\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2. \u0393\u03b9\u03b1 \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03c4\u03b5, \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03ae\u03c2 \u03c3\u03b1\u03c2.",
"TellUsAboutYourself": "\u03a0\u03b5\u03af\u03c4\u03b5 \u03bc\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03c3\u03ac\u03c2",
- "ButtonQuickStartGuide": "\u039f\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b3\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7\u03c2 \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2",
"LabelYourFirstName": "\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03ac \u03c3\u03b1\u03c2",
"MoreUsersCanBeAddedLater": "\u03a0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03bf\u03c5\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b5\u03c2 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03b5\u03b8\u03bf\u03cd\u03bd \u03b1\u03c1\u03b3\u03cc\u03c4\u03b5\u03c1\u03b1 \u03bc\u03b5 \u03c4\u03bf \u03c4\u03b1\u03bc\u03c0\u03bb\u03cc",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u03ba\u03b1\u03c4\u03b1\u03c7\u03ce\u03c1\u03b7\u03c3\u03b7\u03c2 \u0398\u03c5\u03c1\u03ce\u03bd",
"LabelEnableAutomaticPortMappingHelp": "To UPnP \u03b5\u03c0\u03b9\u03c4\u03c1\u03ad\u03c0\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b4\u03c1\u03bf\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03c4\u03ae \u03b3\u03b9\u03b1 \u03b5\u03cd\u03ba\u03bf\u03bb\u03b7 \u03b1\u03c0\u03bf\u03bc\u03b1\u03ba\u03c1\u03c5\u03c3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7. \u0391\u03c5\u03c4\u03ae \u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b4\u03bf\u03c5\u03bb\u03ad\u03c8\u03b5\u03b9 \u03bc\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03bc\u03bf\u03bd\u03c4\u03ad\u03bb\u03b1 \u03b4\u03c1\u03bf\u03bc\u03bf\u03bb\u03bf\u03b3\u03b7\u03c4\u03ce\u03bd",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5.",
- "OptionIAcceptTermsOfService": "\u0391\u03c0\u03cc\u03b4\u03b5\u03c7\u03bf\u03bc\u03b1\u03b9 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2",
- "ButtonPrivacyPolicy": "\u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd",
- "ButtonTermsOfService": "\u038c\u03c1\u03bf\u03b9 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Ene",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "\u039f\u03c1\u03b3\u03ac\u03bd\u03c9\u03c3\u03b7",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9",
"ButtonCancel": "\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 ",
- "ButtonExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
- "ButtonNew": "\u039d\u03ad\u03bf",
- "HeaderTV": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7",
- "HeaderAudio": "\u0389\u03c7\u03bf\u03c2",
- "HeaderVideo": "\u0392\u03af\u03bd\u03c4\u03b5\u03bf",
- "HeaderPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
- "CategorySync": "\u03a3\u03c5\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2",
- "TabPlaylist": "\u039b\u03af\u03c3\u03c4\u03b1",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "\u0395\u03bd\u03ae\u03bb\u03b9\u03ba\u03bf\u03b9 \u03bc\u03cc\u03bd\u03bf!",
- "DividerOr": "--\u03ae--",
- "HeaderInstalledServices": "\u0395\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
- "HeaderAvailableServices": "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
- "MessageNoServicesInstalled": "\u039a\u03b1\u03bc\u03af\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b7.",
- "HeaderToAccessPleaseEnterEasyPinCode": "\u0393\u03b9\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03ce\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c3\u03b1\u03c2",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "\u039f\u03b9 \u03b5\u03bd\u03ae\u03bb\u03b9\u03ba\u03bf\u03b9 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03c4\u03b5!",
- "RegisterWithPayPal": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b5 Paypal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "\u0391\u03c0\u03bf\u03bb\u03b1\u03cd\u03c3\u03c4\u03b5 14 \u039c\u03ad\u03c1\u03b5\u03c2 \u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae\u03c2 \u03a0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5",
- "LabelSyncTempPath": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ce\u03bd \u0391\u03c1\u03c7\u03b5\u03af\u03c9\u03bd",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
- "ButtonDonateWithPayPal": "\u0394\u03c9\u03c1\u03b5\u03ac \u03bc\u03ad\u03c3\u03c9 Paypal",
- "OptionDetectArchiveFilesAsMedia": "\u0391\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b5 \u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c9\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1.",
- "OptionDetectArchiveFilesAsMediaHelp": "\u0391\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 .rar \u03ba\u03b1\u03b9 .zip \u03ba\u03b1\u03c4\u03b1\u03bb\u03ae\u03be\u03b5\u03b9\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd",
- "OptionReleaseDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae\u03c2",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "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",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:",
- "TitleScheduledTasks": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 Media",
"LabelFolderType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5",
"ReferToMediaLibraryWiki": "\u0391\u03bd\u03b1\u03c4\u03c1\u03b5\u03be\u03c4\u03b5 \u03c3\u03c4\u03bf media \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 wiki",
"LabelCountry": "\u03a7\u03ce\u03c1\u03b1",
"LabelLanguage": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1",
- "LabelTimeLimitHours": "\u038c\u03c1\u03b9\u03bf \u03a7\u03c1\u03cc\u03bd\u03bf\u03c5 (\u038f\u03c1\u03b5\u03c2)",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ce\u03bc\u03b5\u03bd\u03b7 \u03b3\u03bb\u03ce\u03c3\u03c3\u03b1 \u03bc\u03b5\u03c4\u03b1",
"LabelSaveLocalMetadata": "\u0391\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03ad\u03c1\u03b3\u03bf \u03c4\u03ad\u03c7\u03bd\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03c4\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03c3\u03b5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd",
"LabelSaveLocalMetadataHelp": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 artwork \u03ba\u03b1\u03b9 \u03bc\u03b5\u03c4\u03b1-\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03b5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03bc\u03ad\u03c3\u03c9\u03bd \u03b8\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03b8\u03ad\u03c3\u03b5\u03b9 \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c4\u03cc\u03c0\u03bf \u03cc\u03c0\u03bf\u03c5 \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03b5\u03cd\u03ba\u03bf\u03bb\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5.",
@@ -130,37 +47,16 @@
"TabPreferences": "\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2 ",
"TabPassword": "\u039a\u03c9\u03b4\u03b9\u03ba\u03cc\u03c2",
"TabLibraryAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7",
- "TabAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7",
"TabImage": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b1",
"TabProfile": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
- "TabMetadata": "Metadata",
- "TabImages": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2",
- "TabNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
- "TabCollectionTitles": "\u03a4\u03af\u03c4\u03bb\u03bf\u03b9",
- "HeaderDeviceAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2",
- "OptionEnableAccessFromAllDevices": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03c0\u03bf\u03c5 \u03bb\u03b5\u03af\u03c0\u03bf\u03c5\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b1\u03b9\u03b6\u03cc\u03bd",
"LabelUnairedMissingEpisodesWithinSeasons": "\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03ac\u03c0\u03b1\u03b9\u03c7\u03c4\u03c9\u03bd \u03b5\u03c0\u03b5\u03b9\u03c3\u03bf\u03b4\u03af\u03c9\u03bd \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03c3\u03b1\u03b9\u03b6\u03cc\u03bd",
"HeaderVideoPlaybackSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2 \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
- "HeaderPlaybackSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
"LabelAudioLanguagePreference": "\u03a0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2 \u0389\u03c7\u03bf\u03c5",
"LabelSubtitleLanguagePreference": "\u0393\u03bb\u03ce\u03c3\u03c3\u03b1 \u03c5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03c9\u03bd \u03c0\u03c1\u03bf\u03c4\u03af\u03bc\u03b7\u03c3\u03b7\u03c2",
- "OptionDefaultSubtitles": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "\u03a0\u03ac\u03bd\u03c4\u03b1 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03a5\u03c0\u03bf\u03c4\u03af\u03c4\u03bb\u03c9\u03bd",
- "OptionNoSubtitles": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03c5\u03c2",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "\u03a0\u03c1\u03bf\u03c6\u03af\u03bb",
"TabSecurity": "A\u03c3\u03c6\u03ac\u03bb\u03b5\u03b9\u03b1 ",
"ButtonAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
- "ButtonAddLocalUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a4\u03bf\u03c0\u03b9\u03ba\u03bf\u03cd \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
- "ButtonInviteUser": "\u03a0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
"ButtonSave": "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7",
"ButtonResetPassword": "\u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03c4\u03bf\u03c5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03cd \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
"LabelNewPassword": "\u039d\u03ad\u03bf\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u039c\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b5\u03c0\u03b9\u03c4\u03c1\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b3\u03bf\u03bd\u03b9\u03ba\u03ae \u03b2\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1:",
"MaxParentalRatingHelp": "\u03a4\u03bf \u03c0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03bf \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c5\u03c8\u03b7\u03bb\u03cc\u03c4\u03b5\u03c1\u03b7 \u03b2\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u03b8\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03c1\u03c5\u03bc\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7",
"LibraryAccessHelp": "\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03bc\u03ad\u03c3\u03c9\u03bd \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c4\u03bf \u03bc\u03bf\u03b9\u03c1\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03bc\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7. \u039f\u03b9 \u03b4\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ad\u03c2 \u03b8\u03b1 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7 \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03c4\u03b7\u03c4\u03b1 \u03bd\u03b1 \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03ac\u03b6\u03b5\u03c3\u03c4\u03b5 \u03cc\u03bb\u03b1 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
- "LabelSelectUsers": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03a7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd:",
"ButtonUpload": "\u0391\u03bd\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 ",
"HeaderUploadNewImage": "\u0391\u03bd\u03b5\u03b2\u03ac\u03c3\u03c4\u03b5 \u03bd\u03ad\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1",
"LabelDropImageHere": "\u0391\u03c0\u03bf\u03b8\u03ad\u03c3\u03c4\u03b5 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03b5\u03b4\u03ce",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u03a4\u03af\u03c0\u03bf\u03c4\u03b1 \u03b5\u03b4\u03ce ",
"MessagePleaseEnsureInternetMetadata": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03be\u03b1\u03c3\u03c6\u03b1\u03bb\u03af\u03c3\u03c4\u03b5 \u03c4\u03b7 \u03bb\u03ae\u03c8\u03b7 \u03bc\u03b5\u03c4\u03b1\u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c3\u03c4\u03bf internet \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03b7.\n",
"TabSuggested": "\u03a0\u03c1\u03bf\u03c4\u03b5\u03b9\u03bd\u03cc\u03bc\u03b5\u03bd\u03b7",
- "TabSuggestions": "Suggestions",
"TabLatest": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf\u03c2",
"TabUpcoming": "\u0395\u03c0\u03b5\u03c1\u03c7\u03cc\u03bc\u03b5\u03bd\u03b7",
"TabShows": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
@@ -217,6 +110,7 @@
"OptionAscending": "\u0391\u03cd\u03be\u03bf\u03c5\u03c3\u03b1",
"OptionDescending": "\u03a6\u03b8\u03af\u03bd\u03bf\u03c5\u03c3\u03b1",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "\u0397\u03bc\u03b5\u03c1\u03bf\u03bc\u03b7\u03bd\u03af\u03b1 \u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae\u03c2",
"OptionPlayCount": "\u03a6\u03bf\u03c1\u03ad\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
"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",
@@ -226,16 +120,10 @@
"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",
"OptionNameSort": "\u038c\u03bd\u03bf\u03bc\u03b1",
- "OptionFolderSort": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9",
"OptionBudget": "\u03a0\u03c1\u03bf\u03c5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03bc\u03cc\u03c2",
"OptionRevenue": "Revenue",
"OptionPoster": "\u0391\u03c6\u03af\u03c3\u03b1",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "\u03a7\u03c1\u03bf\u03bd\u03bf\u03b4\u03b9\u03ac\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "\u0392\u03b1\u03b8\u03bc\u03bf\u03bb\u03bf\u03b3\u03af\u03b1 \u03ba\u03c1\u03b9\u03c4\u03b9\u03ba\u03ce\u03bd",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2",
"TabMyPlugins": "\u03a4\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u03bc\u03bf\u03c5",
"TabCatalog": "\u039a\u03b1\u03c4\u03ac\u03bb\u03bf\u03b3\u03bf\u03c2",
- "TitlePlugins": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1",
"HeaderAutomaticUpdates": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b5\u03c2 \u0391\u03bd\u03b1\u03bd\u03b5\u03ce\u03c3\u03b5\u03b9\u03c2",
"HeaderNowPlaying": "\u03a4\u03ce\u03c1\u03b1 \u03a0\u03b1\u03af\u03b6\u03b5\u03b9:",
"HeaderLatestAlbums": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u0386\u03bb\u03bc\u03c0\u03bf\u03c5\u03bc",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u0392\u03af\u03bd\u03c4\u03b5\u03bf:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "\u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1:",
- "LabelStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7:",
- "LabelVersion": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7:",
- "LabelLastResult": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1:",
"OptionHasSubtitles": "\u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03b9",
"OptionHasTrailer": "\u03a4\u03c1\u03ad\u03ca\u03bb\u03b5\u03c1",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "\u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
"TabStudios": "\u03a3\u03c4\u03bf\u03cd\u03bd\u03c4\u03b9\u03bf",
"TabTrailers": "Trailers",
- "LabelArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b5\u03c2 \u03a4\u03b1\u03b9\u03bd\u03af\u03b5\u03c2",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "\u0391\u03c1\u03c7\u03b5\u03af\u03bf \u039a\u03b1\u03c4\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "\u03a0\u03b5\u03c1\u03af..",
"TabSupporterKey": "\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc\u03c2 \u03a5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2",
"TabBecomeSupporter": "\u0393\u03af\u03bd\u03b5 \u03a5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03b9\u03ba\u03c4\u03ae\u03c2",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b5 \u03c3\u03c4\u03b7 \u0392\u03ac\u03c3\u03b7",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "\u0395\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03bf\u03c5 \u03c4\u03b7 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c4\u03bf\u03c5 Emby",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "\u0391\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "\u038c\u03bd\u03bf\u03bc\u03b1:",
- "ButtonHelp": "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "\u03a4\u03b7\u03bb\u03b5\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 {0}",
"TabPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
"TabServer": "\u0394\u03b9\u03b1\u03ba\u03bf\u03bc\u03b9\u03c3\u03c4\u03ae\u03c2",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "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)",
"LabelAllowServerAutoRestart": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03ad\u03c1\u03b2\u03b5\u03c1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03b1\u03bd\u03b1\u03b2\u03b1\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2",
"LabelAllowServerAutoRestartHelp": "\u039f \u03a3\u03b5\u03c1\u03b2\u03b5\u03c1 \u03b8\u03b1 \u03ba\u03ac\u03bd\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03b9\u03bd\u03ae\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b9\u03c2 \u03bc\u03b7 \u03b5\u03bd\u03b5\u03c1\u03b3\u03ad\u03c2 \u03c0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5\u03c2, \u03cc\u03c4\u03b1\u03bd \u03ba\u03b1\u03bd\u03b5\u03af\u03c2 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03bd\u03b5\u03c1\u03b3\u03cc\u03c2.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "\u0395\u03c0\u03b5\u03b9\u03c3\u03cc\u03b4\u03b9\u03b1",
"OptionOtherVideos": "\u0386\u03bb\u03bb\u03b1 \u0392\u03af\u03bd\u03c4\u03b5\u03bf",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b5\u03c2 \u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03b9\u03c2",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "\u039f\u03b4\u03b7\u03b3\u03cc\u03c2",
"TabChannels": "\u039a\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1",
- "TabCollections": "\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ad\u03c2",
"HeaderChannels": "\u039a\u03b1\u03bd\u03ac\u03bb\u03b9\u03b1",
"TabRecordings": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ad\u03c2",
"TabScheduled": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b1",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "\u03a0\u03c1\u03ce\u03c4\u03bf",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0395\u03b9\u03ba\u03cc\u03bd\u03b1\u03c2",
- "TabOther": "\u0386\u03bb\u03bb\u03b1",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u0397\u03b8\u03bf\u03c0\u03bf\u03b9\u03bf\u03af \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b5\u03c1\u03b3\u03b5\u03af\u03bf",
"HeaderAdditionalParts": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1 \u039c\u03ad\u03c1\u03b7",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "\u0395\u03ba\u03c4\u03cc\u03c2",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "\u039d\u03ad\u03bf",
+ "TabMetadata": "Metadata",
+ "TabImages": "\u0395\u03b9\u03ba\u03cc\u03bd\u03b5\u03c2",
+ "TabCollectionTitles": "\u03a4\u03af\u03c4\u03bb\u03bf\u03b9",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u0391\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae\u03c2",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03a7\u03c1\u03b7\u03c3\u03c4\u03ce\u03bd:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "\u03a7\u03c9\u03c1\u03af\u03c2 \u03a5\u03c0\u03cc\u03c4\u03b9\u03c4\u03bb\u03bf\u03c5\u03c2",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "\u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1:",
+ "LabelStatus": "\u039a\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7:",
+ "LabelVersion": "\u0388\u03ba\u03b4\u03bf\u03c3\u03b7:",
+ "LabelLastResult": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03bf \u03b1\u03c0\u03bf\u03c4\u03ad\u03bb\u03b5\u03c3\u03bc\u03b1:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "\u03a0\u03ac\u03bd\u03c4\u03b1 \u03b1\u03bd\u03b1\u03c0\u03b1\u03c1\u03b1\u03b3\u03c9\u03b3\u03ae \u03a5\u03c0\u03bf\u03c4\u03af\u03c4\u03bb\u03c9\u03bd",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "\u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ad\u03c2",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "\u0386\u03bb\u03bb\u03b1",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c3\u03b5 \u03c3\u03c4\u03b7 \u03a3\u03c5\u03bb\u03bb\u03bf\u03b3\u03ae",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "\u0389\u03c7\u03bf\u03c2",
+ "HeaderVideo": "\u0392\u03af\u03bd\u03c4\u03b5\u03bf",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "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",
+ "LabelArtists": "\u039a\u03b1\u03bb\u03bb\u03b9\u03c4\u03ad\u03c7\u03bd\u03b5\u03c2",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a4\u03bf\u03c0\u03b9\u03ba\u03bf\u03cd \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "\u03a0\u03c1\u03cc\u03c3\u03ba\u03bb\u03b7\u03c3\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "\u03a4\u03b7\u03bb\u03b5\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c1\u03b9\u03bf",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "\u03a0\u03b7\u03b3\u03ad\u03c2 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "\u03a4\u03cd\u03c0\u03bf\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1",
+ "TabAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7",
+ "HeaderDeviceAccess": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03a3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2",
+ "OptionEnableAccessFromAllDevices": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03b1\u03c0\u03cc \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ad\u03c2",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "\u039f\u03b4\u03b7\u03b3\u03cc\u03c2 \u03b3\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7\u03c2 \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7\u03c2",
+ "HeaderSyncJobInfo": "\u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b1 \u03a3\u03c5\u03b3\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03bf\u03cd",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b1\u03c0\u03bf\u03b4\u03b5\u03c7\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1\u03c2 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c7\u03c9\u03c1\u03ae\u03c3\u03b5\u03c4\u03b5.",
+ "OptionIAcceptTermsOfService": "\u0391\u03c0\u03cc\u03b4\u03b5\u03c7\u03bf\u03bc\u03b1\u03b9 \u03c4\u03bf\u03c5\u03c2 \u038c\u03c1\u03bf\u03c5\u03c2 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2",
+ "ButtonPrivacyPolicy": "\u03a0\u03c1\u03bf\u03c3\u03c4\u03b1\u03c3\u03af\u03b1 \u0394\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd",
+ "ButtonTermsOfService": "\u038c\u03c1\u03bf\u03b9 \u03a7\u03c1\u03ae\u03c3\u03b7\u03c2",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "\u03a4\u03b7\u03bb\u03b5\u03cc\u03c1\u03b1\u03c3\u03b7",
+ "OptionDetectArchiveFilesAsMedia": "\u0391\u03bd\u03b1\u03b3\u03bd\u03ce\u03c1\u03b9\u03c3\u03b5 \u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c9\u03c2 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03b1.",
+ "OptionDetectArchiveFilesAsMediaHelp": "\u0391\u03c1\u03c7\u03b5\u03af\u03b1 \u03bc\u03b5 .rar \u03ba\u03b1\u03b9 .zip \u03ba\u03b1\u03c4\u03b1\u03bb\u03ae\u03be\u03b5\u03b9\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b3\u03bd\u03c9\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03bb\u03c5\u03bc\u03ad\u03c3\u03c9\u03bd.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b5\u03c2 \u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03b9\u03c2",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Ene",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "\u0394\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae",
+ "TitleNotifications": "\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2",
+ "ButtonDonateWithPayPal": "\u0394\u03c9\u03c1\u03b5\u03ac \u03bc\u03ad\u03c3\u03c9 Paypal",
+ "TitleScheduledTasks": "\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0395\u03c1\u03b3\u03b1\u03c3\u03af\u03b5\u03c2",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "\u039f\u03c1\u03b3\u03ac\u03bd\u03c9\u03c3\u03b7",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "\u03a0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2",
+ "LabelSyncTempPath": "\u03a6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03a0\u03c1\u03bf\u03c3\u03c9\u03c1\u03b9\u03bd\u03ce\u03bd \u0391\u03c1\u03c7\u03b5\u03af\u03c9\u03bd",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "\u0391\u03c0\u03bf\u03bb\u03b1\u03cd\u03c3\u03c4\u03b5 14 \u039c\u03ad\u03c1\u03b5\u03c2 \u0394\u03bf\u03ba\u03b9\u03bc\u03b1\u03c3\u03c4\u03b9\u03ba\u03ae\u03c2 \u03a0\u03b5\u03c1\u03b9\u03cc\u03b4\u03bf\u03c5",
+ "CategorySync": "\u03a3\u03c5\u03c7\u03c1\u03bf\u03bd\u03b9\u03c3\u03bc\u03cc\u03c2",
+ "RegisterWithPayPal": "\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b5 Paypal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "\u0388\u03be\u03bf\u03b4\u03bf\u03c2",
+ "HeaderGrownupsOnly": "\u0395\u03bd\u03ae\u03bb\u03b9\u03ba\u03bf\u03b9 \u03bc\u03cc\u03bd\u03bf!",
+ "DividerOr": "--\u03ae--",
+ "HeaderToAccessPleaseEnterEasyPinCode": "\u0393\u03b9\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7, \u03c0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b4\u03ce\u03c3\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03c9\u03b4\u03b9\u03ba\u03cc \u03c3\u03b1\u03c2",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "\u039f\u03b9 \u03b5\u03bd\u03ae\u03bb\u03b9\u03ba\u03bf\u03b9 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03c4\u03b5!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "\u038c\u03c1\u03b9\u03bf \u03a7\u03c1\u03cc\u03bd\u03bf\u03c5 (\u038f\u03c1\u03b5\u03c2)",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "\u0395\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
+ "HeaderAvailableServices": "\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b5\u03c2 \u03a5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b5\u03c2",
+ "MessageNoServicesInstalled": "\u039a\u03b1\u03bc\u03af\u03b1 \u03c5\u03c0\u03b7\u03c1\u03b5\u03c3\u03af\u03b1 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b7.",
+ "TitlePlugins": "\u03a0\u03c1\u03cc\u03c3\u03b8\u03b5\u03c4\u03b1",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03a7\u03c1\u03ae\u03c3\u03c4\u03b7",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "\u039b\u03af\u03c3\u03c4\u03b1",
+ "LabelConfigureServer": "\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 Emby",
+ "WelcomeToProject": "\u039a\u03b1\u03bb\u03c9\u03c2 \u03ae\u03c1\u03b8\u03b1\u03c4\u03b5 \u03c3\u03c4\u03bf Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "\u0395\u03c0\u03b9\u03c3\u03ba\u03ad\u03c8\u03bf\u03c5 \u03c4\u03b7 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u03c4\u03bf\u03c5 Emby",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/en-GB.json b/dashboard-ui/strings/html/en-GB.json
index 7cba05846c..4bff865540 100644
--- a/dashboard-ui/strings/html/en-GB.json
+++ b/dashboard-ui/strings/html/en-GB.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Exit",
"LabelVisitCommunity": "Visit Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Browse Library",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "Restart Server",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Previous",
"LabelFinish": "Finish",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Next",
"LabelYoureDone": "You're Done!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "Tell us about yourself",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Your first name:",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organise",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Cancel",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "Country:",
"LabelLanguage": "Language:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferred metadata language:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferences",
"TabPassword": "Password",
"TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
"TabImage": "Image",
"TabProfile": "Profile",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Audio language preference:",
"LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiles",
"TabSecurity": "Security",
"ButtonAddUser": "Add User",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Save",
"ButtonResetPassword": "Reset Password",
"LabelNewPassword": "New password:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "Name",
- "OptionFolderSort": "Folders",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
- "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
- "HeaderCredits": "Credits",
"PleaseSupportOtherProduces": "Please support other free products we utilise:",
"VersionNumber": "Version {0}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favourites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organisation",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favourites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favourites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favourite Series",
- "ViewTypeTvFavoriteEpisodes": "Favourite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favourites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favourites",
- "ViewTypeMusicFavoriteAlbums": "Favourite Albums",
- "ViewTypeMusicFavoriteArtists": "Favourite Artists",
- "ViewTypeMusicFavoriteSongs": "Favourite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favourites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favourites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favourite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favourite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favourites",
+ "ViewTypeMusicFavoriteAlbums": "Favourite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favourite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favourite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organise",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/en-US.json b/dashboard-ui/strings/html/en-US.json
index c7177a2b93..83d2819293 100644
--- a/dashboard-ui/strings/html/en-US.json
+++ b/dashboard-ui/strings/html/en-US.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Exit",
"LabelVisitCommunity": "Visit Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Browse Library",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "Restart Server",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Previous",
"LabelFinish": "Finish",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Next",
"LabelYoureDone": "You're Done!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "Tell us about yourself",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Your first name:",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Cancel",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "Country:",
"LabelLanguage": "Language:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferred metadata language:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferences",
"TabPassword": "Password",
"TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
"TabImage": "Image",
"TabProfile": "Profile",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Audio language preference:",
"LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiles",
"TabSecurity": "Security",
"ButtonAddUser": "Add User",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Save",
"ButtonResetPassword": "Reset Password",
"LabelNewPassword": "New password:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "Name",
- "OptionFolderSort": "Folders",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/es-AR.json b/dashboard-ui/strings/html/es-AR.json
index 12cb52d929..533c42d0de 100644
--- a/dashboard-ui/strings/html/es-AR.json
+++ b/dashboard-ui/strings/html/es-AR.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Salir",
"LabelVisitCommunity": "Visit Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Est\u00e1ndar",
- "LabelApiDocumentation": "Documentaci\u00f3n API",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Browse Library",
- "LabelConfigureServer": "Configurar Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "Reiniciar el servidor",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Previous",
"LabelFinish": "Finish",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Next",
"LabelYoureDone": "Ha terminado!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Bienvenidos a Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "Tell us about yourself",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Your first name:",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "T\u00e9rminos de servicios de Emby",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organizar",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Agregar Usuario",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Cancel",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "Country:",
"LabelLanguage": "Language:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferred metadata language:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferences",
"TabPassword": "Password",
"TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
"TabImage": "Image",
"TabProfile": "Profile",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Mostar cap\u00edtulos no disponibles en temporadas",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Audio language preference:",
"LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiles",
"TabSecurity": "Security",
"ButtonAddUser": "Add User",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Save",
"ButtonResetPassword": "Reset Password",
"LabelNewPassword": "New password:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "Name",
- "OptionFolderSort": "Folders",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos cap\u00edtulos",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Documentaci\u00f3n API",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "T\u00e9rminos de servicios de Emby",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organizar",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Agregar Usuario",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configurar Emby",
+ "WelcomeToProject": "Bienvenidos a Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/es-MX.json b/dashboard-ui/strings/html/es-MX.json
index 057d424c12..c5f5d8d389 100644
--- a/dashboard-ui/strings/html/es-MX.json
+++ b/dashboard-ui/strings/html/es-MX.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Salir",
"LabelVisitCommunity": "Visitar la Comunidad",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Est\u00e1ndar",
- "LabelApiDocumentation": "Documentaci\u00f3n del API",
- "LabelDeveloperResources": "Recursos para Desarrolladores",
"LabelBrowseLibrary": "Explorar Biblioteca",
- "LabelConfigureServer": "Configurar Emby",
"LabelOpenLibraryViewer": "Abrir el Visor de la Biblioteca",
"LabelRestartServer": "Reiniciar el Servidor",
"LabelShowLogWindow": "Mostrar Ventana de Bit\u00e1cora",
"LabelPrevious": "Anterior",
"LabelFinish": "Terminar",
- "FolderTypeMixed": "Contenido mezclado",
"LabelNext": "Siguiente",
"LabelYoureDone": "Ha Terminado!",
- "ButtonAddToCollection": "Agregar a Colecci\u00f3n",
- "ButtonMoreItems": "Mas",
- "WelcomeToProject": "Bienvenido a Emby!",
+ "OptionRelease": "Versi\u00f3n Oficial",
+ "OptionBeta": "Beta",
+ "OptionDev": "Desarrollo (Inestable)",
"ThisWizardWillGuideYou": "Este asistente le guiar\u00e1 a trav\u00e9s del proceso de instalaci\u00f3n. Para comenzar, por favor seleccione su lenguaje preferido.",
"TellUsAboutYourself": "D\u00edganos sobre usted",
- "ButtonQuickStartGuide": "Gu\u00eda de inicio r\u00e1pido",
"LabelYourFirstName": "Su nombre:",
"MoreUsersCanBeAddedLater": "Se pueden agregar m\u00e1s usuarios posteriormente en el Panel de Control.",
"UserProfilesIntro": "Emby incluye soporte integrado para perfiles de usuario, habilitando a cada usuario para tener sus propias configuraciones de visualizaci\u00f3n, reproducci\u00f3n y controles parentales.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extraer las im\u00e1genes de los cap\u00edtulos permitir\u00e1 a sus clientes mostrar gr\u00e1ficamente los men\u00fas de selecci\u00f3n de escenas. El proceso puede ser lento, hacer uso intensivo del cpu y requerir el uso de varios gigabytes de espacio. Se ejecuta como una tarea nocturna programada, aunque puede configurarse en el \u00e1rea de tareas programadas. No se recomienda ejecutarlo durante un horario de uso intensivo.",
"LabelEnableAutomaticPortMapping": "Habilitar mapeo autom\u00e1tico de puertos",
"LabelEnableAutomaticPortMappingHelp": "UPnP permite la configuraci\u00f3n de ruteador de manera autom\u00e1tica, para acceso remoto de manera f\u00e1cil. Eso puede no funcionar con algunos modelos de ruteadores.",
- "HeaderTermsOfService": "T\u00e9rminos de Servicio de Emby",
- "MessagePleaseAcceptTermsOfService": "Por favor acepte los t\u00e9rminos del servicio y la pol\u00edtica de privacidad antes de continuar.",
- "OptionIAcceptTermsOfService": "Acepto los t\u00e9rminos del servicio.",
- "ButtonPrivacyPolicy": "Pol\u00edtica de privacidad",
- "ButtonTermsOfService": "T\u00e9rminos del Servicio",
- "HeaderDeveloperOptions": "Opciones de Desarrollador",
- "OptionEnableWebClientResponseCache": "Habilitar la cache de respuestas del cliente web",
- "OptionDisableForDevelopmentHelp": "Configuralos como sean necesarios para prop\u00f3sitos de desarrollo en el cliente web.",
- "OptionEnableWebClientResourceMinification": "Habilitar minificacion de recursos del cliente web",
- "LabelDashboardSourcePath": "Ruta de origen del cliente web:",
- "LabelDashboardSourcePathHelp": "Si esta ejecutando el servidor desde la fuente, especifique la ruta de acceso a la carpeta dashboard-ui. Todos los archivos de cliente web ser\u00e1n atendidos desde esta ruta.",
- "ButtonConvertMedia": "Convertir Medios",
- "ButtonOrganize": "Organizar",
- "LinkedToEmbyConnect": "Enlazado a Emby Connect",
- "HeaderSupporterBenefits": "Beneficios del Aficionado",
- "HeaderAddUser": "Agregar Usuario",
- "LabelAddConnectSupporterHelp": "Para agregar un usuario que no esta listado, necesita primero enlazar su cuenta a Emby Connect desde su pagina de perfil de usuario.",
- "LabelPinCode": "C\u00f3digo pin:",
- "OptionHideWatchedContentFromLatestMedia": "Ocultar contenido ya visto de Agregadas Recientemente",
- "HeaderSync": "Sinc",
"ButtonOk": "Ok",
"ButtonCancel": "Cancelar",
- "ButtonExit": "Salir",
- "ButtonNew": "Nuevo",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Rutas",
- "CategorySync": "Sinc.",
- "TabPlaylist": "Lista de Reproducci\u00f3n",
- "HeaderEasyPinCode": "C\u00f3digo Pin Sencillo",
- "HeaderGrownupsOnly": "\u00a1Solo Adultos!",
- "DividerOr": "--o--",
- "HeaderInstalledServices": "Servicios Instalados",
- "HeaderAvailableServices": "Servicios Disponibles",
- "MessageNoServicesInstalled": "No hay servicios instalados en este momento.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Para acceder, por favor introduzca su c\u00f3digo pin sencillo",
- "KidsModeAdultInstruction": "Haga clic en el icono de candado en la esquina inferior derecha para configurar o abandonar el modo para ni\u00f1os.",
- "ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
- "HeaderAdultsReadHere": "\u00a1Adultos Leer Esto!",
- "RegisterWithPayPal": "Registrar con PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sinc requiere de una Membres\u00eda de Aficionado activa.",
- "HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas",
- "LabelSyncTempPath": "Trayectoria de archivos temporales:",
- "LabelSyncTempPathHelp": "Especifique una carpeta de trabajo personalizada para sinc. Los medios convertidos creados durante el proceso de sinc ser\u00e1n almacenados en este lugar.",
- "LabelCustomCertificatePath": "Trayectoria del certificado personalizado:",
- "LabelCustomCertificatePathHelp": "Proporcione su archivo de certificado .pfx personalizado. Si se omite, el servidor crear\u00e1 un certificado auto firmado.",
- "TitleNotifications": "Notificaciones",
- "ButtonDonateWithPayPal": "Donar con PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detectar archivos comprimidos como medios",
- "OptionDetectArchiveFilesAsMediaHelp": "Al habilitarlo, los archivos con extensiones .rar y .zip ser\u00e1n detectados como archivos de medios.",
- "LabelEnterConnectUserName": "Nombre de usuario o correo:",
- "LabelEnterConnectUserNameHelp": "Este es su nombre de usuario de su cuenta Emby en linea o su correo electronico.",
- "LabelEnableEnhancedMovies": "Habilitar visualizaci\u00f3n mejorada de pel\u00edculas",
- "LabelEnableEnhancedMoviesHelp": "Cuando se activa, la pel\u00edculas ser\u00e1n mostradas como carpetas para incluir tr\u00e1ilers, extras, elenco y equipo, y otros contenidos relacionados.",
- "HeaderSyncJobInfo": "Trabajo de Sinc",
- "OptionReleaseDate": "Fecha de Liberaci\u00f3n",
- "ButtonPlayTrailer": "Tr\u00e1iler",
- "LabelFailed": "Fallido",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Cambiar a pantalla completa",
- "ButtonAudioTracks": "Pistas de audio",
- "ButtonPreviousTrack": "Pista anterior",
- "ButtonNextTrack": "Pista siguiente",
- "HeaderEpisodes": "Episodios:",
- "FolderTypeMovies": "Pel\u00edculas",
- "FolderTypeMusic": "M\u00fasica",
- "FolderTypeAdultVideos": "Videos para adultos",
- "FolderTypePhotos": "Fotos",
- "FolderTypeMusicVideos": "Videos musicales",
- "FolderTypeHomeVideos": "Videos caseros",
- "FolderTypeGames": "Juegos",
- "FolderTypeBooks": "Libros",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Heredar",
- "LabelContentType": "Tipo de Contenido:",
- "TitleScheduledTasks": "Tareas Programadas",
"HeaderSetupLibrary": "Configurar su biblioteca de medios",
"ButtonAddMediaFolder": "Agregar carpeta de medios",
"LabelFolderType": "Tipo de carpeta:",
"ReferToMediaLibraryWiki": "Consultar la wiki de la biblioteca de medios.",
"LabelCountry": "Pa\u00eds:",
"LabelLanguage": "Idioma:",
- "LabelTimeLimitHours": "L\u00edmite de Tiempo (horas):",
- "ButtonJoinTheDevelopmentTeam": "Unirse al Equipo de Desarrollo.",
"HeaderPreferredMetadataLanguage": "Idioma preferido para metadatos:",
"LabelSaveLocalMetadata": "Guardar im\u00e1genes y metadatos en las carpetas de medios",
"LabelSaveLocalMetadataHelp": "Guardar im\u00e1genes y metadatos directamente en las carpetas de medios los colocar\u00e1 en un lugar donde se pueden editar f\u00e1cilmente.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferencias",
"TabPassword": "Contrase\u00f1a",
"TabLibraryAccess": "Acceso a biblioteca",
- "TabAccess": "Acceso",
"TabImage": "Imagen",
"TabProfile": "Perf\u00edl",
- "TabMetadata": "Metadatos",
- "TabImages": "Im\u00e1genes",
- "TabNotifications": "Notificaciones",
- "TabCollectionTitles": "T\u00edtulos",
- "HeaderDeviceAccess": "Acceso a Dispositivos",
- "OptionEnableAccessFromAllDevices": "Habilitar acceso desde todos los dispositivos",
- "OptionEnableAccessToAllChannels": "Habilitar acceso a todos los canales",
- "OptionEnableAccessToAllLibraries": "Habilitar el acceso a todas las bibliotecas",
- "DeviceAccessHelp": "Esto solo aplica a dispositivos que pueden ser identificados de manera individual y no evitar\u00e1 acceso al navegador. Al filtrar el acceso de usuarios a dispositivos se impedir\u00e1 que utilicen nuevos dispositivos hasta que hayan sido aprobados aqu\u00ed.",
"LabelDisplayMissingEpisodesWithinSeasons": "Mostar episodios no disponibles en las temporadas",
"LabelUnairedMissingEpisodesWithinSeasons": "Mostrar episodios a\u00fan no emitidos en las temporadas",
"HeaderVideoPlaybackSettings": "Configuraci\u00f3n de Reproducci\u00f3n de Video",
- "HeaderPlaybackSettings": "Configuraci\u00f3n de Reproducci\u00f3n",
"LabelAudioLanguagePreference": "Preferencia de idioma de audio:",
"LabelSubtitleLanguagePreference": "Preferencia de idioma de subt\u00edtulos:",
- "OptionDefaultSubtitles": "Por Defecto",
- "OptionOnlyForcedSubtitles": "\u00danicamente subt\u00edtulos forzados",
- "OptionAlwaysPlaySubtitles": "Siempre mostrar subt\u00edtulos",
- "OptionNoSubtitles": "Sin Subtitulos",
- "OptionDefaultSubtitlesHelp": "Los subt\u00edtulos que coincidan con el lenguaje preferido ser\u00e1n cargados cuando el audio se encuentre en un lenguaje extranjero.",
- "OptionOnlyForcedSubtitlesHelp": "Se cargar\u00e1n \u00fanicamente subt\u00edtulos marcados como forzados.",
- "OptionAlwaysPlaySubtitlesHelp": "Los subt\u00edtulos que coincidan con el lenguaje preferido ser\u00e1n cargados independientemente del lenguaje del audio.",
- "OptionNoSubtitlesHelp": "Los subt\u00edtulos no ser\u00e1n cargados por defecto.",
"TabProfiles": "Perfiles",
"TabSecurity": "Seguridad",
"ButtonAddUser": "Agregar Usuario",
- "ButtonAddLocalUser": "Agregar Usuario Local",
- "ButtonInviteUser": "Invitar Usuario",
"ButtonSave": "Guardar",
"ButtonResetPassword": "Restablecer Contrase\u00f1a",
"LabelNewPassword": "Nueva contrase\u00f1a:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "M\u00e1xima clasificaci\u00f3n parental permitida:",
"MaxParentalRatingHelp": "El contenido con clasificaci\u00f3n parental superior se ocultar\u00e1 para este usuario.",
"LibraryAccessHelp": "Seleccione las carpetas de medios para compartir con este usuario. Los administradores podr\u00e1n editar todas las carpetas usando el administrador de metadatos.",
- "ChannelAccessHelp": "Seleccione los canales a compartir con este usuario. Los administradores podr\u00e1n editar todos los canales empleando el administrador de metadatos.",
"ButtonDeleteImage": "Eliminar Imagen",
- "LabelSelectUsers": "Seleccionar Usuarios:",
"ButtonUpload": "Subir",
"HeaderUploadNewImage": "Subir Nueva Imagen",
"LabelDropImageHere": "Depositar imagen aqu\u00ed",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nada aqu\u00ed.",
"MessagePleaseEnsureInternetMetadata": "Por favor aseg\u00farese que la descarga de metadatos de internet esta habilitada.",
"TabSuggested": "Sugerencias",
- "TabSuggestions": "Sugerencias",
"TabLatest": "Recientes",
"TabUpcoming": "Proximamente",
"TabShows": "Programas",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascendente",
"OptionDescending": "Descendente",
"OptionRuntime": "Duraci\u00f3n",
+ "OptionReleaseDate": "Fecha de Liberaci\u00f3n",
"OptionPlayCount": "Contador",
"OptionDatePlayed": "Fecha de Reproducci\u00f3n",
"OptionDateAdded": "Fecha de Adici\u00f3n",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nombre de la Pista",
"OptionCommunityRating": "Calificaci\u00f3n de la Comunidad",
"OptionNameSort": "Nombre",
- "OptionFolderSort": "Carpetas",
"OptionBudget": "Presupuesto",
"OptionRevenue": "Recaudaci\u00f3n",
"OptionPoster": "P\u00f3ster",
- "OptionPosterCard": "Tarjeta de P\u00f3ster",
- "OptionBackdrop": "Imagen de Fondo",
"OptionTimeline": "L\u00ednea de Tiempo",
- "OptionThumb": "Miniatura",
- "OptionThumbCard": "Tarjeta de Miniatura",
- "OptionBanner": "Cart\u00e9l",
"OptionCriticRating": "Calificaci\u00f3n de la Cr\u00edtica",
"OptionVideoBitrate": "Tasa de bits de Video",
"OptionResumable": "Reanudable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Tareas Programadas",
"TabMyPlugins": "Mis Complementos",
"TabCatalog": "Cat\u00e1logo",
- "TitlePlugins": "Complementos",
"HeaderAutomaticUpdates": "Actualizaciones Autom\u00e1ticas",
"HeaderNowPlaying": "Reproduciendo Ahora",
"HeaderLatestAlbums": "\u00c1lbumes Recientes",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Reproducido Recientemente",
"HeaderFrequentlyPlayed": "Reproducido Frecuentemente",
"DevBuildWarning": "Las compilaciones de Desarrollo son la punta de lanza. Se publican frecuentemente, estas compilaciones no se han probado. La aplicaci\u00f3n se puede bloquear y caracter\u00edsticas completas pueden no funcionar.",
+ "OptionThumb": "Miniatura",
+ "OptionBanner": "Cart\u00e9l",
"LabelVideoType": "Tipo de Video:",
"OptionBluray": "Bluray",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "Caracter\u00edsticas:",
- "LabelService": "Servicio:",
- "LabelStatus": "Estado:",
- "LabelVersion": "Versi\u00f3n:",
- "LabelLastResult": "\u00daltimo resultado:",
"OptionHasSubtitles": "Subt\u00edtulos",
"OptionHasTrailer": "Tr\u00e1iler",
"OptionHasThemeSong": "Canci\u00f3n del Tema",
@@ -268,8 +153,6 @@
"TabMovies": "Pel\u00edculas",
"TabStudios": "Estudios",
"TabTrailers": "Tr\u00e1ilers",
- "LabelArtists": "Artistas:",
- "LabelArtistsHelp": "Separar m\u00faltiples empleando:",
"HeaderLatestMovies": "Pel\u00edculas Recientes",
"HeaderLatestTrailers": "Tr\u00e1ilers Recientes",
"OptionHasSpecialFeatures": "Caracter\u00edsticas Especiales",
@@ -290,32 +173,24 @@
"OptionFriday": "Viernes",
"OptionSaturday": "S\u00e1bado",
"HeaderManagement": "Administraci\u00f3n",
- "LabelManagement": "Administraci\u00f3n:",
"OptionMissingImdbId": "Falta Id de IMDb",
"OptionMissingTvdbId": "Falta Id de TheTVDB",
"OptionMissingOverview": "Falta Sinopsis",
"OptionFileMetadataYearMismatch": "No coincide el A\u00f1o del Archivo con los Metadatos",
"TabGeneral": "General",
"TitleSupport": "Soporte",
- "LabelSeasonNumber": "Temporada numero",
"TabLog": "Bit\u00e1cora",
- "LabelEpisodeNumber": "Episodio numero",
"TabAbout": "Acerca de",
"TabSupporterKey": "Clave de Aficionado",
"TabBecomeSupporter": "Convertirse en Aficionado",
- "ProjectHasCommunity": "Emby cuenta con una pr\u00f3spera comunidad de usuarios y colaboradores.",
"CheckoutKnowledgeBase": "Eche un vistazo a nuestra base de conocimiento para ayudarle a sacar el m\u00e1ximo provecho a Emby",
"SearchKnowledgeBase": "Buscar en la Base de Conocimiento",
"VisitTheCommunity": "Visitar la Comunidad",
- "VisitProjectWebsite": "Visitar el Sitio Web de Emby",
- "VisitProjectWebsiteLong": "Visite el sitio Web para conocer las ultimas noticias y mantenerse al d\u00eda con el blog de desarrolladores.",
"OptionHideUser": "Ocultar este usuario en las pantallas de inicio de sesi\u00f3n",
- "OptionHideUserFromLoginHelp": "\u00datil para cuentas privadas o de administrador ocultas. El usuario tendr\u00e1 que iniciar sesi\u00f3n manualmente introduciendo su nombre de usuario y contrase\u00f1a.",
"OptionDisableUser": "Desactivar este usuario",
"OptionDisableUserHelp": "Si est\u00e1 desactivado, el servidor no aceptar\u00e1 conexiones de este usuario. Las conexiones existentes ser\u00e1n finalizadas abruptamente.",
"HeaderAdvancedControl": "Control Avanzado",
"LabelName": "Nombre:",
- "ButtonHelp": "Ayuda",
"OptionAllowUserToManageServer": "Permitir a este usuario administrar el servidor",
"HeaderFeatureAccess": "Permisos de acceso",
"OptionAllowMediaPlayback": "Permitir reproducci\u00f3n de medios",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Permitir eliminaci\u00f3n de medios",
"OptionAllowManageLiveTv": "Permitir gesti\u00f3n de grabaci\u00f3n de TV en Vivo",
"OptionAllowRemoteControlOthers": "Permitir control remoto de otros usuarios",
- "OptionAllowRemoteSharedDevices": "Permitir control remoto de dispositivos compartidos",
- "OptionAllowRemoteSharedDevicesHelp": "Los dispositivos dnla son considerados como compartidos hasta que alg\u00fan usuario comienza a controlarlo.",
- "OptionAllowLinkSharing": "Permitir compartir medios en redes sociales.",
- "OptionAllowLinkSharingHelp": "Solo son compartidas paginas web que contengan informaci\u00f3n sobre los medios. Los archivos de medios nunca son compartidos p\u00fablicamente. Son compartidos por un tiempo limitado y expiraran basados en las configuraciones para compartir de su servidor.",
- "HeaderSharing": "Compartido",
- "HeaderRemoteControl": "Control Remoto",
"OptionMissingTmdbId": "Falta Id de Tmdb",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Seleccionar",
"ButtonGroupVersions": "Agrupar Versiones",
"PismoMessage": "Utilizando Pismo File Mount a trav\u00e9s de una licencia donada.",
- "TangibleSoftwareMessage": "Utilizando convertidores Java\/C# de Tangible Solutions por medio de una licencia donada.",
- "HeaderCredits": "Cr\u00e9ditos",
"PleaseSupportOtherProduces": "Por favor apoye otros productos libres que utilizamos:",
"VersionNumber": "Versi\u00f3n {0}",
"TabPaths": "Rutas",
"TabServer": "Servidor",
"TabTranscoding": "Transcodificaci\u00f3n",
"TitleAdvanced": "Avanzado",
- "OptionRelease": "Versi\u00f3n Oficial",
- "OptionBeta": "Beta",
- "OptionDev": "Desarrollo (Inestable)",
"LabelAllowServerAutoRestart": "Permite al servidor reiniciar autom\u00e1ticamente para aplicar actualizaciones",
"LabelAllowServerAutoRestartHelp": "El servidor reiniciar\u00e1 \u00fanicamente durante periodos ociosos, cuando no haya usuarios activos.",
"LabelEnableDebugLogging": "Habilitar bit\u00e1coras de depuraci\u00f3n",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Especificar rutas personalizadas cuando se desee. Deje los campos vac\u00edos para usar los valores predeterminados.",
"LabelCachePath": "Ruta para el Cach\u00e9:",
"LabelCachePathHelp": "Especifique una ubicaci\u00f3n personalizada para los archivos de cach\u00e9 del servidor, tales como im\u00e1genes. Dejar en blanco para usar la configuraci\u00f3n por defecto.",
- "LabelRecordingPath": "Ruta para grabaciones:",
- "LabelRecordingPathHelp": "Especifique una ubicaci\u00f3n personalizada para almacenar las grabaciones. Dejar en blanco para usar la configuraci\u00f3n por defecto.",
"LabelImagesByNamePath": "Ruta para Im\u00e1genes por nombre:",
"LabelImagesByNamePathHelp": "Especifique una ubicaci\u00f3n personalizada para im\u00e1genes descargadas de actores, artistas, g\u00e9neros y estudios.",
"LabelMetadataPath": "Ruta para metadatos:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodios",
"OptionOtherVideos": "Otros Videos",
"TitleMetadata": "Metadatos",
- "LabelAutomaticUpdates": "Habilitar actualizaciones autom\u00e1ticas",
"LabelAutomaticUpdatesTmdb": "Habilitar actualizaciones autom\u00e1ticas desde TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Habilitar actualizaciones autom\u00e1ticas desde TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a fanart.tv. Las Im\u00e1genes existentes no ser\u00e1n reemplazadas. Esto ocasionar\u00e1 que la exploraci\u00f3n de la biblioteca tome m\u00e1s tiempo y resultar\u00e1 en mayor actividad del disco.",
"LabelAutomaticUpdatesTmdbHelp": "Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a TheMovieDB.org. Las im\u00e1genes existentes no ser\u00e1n reemplazadas. Esto ocasionar\u00e1 que la exploraci\u00f3n de la biblioteca tome m\u00e1s tiempo y resultar\u00e1 en mayor actividad del disco.",
"LabelAutomaticUpdatesTvdbHelp": "Al habilitarlo, se descargar\u00e1n autom\u00e1ticamente nuevas im\u00e1genes conforme son a\u00f1adidas a TheTVDB.com. Las im\u00e1genes existentes no ser\u00e1n reemplazadas. Esto causar\u00e1 que la exploraci\u00f3n de la biblioteca tome m\u00e1s tiempo y resultar\u00e1 en mayor actividad del disco.",
- "LabelFanartApiKey": "Clave api personal:",
- "LabelFanartApiKeyHelp": "Solicitar fanart sin una clave API personal muestra los resultados que fueron aprobados hace 7 d\u00edas. Con una clave API personal se reduce a 48 horas y si eres miembro VIP de fanart ser\u00e1 alrededor de 10 minutos.",
"ExtractChapterImagesHelp": "Extraer las im\u00e1genes de los cap\u00edtulos permitir\u00e1 a sus clientes mostrar gr\u00e1ficamente los men\u00fas de selecci\u00f3n de escenas. El proceso puede ser lento, hacer uso intensivo del cpu y requerir el uso de varios gigabytes de espacio. Se ejecuta como una tarea nocturna programada, aunque puede configurarse en el \u00e1rea de tareas programadas. No se recomienda ejecutarlo durante un horario de uso intensivo.",
"LabelMetadataDownloadLanguage": "Lenguaje preferido para descargas:",
"ButtonAutoScroll": "Auto-desplazamiento",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Las contrase\u00f1as no se requieren cuando se inicia sesi\u00f3n desde localhost.",
"TabGuide": "Gu\u00eda",
"TabChannels": "Canales",
- "TabCollections": "Colecciones",
"HeaderChannels": "Canales",
"TabRecordings": "Grabaciones",
"TabScheduled": "Programados",
"TabSeries": "Series",
- "TabFavorites": "Favoritos",
- "TabMyLibrary": "Mi Biblioteca",
"ButtonCancelRecording": "Cancelar Grabaci\u00f3n",
"HeaderPrePostPadding": "Pre\/Post protecci\u00f3n",
"LabelPrePaddingMinutes": "Minutos de protecci\u00f3n previos:",
@@ -416,13 +272,10 @@
"TabStatus": "Estado",
"TabSettings": "Configuraci\u00f3n",
"ButtonRefreshGuideData": "Actualizar Datos de la Gu\u00eda",
- "ButtonRefresh": "Actualizar",
- "ButtonAdvancedRefresh": "Actualizaci\u00f3n Avanzada",
"OptionPriority": "Prioridad",
"OptionRecordOnAllChannels": "Grabar en todos los canales",
"OptionRecordAnytime": "Grabar en cualquier momento",
"OptionRecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos episodios",
- "HeaderRepeatingOptions": "Opciones de repetici\u00f3n",
"HeaderDays": "D\u00edas",
"HeaderActiveRecordings": "Grabaciones Activas",
"HeaderLatestRecordings": "Grabaciones Recientes",
@@ -431,17 +284,16 @@
"ButtonEdit": "Editar",
"ButtonRecord": "Grabar",
"ButtonDelete": "Eliminar",
- "ButtonRemove": "Eliminar",
"OptionRecordSeries": "Grabar Series",
"HeaderDetails": "Detalles",
+ "OptionFolderSort": "Carpetas",
+ "OptionBackdrop": "Imagen de Fondo",
"TitleLiveTV": "TV en Vivo",
"LabelNumberOfGuideDays": "N\u00famero de d\u00edas de datos de la programaci\u00f3n a descargar",
"LabelNumberOfGuideDaysHelp": "Descargar m\u00e1s d\u00edas de datos de programaci\u00f3n permite programar con mayor anticipaci\u00f3n y ver m\u00e1s listados, pero tomar\u00e1 m\u00e1s tiempo en descargar. Auto har\u00e1 la selecci\u00f3n basada en el n\u00famero de canales.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Servicios",
"LiveTvPluginRequired": "Se requiere de un complemento proveedor de servicios de TV en vivo para continuar.",
"LiveTvPluginRequiredHelp": "Por favor instale alguno de los complementos disponibles, como Next PVR o ServerWMC.",
- "LabelCustomizeOptionsPerMediaType": "Personalizar por tipo de medio:",
"OptionDownloadThumbImage": "Miniatura",
"OptionDownloadMenuImage": "Men\u00fa",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Principal",
"HeaderFetchImages": "Buscar im\u00e1genes:",
"HeaderImageSettings": "Configuraci\u00f3n de Im\u00e1genes",
- "TabOther": "Otros",
"LabelMaxBackdropsPerItem": "N\u00famero m\u00e1ximo de im\u00e1genes de fondo por \u00edtem:",
"LabelMaxScreenshotsPerItem": "N\u00famero m\u00e1ximo de capturas de pantalla por \u00edtem:",
"LabelMinBackdropDownloadWidth": "Anchura m\u00ednima de descarga de im\u00e1genes de fondo:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Reparto y Personal",
"HeaderAdditionalParts": "Partes Adicionales",
"ButtonSplitVersionsApart": "Separar Versiones",
+ "ButtonPlayTrailer": "Tr\u00e1iler",
"LabelMissing": "Falta",
"LabelOffline": "Desconectado",
"PathSubstitutionHelp": "Las rutas alternativas se utilizan para mapear una ruta en el servidor a la que los clientes puedan acceder. Al permitir a los clientes acceder directamente a los medios en el servidor podr\u00e1n reproducirlos directamente a trav\u00e9s de la red evitando el uso de recursos del servidor para transmitirlos y transcodificarlos.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "M\u00e1xima calidad",
"OptionEnableDebugTranscodingLogging": "Habilitar el registro de transcodificaci\u00f3n en la bit\u00e1cora",
"OptionEnableDebugTranscodingLoggingHelp": "Esto crear\u00e1 archivos de bit\u00e1cora muy grandes y solo se recomienda cuando se requiera solucionar problemas.",
+ "ButtonNew": "Nuevo",
+ "TabMetadata": "Metadatos",
+ "TabImages": "Im\u00e1genes",
+ "TabCollectionTitles": "T\u00edtulos",
+ "ButtonSearch": "B\u00fasqueda",
+ "ButtonRemove": "Eliminar",
"EditCollectionItemsHelp": "Agregar o quitar pel\u00edculas, series, discos, libros o juegos que usted desee agrupar dentro de esta colecci\u00f3n.",
"HeaderAddTitles": "Agregar T\u00edtulos",
"LabelEnableDlnaPlayTo": "Habilitar Reproducir En mediante DLNA",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Rutas del Sistema",
"LinkCommunity": "Comunidad",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Documentaci\u00f3n del API",
"LabelFriendlyServerName": "Nombre amigable del servidor:",
"LabelFriendlyServerNameHelp": "Este nombre ser\u00e1 usado para identificar este servidor. Si se deja en blanco, se usar\u00e1 el nombre de la computadora.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "La traducci\u00f3n de Emby es un proyecto en curso.",
"LabelReadHowYouCanContribute": "Inf\u00f3rmese de c\u00f3mo puede contribuir.",
"HeaderNewCollection": "Nueva Colecci\u00f3n",
- "ButtonSubmit": "Enviar",
"ButtonCreate": "Crear",
- "LabelCustomCss": "css personalizado:",
- "LabelCustomCssHelp": "Aplicar tu propia css personalizada a la interfaz web.",
- "LabelLocalHttpServerPortNumber": "N\u00famero de puerto http local:",
- "LabelLocalHttpServerPortNumberHelp": "El numero de puerto tcp con el que se deber\u00e1 vincular el servidor http de Emby.",
- "LabelPublicHttpPort": "N\u00famero de puerto http publico:",
- "LabelPublicHttpPortHelp": "El numero de puerto que debe ser mapeado a el puerto http local.",
- "LabelPublicHttpsPort": "N\u00famero de puerto https publico:",
- "LabelPublicHttpsPortHelp": "El n\u00famero de puerto p\u00fablico que deber\u00e1 ser mapeado al puerto local de https.",
- "LabelEnableHttps": "Reportar https como una direcci\u00f3n externa",
- "LabelEnableHttpsHelp": "Al habilitarse, el servidor reportara un URL https a los clientes como su direcci\u00f3n externa.",
- "LabelHttpsPort": "N\u00famero de puerto https local:",
- "LabelHttpsPortHelp": "El numero de puerto tcp con el que se deber\u00e1 vincular el servidor https de Emby.",
"LabelWebSocketPortNumber": "N\u00famero de puerto WebSocket:",
- "LabelEnableAutomaticPortMap": "Habilitar mapeo autom\u00e1tico de puertos",
- "LabelEnableAutomaticPortMapHelp": "Intentar mapear autom\u00e1ticamente el puerto p\u00fablico con el puerto local via UPnP. Esto podr\u00eda no funcionar con algunos modelos de ruteadores.",
"LabelExternalDDNS": "Direcci\u00f3n WAN externa:",
"LabelExternalDDNSHelp": "Si tiene un DNS din\u00e1mico introduzcalo aqu\u00ed. Las aplicaciones Emby lo usaran cuando se conecte remotamente. D\u00e9jelo en blanco para detectar autom\u00e1ticamente.",
"TabResume": "Continuar",
@@ -591,8 +433,12 @@
"HeaderProgram": "Programa",
"HeaderClients": "Clientes",
"LabelCompleted": "Completado",
+ "LabelFailed": "Fallido",
"LabelSkipped": "Omitido",
"HeaderEpisodeOrganization": "Organizaci\u00f3n de Episodios",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Temporada numero",
+ "LabelEpisodeNumber": "Episodio numero",
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
"HeaderSupportTheTeam": "Apoye al equipo de Emby",
@@ -627,16 +473,13 @@
"OptionMove": "Mover",
"LabelTransferMethodHelp": "Copiar o mover archivos desde la carpeta de inspecci\u00f3n",
"HeaderLatestNews": "Noticias Recientes",
- "HeaderHelpImproveProject": "Ayude a mejorar Emby",
"HeaderRunningTasks": "Tareas en Ejecuci\u00f3n",
"HeaderActiveDevices": "Dispositivos Activos",
"HeaderPendingInstallations": "Instalaciones Pendientes",
- "HeaderServerInformation": "Informaci\u00f3n del Servidor",
"ButtonRestartNow": "Reiniciar Ahora",
"ButtonRestart": "Reiniciar",
"ButtonShutdown": "Apagar",
"ButtonUpdateNow": "Actualizar Ahora",
- "TabHosting": "Hospedaje",
"PleaseUpdateManually": "Por favor apague el servidor y actualice manualmente.",
"NewServerVersionAvailable": "\u00a1Una nueva versi\u00f3n de Emby esta disponible!",
"ServerUpToDate": "El Servidor Emby esta actualizado",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determina la duraci\u00f3n en segundos del intervalo entre mensajes de vida.",
"LabelDefaultUser": "Usuario por defecto:",
"LabelDefaultUserHelp": "Determina que usuario de la biblioteca ser\u00e1 desplegado en los dispositivos conectados. Este puede ser reemplazado para cada dispositivo empleando perf\u00edles.",
+ "HeaderPlaybackSettings": "Configuraci\u00f3n de Reproducci\u00f3n",
"TitleDlna": "DLNA",
- "TitleChannels": "Canales",
"HeaderServerSettings": "Configuraci\u00f3n del Servidor",
"LabelWeatherDisplayLocation": "Ubicaci\u00f3n para pron\u00f3stico del tiempo:",
"LabelWeatherDisplayLocationHelp": "C\u00f3digo ZIP de US \/ Ciudad, Estado, Pa\u00eds \/ Ciudad, Pa\u00eds",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Cuando se encuentra desactivado los clientes podr\u00edan mostrar una pantalla de inicio de sesi\u00f3n con una selecci\u00f3n visual de los usuarios.",
"OptionOtherApps": "Otras applicaciones",
"OptionMobileApps": "Apps m\u00f3viles",
+ "TabNotifications": "Notificaciones",
"HeaderNotificationList": "Haga clic en una notificaci\u00f3n para configurar sus opciones de envio.",
+ "LabelNotificationEnabled": "Habilitar esta notificaci\u00f3n",
+ "NotificationOptionVideoPlayback": "Reproducci\u00f3n de video iniciada",
+ "NotificationOptionAudioPlayback": "Reproducci\u00f3n de audio iniciada",
+ "NotificationOptionGamePlayback": "Ejecuci\u00f3n de juego iniciada",
+ "NotificationOptionNewLibraryContent": "Nuevo contenido agregado",
+ "NotificationOptionServerRestartRequired": "Reinicio del servidor requerido",
+ "LabelMonitorUsers": "Monitorear actividad desde:",
+ "LabelSendNotificationToUsers": "Enviar la notificaci\u00f3n a:",
+ "LabelUseNotificationServices": "Utilizar los siguientes servicios:",
"NotificationOptionApplicationUpdateAvailable": "Actualizaci\u00f3n de aplicaci\u00f3n disponible",
"NotificationOptionApplicationUpdateInstalled": "Actualizaci\u00f3n de aplicaci\u00f3n instalada",
"NotificationOptionPluginUpdateInstalled": "Actualizaci\u00f3n de complemento instalada",
"NotificationOptionPluginInstalled": "Complemento instalado",
"NotificationOptionPluginUninstalled": "Complemento desinstalado",
- "NotificationOptionVideoPlayback": "Reproducci\u00f3n de video iniciada",
- "NotificationOptionAudioPlayback": "Reproducci\u00f3n de audio iniciada",
- "NotificationOptionGamePlayback": "Ejecuci\u00f3n de juego iniciada",
- "NotificationOptionVideoPlaybackStopped": "Reproducci\u00f3n de video detenida",
- "NotificationOptionAudioPlaybackStopped": "Reproducci\u00f3n de audio detenida",
- "NotificationOptionGamePlaybackStopped": "Ejecuci\u00f3n de juego detenida",
"NotificationOptionTaskFailed": "Falla de tarea programada",
"NotificationOptionInstallationFailed": "Falla de instalaci\u00f3n",
- "NotificationOptionNewLibraryContent": "Nuevo contenido agregado",
- "NotificationOptionNewLibraryContentMultiple": "Nuevo contenido agregado (varios)",
- "NotificationOptionCameraImageUploaded": "Imagen de la c\u00e1mara subida",
- "NotificationOptionUserLockedOut": "Usuario bloqueado",
- "HeaderSendNotificationHelp": "Las notificaciones son enviadas a su bandeja. Opciones adicionales pueden ser instaladas desde la pesta\u00f1a de Servicios.",
- "NotificationOptionServerRestartRequired": "Reinicio del servidor requerido",
- "LabelNotificationEnabled": "Habilitar esta notificaci\u00f3n",
- "LabelMonitorUsers": "Monitorear actividad desde:",
- "LabelSendNotificationToUsers": "Enviar la notificaci\u00f3n a:",
- "LabelUseNotificationServices": "Utilizar los siguientes servicios:",
"CategoryUser": "Usuario",
"CategorySystem": "Sistema",
- "CategoryApplication": "Aplicaci\u00f3n",
- "CategoryPlugin": "Complemento",
"LabelMessageTitle": "T\u00edtulo del Mensaje:",
"LabelAvailableTokens": "Detalles disponibles:",
"AdditionalNotificationServices": "Explore el cat\u00e1logo de complementos para instalar servicios de notificaci\u00f3n adicionales.",
+ "LabelSelectUsers": "Seleccionar Usuarios:",
"OptionAllUsers": "Todos los usuarios",
"OptionAdminUsers": "Administradores",
"OptionCustomUsers": "Personalizado",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Derecha",
"ButtonBack": "Atr\u00e1s",
"ButtonInfo": "Info",
- "ButtonOsd": "Visualizaci\u00f3n en pantalla",
"ButtonPageUp": "P\u00e1gina arriba",
"ButtonPageDown": "P\u00e1gina abajo",
"PageAbbreviation": "Pag.",
"ButtonHome": "Inicio",
- "ButtonSearch": "B\u00fasqueda",
"ButtonSettings": "Configuraci\u00f3n",
"ButtonTakeScreenshot": "Capturar Pantalla",
"ButtonLetterUp": "Siguiente letra",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Reproduci\u00e9ndo Ahora",
"TabNavigation": "Navegaci\u00f3n",
- "TabControls": "Controles",
+ "ButtonFullscreen": "Cambiar a pantalla completa",
"ButtonScenes": "Escenas",
"ButtonSubtitles": "Subt\u00edtulos",
+ "ButtonAudioTracks": "Pistas de audio",
+ "ButtonPreviousTrack": "Pista anterior",
+ "ButtonNextTrack": "Pista siguiente",
"ButtonStop": "Detener",
"ButtonPause": "Pausar",
- "ButtonNext": "Siguiente",
- "ButtonPrevious": "Previo",
"LabelGroupMoviesIntoCollections": "Agrupar pel\u00edculas en colecciones",
"LabelGroupMoviesIntoCollectionsHelp": "Cuando se despliegan listados de pel\u00edculas, las pel\u00edculas que pertenecen a una colecci\u00f3n ser\u00e1n desplegadas agrupadas en un solo \u00edtem.",
+ "CategoryApplication": "Aplicaci\u00f3n",
+ "CategoryPlugin": "Complemento",
"NotificationOptionPluginError": "Falla de complemento",
+ "TabControls": "Controles",
"ButtonVolumeUp": "Subir Volumen",
"ButtonVolumeDown": "Bajar Volumen",
"ButtonMute": "Mudo",
"HeaderLatestMedia": "Agregadas Recientemente",
+ "OptionNoSubtitles": "Sin Subtitulos",
"OptionSpecialFeatures": "Caracter\u00edsticas Especiales",
+ "ChannelAccessHelp": "Seleccione los canales a compartir con este usuario. Los administradores podr\u00e1n editar todos los canales empleando el administrador de metadatos.",
"HeaderCollections": "Colecciones",
"LabelProfileCodecsHelp": "Separados por comas. Puede dejarse vaci\u00f3 para aplicarlo a todos los codecs.",
"LabelProfileContainersHelp": "Separados por comas. Puede dejarse vaci\u00f3 para aplicarlo a todos los contenedores.",
"HeaderResponseProfile": "Perfil de Respuesta:",
"LabelType": "Tipo:",
- "LabelPersonRole": "Rol:",
- "LabelPersonRoleHelp": "El Rol generalmente solo aplica a actores.",
"LabelProfileContainer": "Contenedor:",
"LabelProfileVideoCodecs": "Codecs de Video:",
"LabelProfileAudioCodecs": "Codecs de Audio:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Se se habilita, todos los videos ser\u00e1n representados en DIDL como \"object.item.videoItem\" en lugar de un tipo m\u00e1s espec\u00edfico, como \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Tipos de Medios Soportados:",
"TabIdentification": "Identificaci\u00f3n",
- "HeaderIdentification": "Identificaci\u00f3n",
"TabDirectPlay": "Reproducci\u00f3n Directa",
"TabContainers": "Contenedores",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "Estos valores controlan como el Servidor Emby se presentara al dispositivo.",
"LabelMaxBitrate": "Tasa de bits m\u00e1xima:",
"LabelMaxBitrateHelp": "Especifique la tasa de bits m\u00e1xima para ambientes con un ancho de banda limitado, o si el dispositivo impone sus propios l\u00edmites.",
- "LabelMaxStreamingBitrate": "Tasa de bits m\u00e1xima para transmisi\u00f3n:",
- "LabelMaxStreamingBitrateHelp": "Especifique una tasa de bits m\u00e1xima al transferir en tiempo real.",
- "LabelMaxChromecastBitrate": "Tasa maxima de bits para El Chromecast:",
- "LabelMaxStaticBitrate": "Tasa m\u00e1xima de bits de sinc",
- "LabelMaxStaticBitrateHelp": "Especifique una tasa de bits cuando al sincronizar contenido en alta calidad.",
- "LabelMusicStaticBitrate": "Tasa de bits de sinc de m\u00fascia",
- "LabelMusicStaticBitrateHelp": "Especifique la tasa de bits m\u00e1xima al sincronizar m\u00fasica",
- "LabelMusicStreamingTranscodingBitrate": "Tasa de transcodificaci\u00f3n de m\u00fasica:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Especifique la tasa de bits m\u00e1xima al transferir musica en tiempo real",
"OptionIgnoreTranscodeByteRangeRequests": "Ignorar solicitudes de transcodificaci\u00f3n de rango de byte.",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Si se habilita, estas solicitudes seran honradas pero se ignorar\u00e1 el encabezado de rango de byte.",
"LabelFriendlyName": "Nombre amistoso:",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Esto es requerido para algunos dispositivos que no pueden hacer b\u00fasquedas por tiempo muy bien.",
"HeaderSubtitleDownloadingHelp": "Cuando Emby examina sus archivos de video puede buscar los subt\u00edtulos faltantes, y descargarlos usando un proveedor de subt\u00edtulos como OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Descargar subt\u00edtulos para:",
- "MessageNoChapterProviders": "Instale un complemento proveedor de cap\u00edtulos como ChapterDb para habilitar opciones adicionales de cap\u00edtulos.",
- "LabelSkipIfGraphicalSubsPresent": "Omitir si el video ya contiene subt\u00edtulos gr\u00e1ficos",
- "LabelSkipIfGraphicalSubsPresentHelp": "Manteniendo las versiones de texto de los subtitulos resultara una entrega mas eficiente de los mismos y disminuir\u00e1 las posibilidades de que un video sea transcodificado.",
"TabSubtitles": "Subt\u00edtulos",
- "TabChapters": "Cap\u00edtulos",
- "HeaderDownloadChaptersFor": "Descargar nombres de cap\u00edtulos para:",
"LabelOpenSubtitlesUsername": "Nombre de usuario de Open Subtitles:",
"LabelOpenSubtitlesPassword": "Contrase\u00f1a de Open Subtitles:",
- "HeaderChapterDownloadingHelp": "Cuando Emby examina sus archivos de video puede descargar nombres de cap\u00edtulo mas amigables desde internet usando complementos de cap\u00edtulos como ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Reproducir la pista de audio por defecto independientemente del lenguaje",
- "LabelSubtitlePlaybackMode": "Modo de subt\u00edtulo:",
"LabelDownloadLanguages": "Descargar lenguajes:",
"ButtonRegister": "Registrar",
+ "LabelSkipIfGraphicalSubsPresent": "Omitir si el video ya contiene subt\u00edtulos gr\u00e1ficos",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Manteniendo las versiones de texto de los subtitulos resultara una entrega mas eficiente de los mismos y disminuir\u00e1 las posibilidades de que un video sea transcodificado.",
"LabelSkipIfAudioTrackPresent": "Omitir si la pista de audio por defecto coincide con el lenguaje de descarga",
"LabelSkipIfAudioTrackPresentHelp": "Desactive esto para asegurar que todos los videos tengan subt\u00edtulos, independientemente del lenguaje del audio.",
+ "NotificationOptionNewLibraryContentMultiple": "Nuevo contenido agregado (varios)",
"HeaderSendMessage": "Enviar Mensaje",
"ButtonSend": "Enviar",
"LabelMessageText": "Texto del Mensaje:",
+ "LabelService": "Servicio:",
+ "LabelStatus": "Estado:",
+ "LabelVersion": "Versi\u00f3n:",
+ "LabelLastResult": "\u00daltimo resultado:",
+ "ButtonOsd": "Visualizaci\u00f3n en pantalla",
"MessageNoAvailablePlugins": "No hay complementos disponibles.",
"LabelDisplayPluginsFor": "Desplegar complementos para:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Nombre del episodio",
- "LabelSeriesNamePlain": "Nombre de la serie",
"ValueSeriesNamePeriod": "Nombre.serie",
"ValueSeriesNameUnderscore": "Nombre_serie",
"ValueEpisodeNamePeriod": "Nombre del episodio",
"ValueEpisodeNameUnderscore": "Nombre_episodio",
- "LabelSeasonNumberPlain": "N\u00famero de temporada",
- "LabelEpisodeNumberPlain": "N\u00famero de episodio",
- "LabelEndingEpisodeNumberPlain": "N\u00famero del episodio final",
"HeaderTypeText": "Introduzca Texto",
"LabelTypeText": "Texto",
+ "OptionDefaultSubtitles": "Por Defecto",
+ "OptionOnlyForcedSubtitles": "\u00danicamente subt\u00edtulos forzados",
+ "OptionAlwaysPlaySubtitles": "Siempre mostrar subt\u00edtulos",
+ "OptionDefaultSubtitlesHelp": "Los subt\u00edtulos que coincidan con el lenguaje preferido ser\u00e1n cargados cuando el audio se encuentre en un lenguaje extranjero.",
+ "OptionOnlyForcedSubtitlesHelp": "Se cargar\u00e1n \u00fanicamente subt\u00edtulos marcados como forzados.",
+ "OptionAlwaysPlaySubtitlesHelp": "Los subt\u00edtulos que coincidan con el lenguaje preferido ser\u00e1n cargados independientemente del lenguaje del audio.",
+ "OptionNoSubtitlesHelp": "Los subt\u00edtulos no ser\u00e1n cargados por defecto.",
+ "TangibleSoftwareMessage": "Utilizando convertidores Java\/C# de Tangible Solutions por medio de una licencia donada.",
+ "HeaderCredits": "Cr\u00e9ditos",
+ "TabCollections": "Colecciones",
+ "TabFavorites": "Favoritos",
+ "TabMyLibrary": "Mi Biblioteca",
+ "LabelCustomizeOptionsPerMediaType": "Personalizar por tipo de medio:",
+ "LabelPlayDefaultAudioTrack": "Reproducir la pista de audio por defecto independientemente del lenguaje",
+ "LabelSubtitlePlaybackMode": "Modo de subt\u00edtulo:",
+ "TabOther": "Otros",
+ "NotificationOptionVideoPlaybackStopped": "Reproducci\u00f3n de video detenida",
+ "NotificationOptionAudioPlaybackStopped": "Reproducci\u00f3n de audio detenida",
+ "NotificationOptionGamePlaybackStopped": "Ejecuci\u00f3n de juego detenida",
"HeaderSearchForSubtitles": "Buscar Subtitulos",
- "ButtonMore": "M\u00e1s",
"MessageNoSubtitleSearchResultsFound": "No se encontraron resultados en la b\u00fasqueda.",
"TabDisplay": "Pantalla",
"TabLanguages": "Idiomas",
- "TabAppSettings": "Configuracion del App",
"LabelEnableThemeSongs": "Habilitar canciones de tema",
"LabelEnableBackdrops": "Habilitar im\u00e1genes de fondo",
"LabelEnableThemeSongsHelp": "Al activarse, las canciones de tema ser\u00e1n reproducidas en segundo plano mientras se navega en la biblioteca.",
"LabelEnableBackdropsHelp": "Si est\u00e1 activado, las im\u00e1genes de fondo ser\u00e1n mostradas en el fondo de algunas paginas mientras se navega en la biblioteca.",
- "HeaderHomePage": "P\u00e1gina de Inicio",
- "HeaderSettingsForThisDevice": "Configuraci\u00f3n de Este Dispositivo",
"OptionAuto": "Autom\u00e1tico",
"OptionYes": "Si",
"OptionNo": "No",
- "HeaderOptions": "Opciones",
- "HeaderIdentificationResult": "Resultado de la Identificaci\u00f3n",
"LabelHomePageSection1": "Pagina de Inicio secci\u00f3n uno:",
"LabelHomePageSection2": "Pagina de Inicio secci\u00f3n dos:",
"LabelHomePageSection3": "Pagina de Inicio secci\u00f3n tres:",
- "LabelHomePageSection4": "Pagina de Inicio secci\u00f3n cuatro:",
- "OptionMyMediaButtons": "Mis medios (botones)",
- "OptionMyMedia": "Mis medios",
- "OptionMyMediaSmall": "Mis medios (peque\u00f1o)",
"OptionResumablemedia": "Continuar",
"OptionLatestMedia": "Agregadas recientemente",
- "OptionLatestChannelMedia": "\u00cdtems recientes de canales",
- "HeaderLatestChannelItems": "\u00cdtems Recientes de Canales",
"OptionNone": "Ninguno",
"HeaderLiveTv": "TV en Vivo",
"HeaderReports": "Reportes",
"HeaderMetadataManager": "Administrador de Metadatos",
- "HeaderSettings": "Configuraci\u00f3n",
"MessageLoadingChannels": "Cargando contenidos del canal...",
- "MessageLoadingContent": "Cargando contenido...",
"ButtonMarkRead": "Marcar como Le\u00eddo",
"OptionDefaultSort": "Por defecto",
"OptionCommunityMostWatchedSort": "M\u00e1s Visto",
"TabNextUp": "A Continuaci\u00f3n",
- "PlaceholderUsername": "Nombre de Usuario",
- "HeaderBecomeProjectSupporter": "Convi\u00e9rtete en un Fan\u00e1tico Emby",
"MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles en este momento. Comienza a ver y a calificar tus pel\u00edculas, y regresa para ver tus recomendaciones.",
"MessageNoCollectionsAvailable": "Las colecciones le permiten disfrutar de agrupaciones personalizadas de Pel\u00edculas, Series, \u00c1lbumes, Libros y Juegos. Haga clic en el bot\u00f3n + para iniciar la creaci\u00f3n de Colecciones.",
- "MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenidos a ser reproducidos de manera consecutiva. Para agregar \u00edtems a una lista de reproducci\u00f3n, haga clic derecho o seleccione y mantenga, despu\u00e9s seleccione Agregar a Lista de Reproducci\u00f3n.",
- "MessageNoPlaylistItemsAvailable": "Esta lista de reproducci\u00f3n se encuentra vac\u00eda.",
+ "ButtonClose": "Cerrar",
+ "HeaderConfirmDeletion": "Confirmar Eliminaci\u00f3n",
+ "HeaderHomePage": "P\u00e1gina de Inicio",
+ "HeaderSettingsForThisDevice": "Configuraci\u00f3n de Este Dispositivo",
"ButtonDismiss": "Descartar",
+ "ButtonMore": "M\u00e1s",
"ButtonEditOtherUserPreferences": "Editar el perf\u00edl de este usuario. im\u00e1gen y preferencias personales.",
+ "TitleChannels": "Canales",
"LabelChannelStreamQuality": "Calidad por defecto para transmisi\u00f3n por internet:",
"LabelChannelStreamQualityHelp": "En un ambiente de ancho de banda limitado, limitar la calidad puede ayudar a asegurar una experiencia de transimisi\u00f3n en tiempo real fluida.",
"OptionBestAvailableStreamQuality": "La mejor disponible",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Eliminar contenido despu\u00e9s de: (d\u00edas)",
"LabelChannelDownloadAgeHelp": "El contenido descargado anterior a esto ser\u00e1 eliminado. Permanecer\u00e1 reproducible via transmisi\u00f3n en tiempo real por Internet.",
"ChannelSettingsFormHelp": "Instale canales tales como Tr\u00e1ilers y Vimeo desde el cat\u00e1logo de complementos.",
- "ButtonOptions": "Opciones",
- "ViewTypePlaylists": "Listas de Reproducci\u00f3n",
+ "ButtonAddToCollection": "Agregar a Colecci\u00f3n",
+ "ButtonSubmit": "Enviar",
"ViewTypeMovies": "Pel\u00edculas",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Juegos",
"ViewTypeMusic": "M\u00fasica",
- "ViewTypeMusicGenres": "G\u00e9neros",
- "ViewTypeMusicArtists": "Artistas",
"ViewTypeBoxSets": "Colecciones",
- "ViewTypeChannels": "Canales",
- "ViewTypeLiveTV": "TV en Vivo",
- "ViewTypeLiveTvNowPlaying": "Transmiti\u00e9ndose",
- "ViewTypeLatestGames": "Juegos Recientes",
- "ViewTypeRecentlyPlayedGames": "Reproducido Reci\u00e9ntemente",
- "ViewTypeGameFavorites": "Favoritos",
- "ViewTypeGameSystems": "Sistemas de Juego",
- "ViewTypeGameGenres": "G\u00e9neros",
- "ViewTypeTvResume": "Continuar",
- "ViewTypeTvNextUp": "Siguiente",
- "ViewTypeTvLatest": "Recientes",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "G\u00e9neros",
- "ViewTypeTvFavoriteSeries": "Series Favoritas",
- "ViewTypeTvFavoriteEpisodes": "Episodios Favoritos",
- "ViewTypeMovieResume": "Continuar",
- "ViewTypeMovieLatest": "Recientes",
- "ViewTypeMovieMovies": "Pel\u00edculas",
- "ViewTypeMovieCollections": "Colecciones",
- "ViewTypeMovieFavorites": "Favoritos",
- "ViewTypeMovieGenres": "G\u00e9neros",
- "ViewTypeMusicLatest": "Recientes",
- "ViewTypeMusicPlaylists": "Listas",
- "ViewTypeMusicAlbums": "\u00c1lbumes",
- "ViewTypeMusicAlbumArtists": "Artistas del \u00c1lbum",
"HeaderOtherDisplaySettings": "Configuraci\u00f3n de Pantalla",
- "ViewTypeMusicSongs": "Canciones",
- "ViewTypeMusicFavorites": "Favoritos",
- "ViewTypeMusicFavoriteAlbums": "\u00c1lbumes Favoritos",
- "ViewTypeMusicFavoriteArtists": "Artistas Favoritos",
- "ViewTypeMusicFavoriteSongs": "Canciones Favoritas",
- "HeaderMyViews": "Mis Vistas",
"LabelSelectFolderGroups": "Agrupar autom\u00e1ticamente el contenido de las siguientes carpetas en vistas tales como Pel\u00edculas, M\u00fasica y TV:",
"LabelSelectFolderGroupsHelp": "Las carpetas sin marcar ser\u00e1n desplegadas individualmente en su propia vista.",
+ "ViewTypeChannels": "Canales",
+ "ViewTypeLiveTV": "TV en Vivo",
"OptionDisplayAdultContent": "Desplegar contenido para Adultos",
+ "MessageNoChapterProviders": "Instale un complemento proveedor de cap\u00edtulos como ChapterDb para habilitar opciones adicionales de cap\u00edtulos.",
+ "TabChapters": "Cap\u00edtulos",
+ "HeaderDownloadChaptersFor": "Descargar nombres de cap\u00edtulos para:",
+ "HeaderChapterDownloadingHelp": "Cuando Emby examina sus archivos de video puede descargar nombres de cap\u00edtulo mas amigables desde internet usando complementos de cap\u00edtulos como ChapterDb.",
"OptionLibraryFolders": "Carpetas de medios",
+ "LabelHomePageSection4": "Pagina de Inicio secci\u00f3n cuatro:",
+ "OptionLatestChannelMedia": "\u00cdtems recientes de canales",
+ "HeaderLatestChannelItems": "\u00cdtems Recientes de Canales",
"TitleRemoteControl": "Control Remoto",
+ "HeaderMyViews": "Mis Vistas",
"OptionLatestTvRecordings": "Grabaciones recientes",
+ "ButtonRefresh": "Actualizar",
"LabelProtocolInfo": "Informaci\u00f3n del protocolo:",
"LabelProtocolInfoHelp": "El valor que ser\u00e1 utilizado cuando se responde a solicitudes GetProtocolInfo desde el dispositivo.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby incluye soporte nativo para archivos de metadatos Nfo. Para habilitar o deshabilitar los metadatos Nfo, utilice la pesta\u00f1a Avanzado para configurar las opciones para sus tipos de medios.",
- "LabelKodiMetadataUser": "Sincronizar informaci\u00f3n de vistos a nfo's para:",
- "LabelKodiMetadataUserHelp": "Habilitar esto para mantener los datos monitoreados en sincron\u00eda entre el Servidor Emby y los archivos Nfo .",
- "LabelKodiMetadataDateFormat": "Formato de fecha de estreno:",
- "LabelKodiMetadataDateFormatHelp": "Todas las fechas en los nfo\u00b4s ser\u00e1n le\u00eddas y escritas utilizando este formato.",
- "LabelKodiMetadataSaveImagePaths": "Guardar trayectorias de im\u00e1genes en los archivos nfo",
- "LabelKodiMetadataSaveImagePathsHelp": "Esto se recomienda si tiene nombres de imagenes que no se ajustan a los lineamientos de Kodi.",
- "LabelKodiMetadataEnablePathSubstitution": "Habilitar sustituci\u00f3n de trayectorias",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Habilita la sustituci\u00f3n de trayectorias de im\u00e1genes usando la configuraci\u00f3n de sustituci\u00f3n de trayectorias del servidor.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Ver sustituci\u00f3n de trayectoras.",
- "OptionDisplayChannelsInline": "Mostrar canales alineado junto con mis vistas",
- "OptionDisplayChannelsInlineHelp": "Al activarse, estos canales ser\u00e1n mostrados directamente junto con otras vistas. Si se deshabilitados, ser\u00e1n mostrados dentro de una vista independiente de Canales.",
"LabelDisplayCollectionsView": "Desplegar una vista de colecciones para mostrar las colecciones de pel\u00edculas",
- "LabelDisplayCollectionsViewHelp": "Esto crear\u00e1 una vista separada para desplegar colecciones que usted haya creado o a las que tenga acceso. Para crear una colecci\u00f3n, haga clic derecho o presione y mantenga sobre cualquier pel\u00edcula y seleccione 'Agregar a Colecci\u00f3n'.",
- "LabelKodiMetadataEnableExtraThumbs": "Copiar extrafanart en extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "Cuando se descargan im\u00e1genes pueden ser almacenadas tanto en extrafanart como extrathumb para maximizar la compatibilidad con skins de Kodi.",
+ "HeaderSubtitles": "Subt\u00edtulos",
"TabServices": "Servicios",
"TabLogs": "Bit\u00e1coras",
"HeaderServerLogFiles": "Archivos de registro del servidor:",
@@ -1029,6 +820,8 @@
"LabelAppName": "Nombre del App",
"LabelAppNameExample": "Ejemplo: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Conceder acceso a una aplicaci\u00f3n para comunicarse con el Servidor Emby.",
+ "TabUsers": "Usuarios",
+ "TabScheduledTasks": "Tareas Programadas",
"HeaderHttpHeaders": "Encabezados Http",
"HeaderIdentificationHeader": "Encabezado de Identificaci\u00f3n",
"LabelValue": "Valor:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filtro",
"ButtonView": "Vista",
"LabelPageSize": "Cantidad de \u00cdtems:",
- "LabelPath": "Trayectoria:",
"LabelView": "Vista:",
- "TabUsers": "Usuarios",
- "LabelSortName": "Nombre para ordenar:",
- "LabelDateAdded": "Fecha de adici\u00f3n:",
+ "LabelManagement": "Administraci\u00f3n:",
"HeaderFeatures": "Caracter\u00edsticas",
"HeaderAdvanced": "Avanzado",
"ButtonSync": "Sinc",
- "TabScheduledTasks": "Tareas Programadas",
"HeaderChapters": "Cap\u00edtulos",
"HeaderResumeSettings": "Configuraci\u00f3n para Continuar",
"TabSync": "Sinc",
"TitleUsers": "Usuarios",
+ "LabelMaxStreamingBitrate": "Tasa de bits m\u00e1xima para transmisi\u00f3n:",
+ "LabelMaxStreamingBitrateHelp": "Especifique una tasa de bits m\u00e1xima al transferir en tiempo real.",
+ "LabelMaxStaticBitrate": "Tasa m\u00e1xima de bits de sinc",
+ "LabelMaxStaticBitrateHelp": "Especifique una tasa de bits cuando al sincronizar contenido en alta calidad.",
"LabelProtocol": "Protocolo:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Transmisi\u00f3n en vivo por Http",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Transmisi\u00f3n",
"OptionContextStatic": "Sinc.",
"ButtonAddToPlaylist": "Agregar a lista de reproducci\u00f3n",
+ "MessageNoPlaylistsAvailable": "Las listas de reproducci\u00f3n le permiten crear listas de contenidos a ser reproducidos de manera consecutiva. Para agregar \u00edtems a una lista de reproducci\u00f3n, haga clic derecho o seleccione y mantenga, despu\u00e9s seleccione Agregar a Lista de Reproducci\u00f3n.",
+ "MessageNoPlaylistItemsAvailable": "Esta lista de reproducci\u00f3n se encuentra vac\u00eda.",
"TabPlaylists": "Listas de reproducci\u00f3n",
- "ButtonClose": "Cerrar",
"LabelAllLanguages": "Todos los lenguajes",
"HeaderBrowseOnlineImages": "Buscar Im\u00e1genes en L\u00ednea",
"LabelSource": "Fuente:",
@@ -1080,7 +874,6 @@
"OptionBox": "Caja",
"OptionBoxRear": "Reverso de caja",
"OptionDisc": "Disco",
- "OptionIcon": "Icono",
"OptionLogo": "Logotipo",
"OptionMenu": "Men\u00fa",
"OptionScreenshot": "Captura de pantalla",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "No Identificado",
"OptionMissingParentalRating": "Falta clasificaci\u00f3n parental",
"OptionStub": "Plantilla",
+ "HeaderEpisodes": "Episodios:",
"OptionSeason0": "Temporada 0",
"LabelReport": "Reporte:",
"OptionReportSongs": "Canciones",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artistas",
"OptionReportAlbums": "\u00c1lbumes",
"OptionReportAdultVideos": "Videos para Adultos",
+ "ButtonMoreItems": "Mas",
"HeaderActivity": "Actividad",
"ScheduledTaskStartedWithName": "{0} Iniciado",
"ScheduledTaskCancelledWithName": "{0} fue cancelado",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Fall\u00f3 la descarga de subt\u00edtulos para {0}",
"LabelRunningTimeValue": "Duraci\u00f3n: {0}",
"LabelIpAddressValue": "Direcci\u00f3n IP: {0}",
- "UserLockedOutWithName": "El usuario {0} ha sido bloqueado",
"UserConfigurationUpdatedWithName": "Se ha actualizado la configuraci\u00f3n del usuario {0}",
"UserCreatedWithName": "Se ha creado el usuario {0}",
"UserPasswordChangedWithName": "Se ha cambiado la contrase\u00f1a para el usuario {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "El servidor Emby ha sido actualizado",
"AuthenticationSucceededWithUserName": "{0} autenticado con \u00e9xito",
"FailedLoginAttemptWithUserName": "Intento fallido de inicio de sesi\u00f3n de {0}",
- "UserDownloadingItemWithValues": "{0} esta descargando {1}",
"UserStartedPlayingItemWithValues": "{0} ha iniciado la reproducci\u00f3n de {1}",
"UserStoppedPlayingItemWithValues": "{0} ha detenido la reproducci\u00f3n de {1}",
"AppDeviceValues": "App: {0}, Dispositivo: {1}",
"ProviderValue": "Proveedor: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Cargando contenido...",
"LabelChannelDownloadSizeLimit": "L\u00edmite de tama\u00f1o de descarga (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limitar el tama\u00f1o del folder de descarga del canal.",
+ "LabelMusicStaticBitrate": "Tasa de bits de sinc de m\u00fascia",
+ "LabelMusicStaticBitrateHelp": "Especifique la tasa de bits m\u00e1xima al sincronizar m\u00fasica",
+ "LabelMusicStreamingTranscodingBitrate": "Tasa de transcodificaci\u00f3n de m\u00fasica:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Especifique la tasa de bits m\u00e1xima al transferir musica en tiempo real",
"HeaderRecentActivity": "Actividad Reciente",
"HeaderPeople": "Personas",
"HeaderDownloadPeopleMetadataFor": "Descargar biograf\u00eda e im\u00e1genes para:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Mostrar una vista de carpetas para mostrar carpetas de medios simples",
"ViewTypeLiveTvRecordingGroups": "Grabaciones",
"ViewTypeLiveTvChannels": "Canales",
- "LabelEasyPinCode": "C\u00f3digo pin sencillo:",
- "EasyPasswordHelp": "Tu c\u00f3digo pin sencillo es usado para el acceso fuera de linea con las aplicaciones Emby soportadas, y tambi\u00e9n puede ser usado para iniciar sesi\u00f3n m\u00e1s f\u00e1cilmente cuando esta conectado dentro de su red.",
- "LabelInNetworkSignInWithEasyPassword": "Habilitar inicio de sesi\u00f3n con mi c\u00f3digo pin sencillo para conexiones dentro de la red.",
- "LabelInNetworkSignInWithEasyPasswordHelp": "Si se habilita, podr\u00e1 usar su c\u00f3digo pin sencillo para iniciar sesi\u00f3n en las aplicaciones Emby desde su red de hogar. Su contrase\u00f1a regular sera requerida solamente cuando este fuera de casa. Si el c\u00f3digo pin es dejado en blanco, no necesitara una contrase\u00f1a dentro de su red de hogar.",
"HeaderPassword": "Contrase\u00f1a",
"HeaderLocalAccess": "Acceso Local",
"HeaderViewOrder": "Orden de Despliegue",
- "ButtonResetEasyPassword": "Restaurar c\u00f3digo pin sencillo",
"LabelSelectUserViewOrder": "Seleccione el orden en que sus vistas ser\u00e1n desplegadas dentro de las apps de Emby",
+ "LabelReleaseDate": "Fecha de estreno:",
+ "LabelEndDate": "Fecha de Fin:",
+ "LabelYear": "A\u00f1o:",
+ "FolderTypeMixed": "Contenido mezclado",
+ "FolderTypeMovies": "Pel\u00edculas",
+ "FolderTypeMusic": "M\u00fasica",
+ "FolderTypeAdultVideos": "Videos para adultos",
+ "FolderTypePhotos": "Fotos",
+ "FolderTypeMusicVideos": "Videos musicales",
+ "FolderTypeHomeVideos": "Videos caseros",
+ "FolderTypeGames": "Juegos",
+ "FolderTypeBooks": "Libros",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artistas:",
+ "LabelArtistsHelp": "Separar m\u00faltiples empleando:",
+ "ButtonAdvancedRefresh": "Actualizaci\u00f3n Avanzada",
+ "LabelPersonRole": "Rol:",
+ "LabelPersonRoleHelp": "El Rol generalmente solo aplica a actores.",
+ "LabelPath": "Trayectoria:",
+ "LabelSortName": "Nombre para ordenar:",
+ "LabelDateAdded": "Fecha de adici\u00f3n:",
"LabelMetadataRefreshMode": "Modo de actualizaci\u00f3n de metadatos:",
"LabelImageRefreshMode": "Modo de actualizaci\u00f3n de im\u00e1genes:",
"OptionDownloadMissingImages": "Descargar im\u00e1genes faltantes",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Info de la Persona",
"HeaderIdentifyItem": "Identificar \u00cdtem",
"HeaderIdentifyItemHelp": "Introduzca uno o m\u00e1s criterios de b\u00fasqueda. Elimine criterios para expandir los resultados.",
- "HeaderConfirmDeletion": "Confirmar Eliminaci\u00f3n",
"LabelFollowingFileWillBeDeleted": "Lo siguiente ser\u00e1 eliminado:",
"LabelIfYouWishToContinueWithDeletion": "Si desea continuar, por favor confirme introduci\u00e9ndo el valor de:",
"ButtonIdentify": "Identificar",
"LabelAlbumArtist": "Artista del \u00e1lbum:",
- "LabelAlbumArtists": "Artistas del \u00e1lbum:",
"LabelAlbum": "\u00c1lbum",
"LabelCommunityRating": "Calificaci\u00f3n de la comunidad:",
"LabelVoteCount": "Cantidad de votos:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Eslogan",
"LabelOverview": "Sinopsis:",
"LabelShortOverview": "Sinopsis corta:",
- "LabelReleaseDate": "Fecha de estreno:",
- "LabelYear": "A\u00f1o:",
"LabelPlaceOfBirth": "Lugar de nacimiento:",
- "LabelEndDate": "Fecha de Fin:",
"LabelAirDate": "D\u00edas al aire:",
"LabelAirTime:": "Tiempo al \u00e1ire:",
"LabelRuntimeMinutes": "Duraci\u00f3n (minutos):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Configuraci\u00f3n de metadatos",
"LabelLockItemToPreventChanges": "Bloquear este \u00edtem para evitar cambios futuros",
"MessageLeaveEmptyToInherit": "Dejar vac\u00edo para heredar la configuraci\u00f3n del \u00edtem padre, o el valor global por omisi\u00f3n.",
- "TabDonate": "Donar",
"HeaderDonationType": "Tipo de Donaci\u00f3n:",
"OptionMakeOneTimeDonation": "Hacer una donaci\u00f3n independiente",
- "OptionOneTimeDescription": "Esta es una donaci\u00f3n adicional para mostrar tu apoyo al equipo. No tiene ning\u00fan beneficio adicional ni producir\u00e1 una clave de aficionado.",
- "OptionLifeTimeSupporterMembership": "Membres\u00eda de aficionado vitalicia",
- "OptionYearlySupporterMembership": "Membres\u00eda anual de aficionado",
- "OptionMonthlySupporterMembership": "Membres\u00eda mensual de aficionado",
"OptionNoTrailer": "Sin Avance",
"OptionNoThemeSong": "Sin Canci\u00f3n del Tema",
"OptionNoThemeVideo": "Sin Video del Tema",
"LabelOneTimeDonationAmount": "Cantidad a donar:",
- "ButtonDonate": "Donar",
- "ButtonPurchase": "Comprar",
"OptionActor": "Actor",
"OptionComposer": "Compositor",
"OptionDirector": "Director",
"OptionGuestStar": "Estrella invitada",
"OptionProducer": "Productor",
"OptionWriter": "Escritor",
+ "LabelEpisodeNamePlain": "Nombre del episodio",
+ "LabelSeriesNamePlain": "Nombre de la serie",
+ "LabelSeasonNumberPlain": "N\u00famero de temporada",
+ "LabelEpisodeNumberPlain": "N\u00famero de episodio",
+ "LabelEndingEpisodeNumberPlain": "N\u00famero del episodio final",
+ "OptionOneTimeDescription": "Esta es una donaci\u00f3n adicional para mostrar tu apoyo al equipo. No tiene ning\u00fan beneficio adicional ni producir\u00e1 una clave de aficionado.",
"LabelAirDays": "Se emite los d\u00edas:",
"LabelAirTime": "Duraci\u00f3n:",
"HeaderMediaInfo": "Info del Medio",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Info del desarrollador",
"HeaderRevisionHistory": "Historial de Versiones",
"ButtonViewWebsite": "Ver sitio web",
+ "ViewTypeLiveTvNowPlaying": "Transmiti\u00e9ndose",
+ "ViewTypeLatestGames": "Juegos Recientes",
+ "ViewTypeRecentlyPlayedGames": "Reproducido Reci\u00e9ntemente",
+ "ViewTypeGameFavorites": "Favoritos",
+ "ViewTypeGameSystems": "Sistemas de Juego",
+ "ViewTypeGameGenres": "G\u00e9neros",
+ "ViewTypeTvResume": "Continuar",
+ "ViewTypeTvNextUp": "Siguiente",
+ "ViewTypeTvLatest": "Recientes",
+ "ViewTypeTvGenres": "G\u00e9neros",
+ "ViewTypeMovieResume": "Continuar",
+ "ViewTypeMovieLatest": "Recientes",
+ "ViewTypeMovieMovies": "Pel\u00edculas",
+ "ViewTypeMovieCollections": "Colecciones",
+ "ViewTypeMovieFavorites": "Favoritos",
+ "ViewTypeMovieGenres": "G\u00e9neros",
+ "ViewTypeMusicLatest": "Recientes",
+ "ViewTypeMusicAlbums": "\u00c1lbumes",
+ "ViewTypeMusicAlbumArtists": "Artistas del \u00c1lbum",
+ "TabDonate": "Donar",
+ "OptionLifeTimeSupporterMembership": "Membres\u00eda de aficionado vitalicia",
+ "OptionYearlySupporterMembership": "Membres\u00eda anual de aficionado",
+ "OptionMonthlySupporterMembership": "Membres\u00eda mensual de aficionado",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Series Favoritas",
+ "ViewTypeTvFavoriteEpisodes": "Episodios Favoritos",
"HeaderXmlSettings": "Configuraci\u00f3n XML",
"HeaderXmlDocumentAttributes": "Atributos del Documento XML",
"HeaderXmlDocumentAttribute": "Atributo del Documento XML",
"XmlDocumentAttributeListHelp": "Estos atributos son aplicados al elemento ra\u00edz de cada respuesta XML.",
"OptionSaveMetadataAsHidden": "Guardar metadatos e im\u00e1genes como archivos ocultos",
+ "ViewTypeMusicSongs": "Canciones",
"LabelExtractChaptersDuringLibraryScan": "Extraer im\u00e1genes de cap\u00edtulos durante la exploraci\u00f3n de la biblioteca",
"LabelExtractChaptersDuringLibraryScanHelp": "Si se activa, las im\u00e1genes de cap\u00edtulos ser\u00e1n extra\u00eddas cuando los videos sean importados durante la exploraci\u00f3n de la biblioteca. Si se deshabilita, ser\u00e1n extra\u00eddas durante la ejecuci\u00f3n de la tarea programada de extracci\u00f3n de im\u00e1genes de cap\u00edtulos, permiti\u00e9ndo que la exploraci\u00f3n normal de la biblioteca se complete m\u00e1s r\u00e1pidamente.",
- "LabelConnectGuestUserName": "Su nombre de usuario Emby o correo electr\u00f3nico:",
+ "ViewTypeMusicFavorites": "Favoritos",
+ "ViewTypeMusicFavoriteAlbums": "\u00c1lbumes Favoritos",
+ "ViewTypeMusicFavoriteArtists": "Artistas Favoritos",
+ "ViewTypeMusicFavoriteSongs": "Canciones Favoritas",
+ "ButtonAddLocalUser": "Agregar Usuario Local",
+ "HeaderIdentification": "Identificaci\u00f3n",
"LabelConnectUserName": "Usuario de Emby\/correo electr\u00f3nico:",
- "LabelConnectUserNameHelp": "Conectar este usuario a una cuenta Emby para habilitar el ingreso f\u00e1cil desde cualquier aplicaci\u00f3n Emby sin tener que conocer la direcci\u00f3n ip del servidor.",
- "ButtonLearnMoreAboutEmbyConnect": "Conocer mas acerca de Emby Connect",
+ "LabelConnectUserNameHelp": "Conectar este usuario local a una cuenta Emby en l\u00ednea para facilitar el ingreso desde cualquier aplicaci\u00f3n Emby sin tener que conocer la direcci\u00f3n ip del servidor.",
+ "ButtonNext": "Siguiente",
+ "ButtonPrevious": "Previo",
"LabelExternalPlayers": "Reproductores Externos:",
"LabelExternalPlayersHelp": "Despliega botones para reproducir contenido en reproductores externos. Esto s\u00f3lo est\u00e1 disponible en dispositivos que soporten esquemas URL, generalmente Android e iOS. Con reproductores externos normalmente no se cuenta con soporte para control remoto o reinicio.",
- "LabelNativeExternalPlayersHelp": "Mostrar botones para reproducir contenido en reproductores externos.",
- "LabelEnableItemPreviews": "Habilitar la vista previa de \u00edtems",
- "LabelEnableItemPreviewsHelp": "Si se habilita, aparecer\u00e1n las vistas previas desliz\u00e1ndose al dar clic a los \u00edtems en ciertas pantallas.",
+ "ValueSpecialEpisodeName": "Especial: {0}",
"HeaderSubtitleProfile": "Perf\u00edl de Subt\u00edtulo",
"HeaderSubtitleProfiles": "Perfiles de Subt\u00edtulos",
"HeaderSubtitleProfilesHelp": "Los perfiles de subt\u00edtulos describen el formato del subt\u00edtulo soportado por el dispositivo.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Subt\u00edtulos segmentados HIs",
"LabelSubtitleFormatHelp": "Ejemplo: srt",
"ButtonLearnMore": "Aprenda m\u00e1s",
+ "HeaderKodiMetadataHelp": "Emby incluye soporte nativo para archivos de metadatos Nfo. Para habilitar o deshabilitar los metadatos Nfo, utilice la pesta\u00f1a Avanzado para configurar las opciones para sus tipos de medios.",
+ "LabelKodiMetadataUser": "Sincronizar informaci\u00f3n de vistos a nfo's para:",
+ "LabelKodiMetadataUserHelp": "Habilitar esto para mantener los datos monitoreados en sincron\u00eda entre el Servidor Emby y los archivos Nfo .",
+ "LabelKodiMetadataDateFormat": "Formato de fecha de estreno:",
+ "LabelKodiMetadataDateFormatHelp": "Todas las fechas en los nfo\u00b4s ser\u00e1n le\u00eddas y escritas utilizando este formato.",
+ "LabelKodiMetadataSaveImagePaths": "Guardar trayectorias de im\u00e1genes en los archivos nfo",
+ "LabelKodiMetadataSaveImagePathsHelp": "Esto se recomienda si tiene nombres de imagenes que no se ajustan a los lineamientos de Kodi.",
+ "LabelKodiMetadataEnablePathSubstitution": "Habilitar sustituci\u00f3n de trayectorias",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Habilita la sustituci\u00f3n de trayectorias de im\u00e1genes usando la configuraci\u00f3n de sustituci\u00f3n de trayectorias del servidor.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Ver sustituci\u00f3n de trayectoras.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copiar extrafanart en extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Cuando se descargan im\u00e1genes pueden ser almacenadas tanto en extrafanart como extrathumb para maximizar la compatibilidad con skins de Kodi.",
"TabPlayback": "Reproducci\u00f3n",
"HeaderLanguagePreferences": "Preferencias de Lenguaje",
"TabCinemaMode": "Modo Cine",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Solo usar tr\u00e1ilers de contenido no reproducido",
"LabelEnableIntroParentalControl": "Habilitar control parental inteligente",
"LabelEnableIntroParentalControlHelp": "Los tr\u00e1ilers s\u00f3lo ser\u00e1n seleccionados con una clasificaci\u00f3n parental igual o menor a la del contenido que se est\u00e1 reproduciendo.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Estas caractwr\u00edsticas requieren de una membres\u00eda de aficionado activa y de la instalaci\u00f3n del complemento del canal de tr\u00e1ilers.",
"OptionTrailersFromMyMoviesHelp": "Requiere configurar tr\u00e1ilers locales.",
"LabelCustomIntrosPath": "Trayectoria para intros personalizados:",
"LabelCustomIntrosPathHelp": "Un folder que contiene archivos de video. Un video ser\u00e1 seleccionado aleatoriamente y reproducido despu\u00e9s de los tr\u00e1ilers.",
- "ValueSpecialEpisodeName": "Especial: {0}",
+ "ButtonOptions": "Opciones",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Estas caractwr\u00edsticas requieren de una membres\u00eda de aficionado activa y de la instalaci\u00f3n del complemento del canal de tr\u00e1ilers.",
"LabelSelectInternetTrailersForCinemaMode": "Tr\u00e1ilers de Internet",
"OptionUpcomingDvdMovies": "Incluir tr\u00e1ilers de pel\u00edculas en DVD y Blu-ray nuevas y por estrenar",
"OptionUpcomingStreamingMovies": "Incluir tr\u00e1ilers de pel\u00edculas nuevas o por estrenar en Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Los usuarios individuales podr\u00e1n desactivar el modo cine desde sus preferencias personales.",
"LabelEnableCinemaMode": "Activar modo cine",
"HeaderCinemaMode": "Modo cine",
+ "TabDevices": "Dispositivos",
+ "LabelLocalHttpServerPortNumber": "N\u00famero de puerto http local:",
+ "LabelLocalHttpServerPortNumberHelp": "El numero de puerto tcp con el que se deber\u00e1 vincular el servidor http de Emby.",
+ "LabelEnableAutomaticPortMap": "Habilitar mapeo autom\u00e1tico de puertos",
+ "LabelEnableAutomaticPortMapHelp": "Intentar mapear autom\u00e1ticamente el puerto p\u00fablico con el puerto local via UPnP. Esto podr\u00eda no funcionar con algunos modelos de ruteadores.",
"LabelDateAddedBehavior": "Comportamiento de fecha de adici\u00f3n para nuevo contenido:",
"OptionDateAddedImportTime": "Emplear la fecha de escaneo en la biblioteca",
"OptionDateAddedFileTime": "Emplear fecha de creaci\u00f3n del archivo",
"LabelDateAddedBehaviorHelp": "Si se encuentra un valor en los metadados siempre ser\u00e1 empleado antes que cualquiera de estas opciones.",
"LabelNumberTrailerToPlay": "N\u00famero de tr\u00e1ilers a reproducir:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limitar el tama\u00f1o del folder de descarga del canal.",
"TitleDevices": "Dispositivos",
"TabCameraUpload": "Subir desde la C\u00e1mara",
- "TabDevices": "Dispositivos",
"HeaderCameraUploadHelp": "Subir autom\u00e1ticamente fotograf\u00edas y videos tomados desde sus dispositivos m\u00f3viles a Emby.",
"MessageNoDevicesSupportCameraUpload": "Actualmente no cuenta con ning\u00fan dispositivo que soporte subir desde la c\u00e1mara.",
"LabelCameraUploadPath": "Ruta para subir desde la c\u00e1mara:",
"LabelCameraUploadPathHelp": "Seleccione una trayectoria personalizada de subida. Si no se especifica, una carpeta por omisi\u00f3n ser\u00e1 usada. Si usa una trayectoria personalizada, tambi\u00e9n ser\u00e1 necesario agregarla en el \u00e1rea de configuraci\u00f3n de la biblioteca.",
"LabelCreateCameraUploadSubfolder": "Crear una subcarpeta para cada dispositivo",
"LabelCreateCameraUploadSubfolderHelp": "Se pueden especificar carpetas espec\u00edficas para un dispositivo haciendo clic en \u00e9l desde la p\u00e1gina de Dispositivos.",
+ "ButtonInviteUser": "Invitar Usuario",
"LabelCustomDeviceDisplayName": "Nombre a Desplegar:",
"LabelCustomDeviceDisplayNameHelp": "Proporcione un nombre a desplegar personalizado o d\u00e9jelo vac\u00edo para usar el nombre reportado por el dispositivo.",
"HeaderInviteUser": "Invitar Usuario",
- "LabelConnectGuestUserNameHelp": "Este es el nombre de usuario que su amigo usa para accesar a la pagina web de Emby, o su direcci\u00f3n de correo electr\u00f3nico.",
"HeaderInviteUserHelp": "Compartir sus medios con amigos es mas f\u00e1cil que nunca con Emby Connect.",
"ButtonSendInvitation": "Enviar invitaci\u00f3n",
- "HeaderSignInWithConnect": "Iniciar Sesi\u00f3n con Emby Connect",
"HeaderGuests": "Invitados",
"HeaderLocalUsers": "Usuarios Locales",
"HeaderPendingInvitations": "Invitaciones Pendientes",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Entre semana",
"OptionWeekends": "Fines de semana",
"MessageProfileInfoSynced": "Informaci\u00f3n de perfil de usuario sincronizada con Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Opcional: Enlazar su cuenta Emby",
"ButtonTrailerReel": "Carrete de Tr\u00e1ilers",
"HeaderTrailerReel": "Carrete de Tr\u00e1ilers",
"OptionPlayUnwatchedTrailersOnly": "Reproducir \u00fanicamente tr\u00e1ilers no vistos",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No se encontraron tr\u00e1ilers. Instale el canal de tr\u00e1ilers para mejorar su experiencia con pel\u00edculas al agregar una biblioteca de tr\u00e1ilers desde el Internet.",
"HeaderNewUsers": "Nuevos Usuarios",
"ButtonSignUp": "Registrarse",
+ "LabelConnectGuestUserName": "Su nombre de usuario Emby o correo electr\u00f3nico:",
+ "LabelConnectGuestUserNameHelp": "Este es el nombre de usuario que su amigo usa para accesar a la pagina web de Emby, o su direcci\u00f3n de correo electr\u00f3nico.",
"ButtonForgotPassword": "Olvid\u00e9 contrase\u00f1a",
"OptionDisableUserPreferences": "Desactivar acceso a las preferencias de usuario",
"OptionDisableUserPreferencesHelp": "Al activarse, s\u00f3lo los administradores podr\u00e1n configurar las im\u00e1genes del perfil del usuario, contrase\u00f1as y preferencias de idioma.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Compartir Carpetas de Medios",
"MessageGuestSharingPermissionsHelp": "Muchas de las caracter\u00edsticas no est\u00e1n disponibles inicialmente para invitados pero pueden ser activadas conforme se necesiten.",
"HeaderInvitations": "Invitaciones",
- "LabelForgotPasswordUsernameHelp": "Introduce tu nombre de usuario, si lo recuerdas.",
"HeaderForgotPassword": "Contrase\u00f1a Olvidada",
+ "LabelForgotPasswordUsernameHelp": "Introduce tu nombre de usuario, si lo recuerdas.",
"TitleForgotPassword": "Contrase\u00f1a Olvidada",
"TitlePasswordReset": "Restablecer Contrase\u00f1a",
"LabelPasswordRecoveryPinCode": "C\u00f3digo pin:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Clasificaci\u00f3n Parental",
"HeaderVideoTypes": "Tipos de Video",
"HeaderYears": "A\u00f1os",
+ "OptionPosterCard": "Tarjeta de P\u00f3ster",
+ "OptionThumbCard": "Tarjeta de Miniatura",
+ "OptionAllowRemoteSharedDevices": "Permitir control remoto de dispositivos compartidos",
+ "OptionAllowRemoteSharedDevicesHelp": "Los dispositivos dnla son considerados como compartidos hasta que alg\u00fan usuario comienza a controlarlo.",
+ "HeaderRemoteControl": "Control Remoto",
+ "ViewTypeMusicGenres": "G\u00e9neros",
+ "ViewTypeMusicArtists": "Artistas",
+ "HeaderSignInWithConnect": "Iniciar Sesi\u00f3n con Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Documentaci\u00f3n del API",
+ "LabelDeveloperResources": "Recursos para Desarrolladores",
"HeaderAddTag": "Agregar Etiqueta",
- "HeaderBlockItemsWithNoRating": "Bloquear contenido sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:",
- "LabelBlockContentWithTags": "Bloquear contenidos con etiquetas:",
"LabelTag": "Etiqueta:",
+ "HeaderServerInformation": "Informaci\u00f3n del Servidor",
"LabelEnableSingleImageInDidlLimit": "Limitar a una sola imagen incrustada.",
"LabelEnableSingleImageInDidlLimitHelp": "Algunos dispositivos no renderisaran apropiadamente si hay m\u00faltiples im\u00e1genes incrustadas en el Didl",
"TabActivity": "Actividad",
"TitleSync": "Sinc",
+ "HeaderSettings": "Configuraci\u00f3n",
"OptionAllowSyncContent": "Permitir Sinc",
- "OptionAllowContentDownloading": "Permitir descarga de medios",
+ "FolderTypeInherit": "Heredar",
+ "LabelContentType": "Tipo de Contenido:",
"NameSeasonUnknown": "Temporada Desconocida",
"NameSeasonNumber": "Temporada {0}",
"LabelNewUserNameHelp": "Los nombres de usuario pueden contener letras (a-z), n\u00fameros (0-9), guiones (-), guiones bajos (_) y puntos (.)",
+ "ButtonHelp": "Ayuda",
+ "TabAccess": "Acceso",
+ "HeaderDeviceAccess": "Acceso a Dispositivos",
+ "OptionEnableAccessFromAllDevices": "Habilitar acceso desde todos los dispositivos",
+ "DeviceAccessHelp": "Esto solo aplica a dispositivos que pueden ser identificados de manera individual y no evitar\u00e1 acceso al navegador. Al filtrar el acceso de usuarios a dispositivos se impedir\u00e1 que utilicen nuevos dispositivos hasta que hayan sido aprobados aqu\u00ed.",
+ "ButtonQuickStartGuide": "Gu\u00eda de inicio r\u00e1pido",
+ "HeaderSyncJobInfo": "Trabajo de Sinc",
"TabJobs": "Trabajos",
"TabSyncJobs": "Trabajos de Sinc",
+ "HeaderTermsOfService": "T\u00e9rminos de Servicio de Emby",
+ "MessagePleaseAcceptTermsOfService": "Por favor acepte los t\u00e9rminos del servicio y la pol\u00edtica de privacidad antes de continuar.",
+ "OptionIAcceptTermsOfService": "Acepto los t\u00e9rminos del servicio.",
+ "ButtonPrivacyPolicy": "Pol\u00edtica de privacidad",
+ "ButtonTermsOfService": "T\u00e9rminos del Servicio",
+ "OptionHideUserFromLoginHelp": "\u00datil para cuentas privadas o de administrador ocultas. El usuario tendr\u00e1 que iniciar sesi\u00f3n manualmente introduciendo su nombre de usuario y contrase\u00f1a.",
+ "LabelEnterConnectUserName": "Nombre de usuario o correo:",
+ "LabelEnterConnectUserNameHelp": "Este es su nombre de usuario de su cuenta Emby en linea o su correo electronico.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detectar archivos comprimidos como medios",
+ "OptionDetectArchiveFilesAsMediaHelp": "Al habilitarlo, los archivos con extensiones .rar y .zip ser\u00e1n detectados como archivos de medios.",
+ "ButtonDonate": "Donar",
+ "HeaderOptions": "Opciones",
+ "HeaderIdentificationResult": "Resultado de la Identificaci\u00f3n",
+ "OptionEnableAccessToAllChannels": "Habilitar acceso a todos los canales",
+ "LabelAutomaticUpdates": "Habilitar actualizaciones autom\u00e1ticas",
+ "LabelFanartApiKey": "Clave api personal:",
+ "LabelFanartApiKeyHelp": "Solicitar fanart sin una clave API personal muestra los resultados que fueron aprobados hace 7 d\u00edas. Con una clave API personal se reduce a 48 horas y si eres miembro VIP de fanart ser\u00e1 alrededor de 10 minutos.",
+ "HeaderDeveloperOptions": "Opciones de Desarrollador",
+ "OptionEnableWebClientResponseCache": "Habilitar la cache de respuestas del cliente web",
+ "OptionDisableForDevelopmentHelp": "Configuralos como sean necesarios para prop\u00f3sitos de desarrollo en el cliente web.",
+ "OptionEnableWebClientResourceMinification": "Habilitar minificacion de recursos del cliente web",
+ "LabelDashboardSourcePath": "Ruta de origen del cliente web:",
+ "LabelDashboardSourcePathHelp": "Si esta ejecutando el servidor desde la fuente, especifique la ruta de acceso a la carpeta dashboard-ui. Todos los archivos de cliente web ser\u00e1n atendidos desde esta ruta.",
+ "HeaderPaths": "Rutas",
+ "TitleNotifications": "Notificaciones",
+ "ButtonDonateWithPayPal": "Donar con PayPal",
+ "TitleScheduledTasks": "Tareas Programadas",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "N\u00famero de puerto http publico:",
+ "LabelPublicHttpPortHelp": "El numero de puerto que debe ser mapeado a el puerto http local.",
+ "LabelPublicHttpsPort": "N\u00famero de puerto https publico:",
+ "LabelPublicHttpsPortHelp": "El n\u00famero de puerto p\u00fablico que deber\u00e1 ser mapeado al puerto local de https.",
+ "LabelEnableHttps": "Reportar https como una direcci\u00f3n externa",
+ "LabelEnableHttpsHelp": "Al habilitarse, el servidor reportara un URL https a los clientes como su direcci\u00f3n externa.",
+ "LabelHttpsPort": "N\u00famero de puerto https local:",
+ "LabelHttpsPortHelp": "El numero de puerto tcp con el que se deber\u00e1 vincular el servidor https de Emby.",
+ "TabHosting": "Hospedaje",
+ "LabelCustomCss": "css personalizado:",
+ "LabelCustomCssHelp": "Aplicar tu propia css personalizada a la interfaz web.",
+ "ButtonConvertMedia": "Convertir Medios",
+ "ButtonOrganize": "Organizar",
+ "ButtonJoinTheDevelopmentTeam": "Unirse al Equipo de Desarrollo.",
+ "OptionEnableAccessToAllLibraries": "Habilitar el acceso a todas las bibliotecas",
+ "LabelSyncTempPath": "Trayectoria de archivos temporales:",
+ "LabelSyncTempPathHelp": "Especifique una carpeta de trabajo personalizada para sinc. Los medios convertidos creados durante el proceso de sinc ser\u00e1n almacenados en este lugar.",
+ "LabelCustomCertificatePath": "Trayectoria del certificado personalizado:",
+ "LabelCustomCertificatePathHelp": "Proporcione su archivo de certificado .pfx personalizado. Si se omite, el servidor crear\u00e1 un certificado auto firmado.",
+ "LabelDisplayCollectionsViewHelp": "Esto crear\u00e1 una vista separada para desplegar colecciones que usted haya creado o a las que tenga acceso. Para crear una colecci\u00f3n, haga clic derecho o presione y mantenga sobre cualquier pel\u00edcula y seleccione 'Agregar a Colecci\u00f3n'.",
+ "HeaderSyncRequiresSupporterMembership": "Sinc requiere de una Membres\u00eda de Aficionado",
+ "HeaderEnjoyDayTrial": "Disfrute de una Prueba Gratuita por 14 D\u00edas",
+ "CategorySync": "Sinc.",
+ "RegisterWithPayPal": "Registrar con PayPal",
+ "NotificationOptionCameraImageUploaded": "Imagen de la c\u00e1mara subida",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "C\u00f3digo Pin Sencillo",
+ "LabelEasyPinCode": "C\u00f3digo pin sencillo:",
+ "EasyPasswordHelp": "Tu c\u00f3digo pin sencillo es usado para el acceso fuera de linea con las aplicaciones Emby soportadas, y tambi\u00e9n puede ser usado para iniciar sesi\u00f3n m\u00e1s f\u00e1cilmente cuando esta conectado dentro de su red.",
+ "LabelInNetworkSignInWithEasyPassword": "Habilitar inicio de sesi\u00f3n con mi c\u00f3digo pin sencillo para conexiones dentro de la red.",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "Si se habilita, podr\u00e1 usar su c\u00f3digo pin sencillo para iniciar sesi\u00f3n en las aplicaciones Emby desde su red de hogar. Su contrase\u00f1a regular sera requerida solamente cuando este fuera de casa. Si el c\u00f3digo pin es dejado en blanco, no necesitara una contrase\u00f1a dentro de su red de hogar.",
+ "ButtonResetEasyPassword": "Restaurar c\u00f3digo pin sencillo",
+ "OptionAllowContentDownloading": "Permitir descarga de medios",
+ "LabelBlockContentWithTags": "Bloquear contenidos con etiquetas:",
"LabelTagFilterMode": "Modo:",
"LabelTagFilterAllowModeHelp": "Si las etiquetas permitidas son usadas como parte de una estrucutra compleja de carpetas anidadas, el contenido etiquetado requerir\u00e1 que las carpetas padre sean etiquetadas tambi\u00e9n.",
+ "UserDownloadingItemWithValues": "{0} esta descargando {1}",
+ "LabelPinCode": "C\u00f3digo pin:",
+ "ButtonExit": "Salir",
+ "HeaderGrownupsOnly": "\u00a1Solo Adultos!",
+ "DividerOr": "--o--",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Para acceder, por favor introduzca su c\u00f3digo pin sencillo",
+ "KidsModeAdultInstruction": "Haga clic en el icono de candado en la esquina inferior derecha para configurar o abandonar el modo para ni\u00f1os.",
+ "ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
+ "HeaderAdultsReadHere": "\u00a1Adultos Leer Esto!",
+ "LabelEnableEnhancedMovies": "Habilitar visualizaci\u00f3n mejorada de pel\u00edculas",
+ "LabelEnableEnhancedMoviesHelp": "Cuando se activa, la pel\u00edculas ser\u00e1n mostradas como carpetas para incluir tr\u00e1ilers, extras, elenco y equipo, y otros contenidos relacionados.",
+ "NotificationOptionUserLockedOut": "Usuario bloqueado",
+ "OptionIcon": "Icono",
+ "UserLockedOutWithName": "El usuario {0} ha sido bloqueado",
"HeaderThisUserIsCurrentlyDisabled": "Este usuario se encuentra actualmente deshabilitado",
"MessageReenableUser": "Vea abajo para volverlo a habilitar",
+ "LabelTimeLimitHours": "L\u00edmite de Tiempo (horas):",
+ "HeaderSendNotificationHelp": "Las notificaciones son enviadas a su bandeja. Opciones adicionales pueden ser instaladas desde la pesta\u00f1a de Servicios.",
+ "HeaderInstalledServices": "Servicios Instalados",
+ "HeaderAvailableServices": "Servicios Disponibles",
+ "MessageNoServicesInstalled": "No hay servicios instalados en este momento.",
+ "TitlePlugins": "Complementos",
+ "HeaderServices": "Servicios",
+ "ViewTypePlaylists": "Listas de Reproducci\u00f3n",
+ "LabelAlbumArtists": "Artistas del \u00e1lbum:",
"LabelEnableInternetMetadataForTvPrograms": "Descargar metadatos de Internet para:",
"OptionTVMovies": "Pel\u00edculas de TV",
"HeaderUpcomingMovies": "Pel\u00edculas por Estrenar",
- "HeaderUpcomingSports": "Deportes por Estrenar",
"HeaderUpcomingPrograms": "Programas por Estrenar",
"LabelShowLibraryTileNames": "Mostrar nombres de t\u00edtulo de las bibliotecas",
"LabelShowLibraryTileNamesHelp": "Determina si se desplegar\u00e1n etiquetas debajo de los t\u00edtulos de las bibliotecas con la p\u00e1gina principal",
+ "HeaderSupporterBenefits": "Beneficios del Aficionado",
+ "HeaderAddUser": "Agregar Usuario",
+ "LabelAddConnectSupporterHelp": "Para agregar un usuario que no esta listado, necesita primero enlazar su cuenta a Emby Connect desde su pagina de perfil de usuario.",
+ "TabPlaylist": "Lista de Reproducci\u00f3n",
+ "LabelConfigureServer": "Configurar Emby",
+ "WelcomeToProject": "Bienvenido a Emby!",
+ "LinkedToEmbyConnect": "Enlazado a Emby Connect",
+ "ProjectHasCommunity": "Emby cuenta con una pr\u00f3spera comunidad de usuarios y colaboradores.",
+ "VisitProjectWebsite": "Visitar el Sitio Web de Emby",
+ "VisitProjectWebsiteLong": "Visite el sitio Web para conocer las ultimas noticias y mantenerse al d\u00eda con el blog de desarrolladores.",
+ "HeaderHelpImproveProject": "Ayude a mejorar Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Convi\u00e9rtete en un Fan\u00e1tico Emby",
+ "ButtonLearnMoreAboutEmbyConnect": "Conocer mas acerca de Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Opcional: Enlazar su cuenta Emby",
"OptionEnableTranscodingThrottle": "Habilitar contenci\u00f3n",
"OptionEnableTranscodingThrottleHelp": "La contenci\u00f3n permite ajustar autom\u00e1ticamente la velocidad de transcodificaci\u00f3n para minimizar la utilizaci\u00f3n del procesador en el servidor durante la reproducci\u00f3n.",
+ "OptionHideWatchedContentFromLatestMedia": "Ocultar contenido ya visto de Agregadas Recientemente",
+ "TabSuggestions": "Sugerencias",
+ "PlaceholderUsername": "Nombre de Usuario",
+ "HeaderSync": "Sinc",
+ "HeaderUpcomingSports": "Deportes por Estrenar",
"LabelUploadSpeedLimit": "L\u00edmite de velocidad de subida (mbps):",
"OptionAllowSyncTranscoding": "Permitir sincronizaci\u00f3n que requiera de transcodificaci\u00f3n",
"HeaderPlayback": "Reproducci\u00f3n de Medios",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Los usuarios recibir\u00e1n mensajes amigables cuando el contenido no pueda ser reproducido de acuerdo a su pol\u00edtica.",
"OptionAllowAudioPlaybackTranscoding": "Permitir la reproducci\u00f3n de audio que requiera de transcodificaci\u00f3n",
"OptionAllowVideoPlaybackTranscoding": "Permitir la reproducci\u00f3n de video que requiera de transcodificaci\u00f3n",
- "OptionAllowMediaPlaybackTranscodingHelp": "Los usuarios recibir\u00e1n mensajes amigables cuando el contenido no pueda ser reproducido de acuerdo a su pol\u00edtica.",
"TabStreaming": "Transmisi\u00f3n",
"LabelRemoteClientBitrateLimit": "Limite de tasa de bits para transmisi\u00f3n por Internet (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "L\u00edmite opcional en la tasa de bits de transmisi\u00f3n para todos los clientes fuera de la red local. Esto es \u00fatil para evitar que los clientes soliciten una tasa de bits mayor a la que su conexi\u00f3n de internet puede soportar.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "L\u00edmitar el n\u00famero de n\u00facleos del CPI que ser\u00e1n utilizados durante la conversi\u00f3n de sincronizaci\u00f3n.",
"OptionEnableFullSpeedConversion": "Habilitar conversi\u00f3n a m\u00e1xima velocidad",
"OptionEnableFullSpeedConversionHelp": "Por defecto, la conversi\u00f3n es realizada a baja velocidad para minimizar el consumo de recursos.",
+ "HeaderRepeatingOptions": "Opciones de repetici\u00f3n",
+ "OptionMyMediaButtons": "Mis medios (botones)",
+ "OptionMyMedia": "Mis medios",
+ "OptionMyMediaSmall": "Mis medios (peque\u00f1o)",
"HeaderPlaylists": "Listas",
+ "ViewTypeMusicPlaylists": "Listas",
"HeaderViewStyles": "Ver Estilos",
"LabelSelectViewStyles": "Abilitar presentaciones mejoradas para:",
"LabelSelectViewStylesHelp": "Si se activa, las diferentes vistas usar\u00e1n metada para mostrar categor\u00edas como Sugerencias, \u00daltimos, G\u00e9neros, y m\u00e1s. Si est\u00e1 desactivado, se mostrar\u00e1n como carpetas comunes.",
+ "ButtonSignInWithConnect": "Inicie con su cuenta de Emby Connect",
+ "HeaderNewServer": "Nuevo Servidor",
+ "LabelMaxChromecastBitrate": "Tasa maxima de bits para El Chromecast:",
+ "TabAppSettings": "Configuracion del App",
"TabPhotos": "Fotos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Bienvenidos a Emby",
"EmbyIntroMessage": "Con Emby usted puede transmitir videos, musica y fotos hacia su telefono inteligente, tabla u otros equipos desde su Servidor Emby.",
"ButtonSkip": "Omitir",
"TextConnectToServerManually": "Conectar al servidor manualmente",
- "ButtonSignInWithConnect": "Inicie con su cuenta de Emby Connect",
"ButtonConnect": "Conectar",
"LabelServerHost": "Servidor:",
"LabelServerHostHelp": "192.168.1.100 O https:\/\/miservidor.com",
"LabelServerPort": "Puerto:",
- "HeaderNewServer": "Nuevo Servidor",
"ButtonChangeServer": "Cambiar Servidor",
"HeaderConnectToServer": "Conectarse al servidor",
"OptionReportList": "Vista en Lista",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Exportar",
"HeaderColumns": "Columnas",
"ButtonReset": "Resetear",
+ "ButtonPurchase": "Comprar",
"OptionEnableExternalVideoPlayers": "Habilitar reproductores externos de video",
+ "LabelNativeExternalPlayersHelp": "Mostrar botones para reproducir contenido en reproductores externos.",
+ "LabelEnableItemPreviews": "Habilitar la vista previa de \u00edtems",
+ "LabelEnableItemPreviewsHelp": "Si se habilita, aparecer\u00e1n las vistas previas desliz\u00e1ndose al dar clic a los \u00edtems en ciertas pantallas.",
"ButtonUnlockGuide": "Desbloquear Gu\u00eda",
+ "ButtonManageServer": "Administrar Servidor",
"LabelEnableFullScreen": "Habilitar modo de pantalla completa",
"LabelEnableChromecastAc3Passthrough": "Habilitar transferencia directa de AC3 en Chromecast",
- "OptionSyncToSDCard": "Sincronizado a una tarjeta SD externa",
+ "LabelSyncPath": "Trayectoria para contenido sincronizado:",
"LabelEmail": "Email:",
"LabelUsername": "Nombre Usuario:",
"HeaderSignUp": "Registrarse",
"LabelPasswordConfirm": "Contrase\u00f1a (confirmar):",
"ButtonAddServer": "Agregar Servidor",
+ "ButtonShare": "Compartir",
+ "OptionAllowLinkSharing": "Permitir compartir medios en redes sociales.",
+ "OptionAllowLinkSharingHelp": "Solo son compartidas paginas web que contengan informaci\u00f3n sobre los medios. Los archivos de medios nunca son compartidos p\u00fablicamente. Son compartidos por un tiempo limitado y expiraran basados en las configuraciones para compartir de su servidor.",
+ "HeaderSharing": "Compartido",
"TabHomeScreen": "Pantalla de Inicio",
"HeaderDisplay": "Pantalla",
"HeaderNavigation": "Navegaci\u00f3n",
"LegendTheseSettingsShared": "Estas configuraciones son compartidas en todos los dispositivos",
+ "LabelRecordingPath": "Ruta para grabaciones:",
+ "LabelRecordingPathHelp": "Especifique una ubicaci\u00f3n personalizada para almacenar las grabaciones. Dejar en blanco para usar la configuraci\u00f3n por defecto.",
"OptionEnableAutomaticServerUpdates": "Habilitar actualizaciones autom\u00e1ticas del servidor",
"OptionOtherTrailers": "Incluir trailers de pel\u00edculas antiguas",
"HeaderOverview": "Resumen",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Agregar Dispositivo",
"HeaderAddDevice": "Agregar Dispositivo",
"HeaderExternalServices": "Servicios Externos",
- "LabelTunerIpAddress": "Direcci\u00f3n IP del Sintonizador:",
"TabExternalServices": "Servicios Externos",
"TabTuners": "Sintonizadores",
"HeaderGuideProviders": "Proveedores de Gu\u00edas",
"AddGuideProviderHelp": "Agregar una fuente para informaci\u00f3n de Gu\u00eda de TV",
"LabelZipCode": "C\u00f3digo Postal:",
- "GuideProviderSelectListings": "Elegir Listados",
- "GuideProviderLogin": "Iniciar Sesi\u00f3n",
"LabelLineup": "Programaci\u00f3n:",
"MessageTunerDeviceNotListed": "\u00bfSu sintonizador no se muestra? Intente instalar un proveedor de servicio externo para mas opciones de TV en Vivo.",
+ "OptionSyncToSDCard": "Sincronizado a una tarjeta SD externa",
+ "LabelTunerIpAddress": "Direcci\u00f3n IP del Sintonizador:",
+ "GuideProviderSelectListings": "Elegir Listados",
+ "GuideProviderLogin": "Iniciar Sesi\u00f3n",
"LabelImportOnlyFavoriteChannels": "Restringir a canales marcados como favoritos",
"ImportFavoriteChannelsHelp": "Si se habilita, solo los canales marcados como favoritos en el dispositivo sintonizador ser\u00e1n importados.",
"ButtonRepeat": "Repetir",
- "LabelEnableThisTuner": "Habilitar este sintonizador",
- "LabelEnableThisTunerHelp": "Quitar selecci\u00f3n para evitar importar canales de este dispositivo.",
- "HeaderLocked": "Bloqueado",
"HeaderUnidentified": "No Identificado",
"HeaderImagePrimary": "Principal",
"HeaderImageBackdrop": "Imagen de Fondo",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "Imagen de Usuario",
+ "LabelEnableThisTuner": "Habilitar este sintonizador",
+ "LabelEnableThisTunerHelp": "Quitar selecci\u00f3n para evitar importar canales de este dispositivo.",
+ "HeaderLocked": "Bloqueado",
"ButtonDisplaySettings": "Configuraci\u00f3n de pantalla",
"ButtonHomeScreenSettings": "Configuraci\u00f3n de pantalla de inicio",
"ButtonPlaybackSettings": "Configuraci\u00f3n de reproducci\u00f3n",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Elija el numero m\u00e1ximo de hilos a usar para transcodificar. Reduciendo el conteo de hilos disminuir\u00e1 el uso del cpu pero es posible que no convierta lo suficientemente r\u00e1pido para obtener una reproducci\u00f3n fluida.",
"OptionMax": "M\u00e1ximo",
"HeaderEmbyGuide": "Gu\u00eda de Emby",
- "LabelSyncPath": "Trayectoria para contenido sincronizado:",
"OptionSyncOnlyOnWifi": "Sincronizar \u00fanicamente por WiFi",
+ "OptionDisplayChannelsInline": "Mostrar canales alineado junto con mis vistas",
+ "OptionDisplayChannelsInlineHelp": "Al activarse, estos canales ser\u00e1n mostrados directamente junto con otras vistas. Si se deshabilitados, ser\u00e1n mostrados dentro de una vista independiente de Canales.",
"OptionSyncLosslessAudioOriginal": "Sincronizar audio \"lossless\" con su calidad original.",
"HeaderMetadata": "Metadatos",
"HeaderRecordingOptions": "Opciones de Grabaci\u00f3n",
- "ButtonShare": "Compartir",
"HeaderUpcomingForKids": "Pr\u00f3ximamente para Ni\u00f1os",
"HeaderSetupLiveTV": "Configurar TV en Vivo",
"LabelTunerType": "Tipo de sintonizador:",
"HelpMoreTunersCanBeAdded": "Se pueden agregar sintonizadores adicionales posteriormente en la secci\u00f3n de TV en Vivo.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Se pueden agregar proveedores de TV en Vivo posteriormente dentro de la secci\u00f3n de TV en Vivo.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Se necesita una cuenta Aficionado Emby activa para poder crear grabaciones automatizadas de series.",
"HeaderSetupTVGuide": "Configurar Gu\u00eda de TV",
"LabelDataProvider": "Proveedor de datos:",
"OptionSendRecordingsToAutoOrganize": "Habilitar Auto-Organizaci\u00f3n para nuevas grabaciones",
"OptionSendRecordingsToAutoOrganizeHelp": "Las nuevas grabaciones ser\u00e1n enviadas a la funci\u00f3n de Auto-Organizar e importadas a tu librer\u00eda de medios.",
"HeaderDefaultPadding": "Rellenado Predeterminado",
- "HeaderSubtitles": "Subt\u00edtulos",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Se pueden agregar proveedores de TV en Vivo posteriormente dentro de la secci\u00f3n de TV en Vivo.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lisis de video cuadro por cuadro",
"OptionEnableVideoFrameAnalysisHelp": "Extrae informaci\u00f3n detallada de los videos que puede ser empleada para hacer la transcodificaci\u00f3n lo m\u00e1s eficiente posible. Esto ocasionar\u00e1 que la exploraci\u00f3n de la biblioteca tome m\u00e1s tiempo.",
"LabelVideoFrameAnalysisLimit": "Limitar el an\u00e1lisis cuadro por cuadro a videos menores a:",
+ "HeaderBlockItemsWithNoRating": "Bloquear contenido sin clasificaci\u00f3n o con informaci\u00f3n de clasificaci\u00f3n desconocida:",
"LabelHardwareVideoDecoder": "Decodificador de video de hardware:",
- "LabelHardwareVideoDecoderHelp": "Available on supported systems only."
+ "LabelHardwareVideoDecoderHelp": "Disponible \u00fanicamente en sistemas soportados."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/es.json b/dashboard-ui/strings/html/es.json
index 2e760790ac..6d09c9ab6a 100644
--- a/dashboard-ui/strings/html/es.json
+++ b/dashboard-ui/strings/html/es.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Salir",
"LabelVisitCommunity": "Visitar la comunidad",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Est\u00e1ndar",
- "LabelApiDocumentation": "Documentaci\u00f3n API",
- "LabelDeveloperResources": "Recursos del Desarrollador",
"LabelBrowseLibrary": "Navegar biblioteca",
- "LabelConfigureServer": "Configurar Emby",
"LabelOpenLibraryViewer": "Abrir el visor de la biblioteca",
"LabelRestartServer": "Reiniciar el servidor",
"LabelShowLogWindow": "Mostrar la ventana del log",
"LabelPrevious": "Anterior",
"LabelFinish": "Terminar",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Siguiente",
"LabelYoureDone": "Ha Terminado!",
- "ButtonAddToCollection": "Agregar a la colecci\u00f3n",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Bienvenidos a Emby!",
+ "OptionRelease": "Release Oficial",
+ "OptionBeta": "Beta",
+ "OptionDev": "Desarrollo (inestable)",
"ThisWizardWillGuideYou": "Este asistente lo guiar\u00e1 en el proceso de instalaci\u00f3n. Para comenzar, seleccione su idioma preferido.",
"TellUsAboutYourself": "D\u00edganos acerca de usted",
- "ButtonQuickStartGuide": "Gu\u00eda de inicio r\u00e1pido",
"LabelYourFirstName": "Su primer nombre:",
"MoreUsersCanBeAddedLater": "M\u00e1s usuarios pueden agregarse m\u00e1s tarde en el panel de control.",
"UserProfilesIntro": "Emby incluye soporte interno para perfiles de usuarios, permitiendo que cada usuario tenga sus propios ajustes, estado de reproducci\u00f3n y control parental.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extraer imagenes de capitulos permitir\u00e1 a los usuarios ver escenas gr\u00e1ficas en la seleccion de men\u00fa. El proceso puede ser lento, cpu-intenso y puede requerir algunos gigabytes de espacio.",
"LabelEnableAutomaticPortMapping": "Habilitar asignaci\u00f3n de puertos autom\u00e1tico",
"LabelEnableAutomaticPortMappingHelp": "UPnP permite la configuraci\u00f3n del router para acceso externo de forma f\u00e1cil y autom\u00e1tica. Esto puede no funcionar en algunos modelos de routers.",
- "HeaderTermsOfService": "T\u00e9rminos de servicios de Emby",
- "MessagePleaseAcceptTermsOfService": "Por favor aceptar los terminos de servicios y politica de privacidad antes de continuar.",
- "OptionIAcceptTermsOfService": "Acepto los terminos de servicio",
- "ButtonPrivacyPolicy": "Politica de privacidad",
- "ButtonTermsOfService": "Terminos de servicios",
- "HeaderDeveloperOptions": "Recursos del Desarrollador",
- "OptionEnableWebClientResponseCache": "Habilitar almacenamiento de cach\u00e9 de respuestas del cliente web.",
- "OptionDisableForDevelopmentHelp": "Configure cuantas veces sea nesesario para propositos del desarrollo de cliente de la red.",
- "OptionEnableWebClientResourceMinification": "Habilitar minificaci\u00f3n de recursos para la aplicacion en linea",
- "LabelDashboardSourcePath": "Localizaci\u00f3n de la fuente del cliente web:",
- "LabelDashboardSourcePathHelp": "Si est\u00e1 ejecutando el servidor desde la fuente, especifique la ruta de acceso a la carpeta dashboard-ui. Todos los archivos del cliente web ser\u00e1n atendidos desde esta ruta.",
- "ButtonConvertMedia": "Convertir medios",
- "ButtonOrganize": "Organizar",
- "LinkedToEmbyConnect": "Vincular a Emby Connect",
- "HeaderSupporterBenefits": "Beneficios del partidario",
- "HeaderAddUser": "Agregar Usuario",
- "LabelAddConnectSupporterHelp": "Para agregar a un usuario que no est\u00e1 en el listado, usted tiene primero que conectar su cuenta con Emby Connect desde la p\u00e1gina de perfil del usuario.",
- "LabelPinCode": "C\u00f3digo PIN:",
- "OptionHideWatchedContentFromLatestMedia": "Esconder medios vistos de los medios m\u00e1s recientes",
- "HeaderSync": "Sincronizar",
"ButtonOk": "OK",
"ButtonCancel": "Cancelar",
- "ButtonExit": "Salir",
- "ButtonNew": "Nuevo",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Ruta",
- "CategorySync": "Sincronizar",
- "TabPlaylist": "Lista de reproducci\u00f3n",
- "HeaderEasyPinCode": "F\u00e1cil c\u00f3digo PIN:",
- "HeaderGrownupsOnly": "Adultos solamente!",
- "DividerOr": "-- y --",
- "HeaderInstalledServices": "Servicios Instalados",
- "HeaderAvailableServices": "Servicios Disponibles",
- "MessageNoServicesInstalled": "No hay servicios instalados.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Para acceder, por favor introduzca su f\u00e1cil c\u00f3digo PIN.",
- "KidsModeAdultInstruction": "Haga clic en el icono en la parte de abajo derecha para configurar o salir del modo de menores. Su codigo PIN es requerido.",
- "ButtonConfigurePinCode": "Configurar contrase\u00f1a",
- "HeaderAdultsReadHere": "Adultos Leer Aqui!",
- "RegisterWithPayPal": "Registrese con PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync requiere membres\u00eda de partidario",
- "HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba",
- "LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:",
- "LabelSyncTempPathHelp": "Especificar una carpeta personalizada para achivos en sincronizaci\u00f3n. Medios convertidos creados durante el proceso de sincronizaci\u00f3n ser\u00e1n guardados aqu\u00ed.",
- "LabelCustomCertificatePath": "Lugar del certificado personalizado:",
- "LabelCustomCertificatePathHelp": "Aplique su propio certificado ssl or archivo .pfx. Si lo omite el servidor crear\u00e1 un certificado auto-registrador.",
- "TitleNotifications": "Notificaciones",
- "ButtonDonateWithPayPal": "Done utilizando Paypal",
- "OptionDetectArchiveFilesAsMedia": "Detectar archivos come medios",
- "OptionDetectArchiveFilesAsMediaHelp": "Si es habilitado, archivos con extensiones .rar y .zip ser\u00e1n detectados como medios.",
- "LabelEnterConnectUserName": "Nombre de usuario o email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Habilite presentaciones de peliculas mejoradas",
- "LabelEnableEnhancedMoviesHelp": "Cuando est\u00e9 habilitado, las peliculas seran mostradas como folderes para incluir trailers, extras, elenco y equipo, y otros contenidos relacionados.",
- "HeaderSyncJobInfo": "Trabajo de Sync",
- "OptionReleaseDate": "Fecha de Lanzamiento",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Error",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Pistas de Audio",
- "ButtonPreviousTrack": "Pista anterior",
- "ButtonNextTrack": "Pista siguiente",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Peliculas",
- "FolderTypeMusic": "Musica",
- "FolderTypeAdultVideos": "Videos para adultos",
- "FolderTypePhotos": "Fotos",
- "FolderTypeMusicVideos": "Videos Musicales",
- "FolderTypeHomeVideos": "Videos caseros",
- "FolderTypeGames": "Juegos",
- "FolderTypeBooks": "Libros",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Heredado ",
- "LabelContentType": "Tipo de contenido:",
- "TitleScheduledTasks": "Programar una tarea",
"HeaderSetupLibrary": "Configurar biblioteca de medios",
"ButtonAddMediaFolder": "Agregar una carpeta de medios",
"LabelFolderType": "Tipo de carpeta:",
"ReferToMediaLibraryWiki": "Consultar el wiki de la biblioteca de medios",
"LabelCountry": "Pa\u00eds:",
"LabelLanguage": "Idioma:",
- "LabelTimeLimitHours": "Limite de tiempo (horas):",
- "ButtonJoinTheDevelopmentTeam": "Unace al equipo de desarrolladores",
"HeaderPreferredMetadataLanguage": "Idioma preferido para metadata",
"LabelSaveLocalMetadata": "Guardar im\u00e1genes y metadata en las carpetas de medios",
"LabelSaveLocalMetadataHelp": "Guardar im\u00e1genes y metadata directamente en las carpetas de medios, permitir\u00e1 colocarlas en un lugar donde se pueden editar f\u00e1cilmente.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferencias",
"TabPassword": "Contrase\u00f1a",
"TabLibraryAccess": "Acceso a biblioteca",
- "TabAccess": "Acceso",
"TabImage": "imagen",
"TabProfile": "Perfil",
- "TabMetadata": "Metadatos",
- "TabImages": "Im\u00e1genes",
- "TabNotifications": "Notificaciones",
- "TabCollectionTitles": "T\u00edtulos",
- "HeaderDeviceAccess": "Acceso de Equipo",
- "OptionEnableAccessFromAllDevices": "Habilitar acceso de cualquier equipo",
- "OptionEnableAccessToAllChannels": "Habilitar acceso a todos los canales",
- "OptionEnableAccessToAllLibraries": "Habilitar acceso a todas las bibliotecas",
- "DeviceAccessHelp": "Esto solo aplica a equipos que puedan ser singularmente identificados y no prevendr\u00e1 acceso al navegador. Filtrar el acceso de equipos del usuario les prevendr\u00e1 que usen nuevos equipos hasta que sean aprobados aqui.",
"LabelDisplayMissingEpisodesWithinSeasons": "Mostar episodios no disponibles en temporadas",
"LabelUnairedMissingEpisodesWithinSeasons": "Mostrar episodios a\u00fan no emitidos en temporadas",
"HeaderVideoPlaybackSettings": "Ajustes de Reproducci\u00f3n de Video",
- "HeaderPlaybackSettings": "Ajustes de reproducci\u00f3n",
"LabelAudioLanguagePreference": "Preferencia de idioma de audio",
"LabelSubtitleLanguagePreference": "Preferencia de idioma de subtitulos",
- "OptionDefaultSubtitles": "Por defecto",
- "OptionOnlyForcedSubtitles": "S\u00f3lo subt\u00edtulos forzados",
- "OptionAlwaysPlaySubtitles": "Mostrar siempre subt\u00edtulos",
- "OptionNoSubtitles": "Sin subt\u00edtulos",
- "OptionDefaultSubtitlesHelp": "Los subt\u00edtulos que concuerden con la preferencia de idioma se cargar\u00e1n cuando el audio est\u00e9 en un idioma extranjero.",
- "OptionOnlyForcedSubtitlesHelp": "S\u00f3lo se cargar\u00e1n los subt\u00edtulos marcados como forzados.",
- "OptionAlwaysPlaySubtitlesHelp": "Los subt\u00edtulos que concuerden con la preferencia de idioma se cargar\u00e1n independientemente del idioma de audio.",
- "OptionNoSubtitlesHelp": "Los subt\u00edtulos no se cargar\u00e1n de forma predeterminada.",
"TabProfiles": "Perfiles",
"TabSecurity": "Seguridad",
"ButtonAddUser": "Agregar Usuario",
- "ButtonAddLocalUser": "Agregar usuario local",
- "ButtonInviteUser": "Invitar usuario",
"ButtonSave": "Grabar",
"ButtonResetPassword": "Reiniciar Contrase\u00f1a",
"LabelNewPassword": "Nueva Contrase\u00f1a:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "M\u00e1xima clasificaci\u00f3n permitida",
"MaxParentalRatingHelp": "El contenido con clasificaci\u00f3n parental superior se ocultar\u00e1 para este usuario.",
"LibraryAccessHelp": "Seleccione las carpetas de medios para compartir con este usuario. Los administradores podr\u00e1n editar todas las carpetas usando el gestor de metadata.",
- "ChannelAccessHelp": "Seleccione los canales para compartir con este usuario. Los administradores podr\u00e1n editar todos los canales mediante el gestor de metadatos.",
"ButtonDeleteImage": "Borrar imagen",
- "LabelSelectUsers": "Seleccionar usuarios:",
"ButtonUpload": "Subir",
"HeaderUploadNewImage": "Subir nueva imagen",
"LabelDropImageHere": "Poner imagen aqui",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nada aqu\u00ed.",
"MessagePleaseEnsureInternetMetadata": "Por favor aseg\u00farese que la descarga de metadata de internet esta habilitada",
"TabSuggested": "Sugerencia",
- "TabSuggestions": "Sugerencias",
"TabLatest": "Novedades",
"TabUpcoming": "Pr\u00f3ximos",
"TabShows": "Programas",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascendente",
"OptionDescending": "Descendente",
"OptionRuntime": "Tiempo",
+ "OptionReleaseDate": "Fecha de Lanzamiento",
"OptionPlayCount": "N\u00famero de reproducc.",
"OptionDatePlayed": "Fecha de reproducci\u00f3n",
"OptionDateAdded": "A\u00f1adido el",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nombre de pista",
"OptionCommunityRating": "Valoraci\u00f3n comunidad",
"OptionNameSort": "Nombre",
- "OptionFolderSort": "Carpetas",
"OptionBudget": "Presupuesto",
"OptionRevenue": "Recaudaci\u00f3n",
"OptionPoster": "Poster",
- "OptionPosterCard": "Cartelera",
- "OptionBackdrop": "Imagen de fondo",
"OptionTimeline": "L\u00ednea de tiempo",
- "OptionThumb": "Miniatura",
- "OptionThumbCard": "Cartel postal",
- "OptionBanner": "Banner",
"OptionCriticRating": "Valoraci\u00f3n cr\u00edtica",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Se puede continuar",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Programar tarea",
"TabMyPlugins": "Mis Plugins",
"TabCatalog": "Cat\u00e1logo",
- "TitlePlugins": "Complementos",
"HeaderAutomaticUpdates": "Actualizaciones autom\u00e1ticas",
"HeaderNowPlaying": "Reproduciendo ahora",
"HeaderLatestAlbums": "\u00dcltimos Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Reproducido recientemente",
"HeaderFrequentlyPlayed": "Reproducido frequentemente",
"DevBuildWarning": "Las actualizaciones en desarrollo no est\u00e1n convenientemente probadas. La aplicaci\u00f3n se puede bloquear y caracter\u00edsticas completas pueden no funcionar del todo.",
+ "OptionThumb": "Miniatura",
+ "OptionBanner": "Banner",
"LabelVideoType": "Tipo de video",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Caracter\u00edsticas",
- "LabelService": "Servicio:",
- "LabelStatus": "Estado:",
- "LabelVersion": "Versi\u00f3n:",
- "LabelLastResult": "\u00daltimo resultado:",
"OptionHasSubtitles": "Subt\u00edtulos",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Banda sonora",
@@ -268,8 +153,6 @@
"TabMovies": "Pel\u00edculas",
"TabStudios": "Estudios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artistas:",
- "LabelArtistsHelp": "Separar multiples usando ;",
"HeaderLatestMovies": "\u00daltimas pel\u00edculas",
"HeaderLatestTrailers": "\u00daltimos trailers",
"OptionHasSpecialFeatures": "Caracter\u00edsticas especiales",
@@ -290,32 +173,24 @@
"OptionFriday": "Viernes",
"OptionSaturday": "S\u00e1bado",
"HeaderManagement": "administraci\u00f3n",
- "LabelManagement": "administraci\u00f3n:",
"OptionMissingImdbId": "Falta IMDb Id",
"OptionMissingTvdbId": "Falta TheTVDB Id",
"OptionMissingOverview": "Falta argumento",
"OptionFileMetadataYearMismatch": "Archivo\/Metadata a\u00f1os no coinciden",
"TabGeneral": "General",
"TitleSupport": "Soporte",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "Acerca de",
"TabSupporterKey": "Clave de Seguidor",
"TabBecomeSupporter": "Hazte Seguidor",
- "ProjectHasCommunity": "Emby tiene una pr\u00f3spera comunidad de usuarios y contribuidores.",
"CheckoutKnowledgeBase": "Vea nuestra base de conocimientos que le ayudar\u00e1 a obtener lo mejor de Emby.",
"SearchKnowledgeBase": "Buscar en la base de conocimiento",
"VisitTheCommunity": "Visitar la comunidad",
- "VisitProjectWebsite": "Visite la pagina de Emby",
- "VisitProjectWebsiteLong": "Visite la p\u00e1gina Emby para obtener lo m\u00e1s reciente y mantenerse al d\u00eda con el blog de desarrolladores.",
"OptionHideUser": "Ocultar este usuario en las pantallas de inicio de sesi\u00f3n",
- "OptionHideUserFromLoginHelp": "\u00datil para privado o cuentas de administradores escondidos. El usuario tendr\u00e1 que acceder entrando su nombre de usuario y contrase\u00f1a manualmente.",
"OptionDisableUser": "Deshabilitar este usuario",
"OptionDisableUserHelp": "Si est\u00e1 deshabilitado, el servidor no aceptar\u00e1 conexiones de este usuario. Si existen conexiones de este usuario, finalizar\u00e1n inmediatamente.",
"HeaderAdvancedControl": "Control avanzado",
"LabelName": "Nombre:",
- "ButtonHelp": "Ayuda",
"OptionAllowUserToManageServer": "Permite a este usuario administrar el servidor",
"HeaderFeatureAccess": "Permisos de acceso",
"OptionAllowMediaPlayback": "Permitir la reproducci\u00f3n de medios",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Permitir la supresi\u00f3n de medios",
"OptionAllowManageLiveTv": "Habilitar la administraci\u00f3n de grabaci\u00f3n de TV en vivo",
"OptionAllowRemoteControlOthers": "Habilitar el control remote de otros usuarios",
- "OptionAllowRemoteSharedDevices": "Habilitar el control remote de otros equipos compartidos",
- "OptionAllowRemoteSharedDevicesHelp": "Los equipos DLNA son considerados compartidos hasta que un usuario empiece a controlarlo.",
- "OptionAllowLinkSharing": "Permitir compartir los medios en redes sociales",
- "OptionAllowLinkSharingHelp": "Solo paginas de web que contengan informaci\u00f3n de los medios ser\u00e1n compartidos. Los medios nunca son compartidos p\u00fablicamente. Medios compartidos tienen un l\u00edmite de tiempo y expirar\u00e1 basado en su configuraci\u00f3n de compartir en el servidor.",
- "HeaderSharing": "Compartir",
- "HeaderRemoteControl": "Control Remoto",
"OptionMissingTmdbId": "Falta Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Seleccionar",
"ButtonGroupVersions": "Versiones de Grupo",
"PismoMessage": "Usando Pismo File Mount a trav\u00e9s de una licencia donada.",
- "TangibleSoftwareMessage": "Utilizamos convertidores Java\/C# de Tangible Solutions a trav\u00e9s de una licencia donada.",
- "HeaderCredits": "Cr\u00e9ditos",
"PleaseSupportOtherProduces": "Por favor apoye otros productos gratuitos que utilizamos:",
"VersionNumber": "Versi\u00f3n {0}",
"TabPaths": "Ruta",
"TabServer": "Servidor",
"TabTranscoding": "Transcodificaci\u00f3n",
"TitleAdvanced": "Avanzado",
- "OptionRelease": "Release Oficial",
- "OptionBeta": "Beta",
- "OptionDev": "Desarrollo (inestable)",
"LabelAllowServerAutoRestart": "Permitir al servidor reiniciarse autom\u00e1ticamente para aplicar las actualizaciones",
"LabelAllowServerAutoRestartHelp": "El servidor s\u00f3lo se reiniciar\u00e1 durante periodos de reposo, cuando no hayan usuarios activos.",
"LabelEnableDebugLogging": "Habilitar entrada de debug",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Especificar las rutas personalizadas que desee. D\u00e9jelo en blanco para usar las rutas por defecto.",
"LabelCachePath": "Ruta del cach\u00e9:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Ruta de im\u00e1genes:",
"LabelImagesByNamePathHelp": "Especifique una localizaci\u00f3n personalizada para bajar imagenes de actor, genero y estudio.",
"LabelMetadataPath": "Ruta de Metadata:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodios",
"OptionOtherVideos": "Otros v\u00eddeos",
"TitleMetadata": "Metadatos",
- "LabelAutomaticUpdates": "Habilite actualizaciones automaticas",
"LabelAutomaticUpdatesTmdb": "Activar actualizaciones autom\u00e1ticas desde TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Activar actualizaciones autom\u00e1ticas desde TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Clave personal de API:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Idioma preferido visualizado",
"ButtonAutoScroll": "Auto-desplazamiento",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "No se necesitan contrase\u00f1as al iniciar sesi\u00f3n desde localhost.",
"TabGuide": "Gu\u00eda",
"TabChannels": "Canales",
- "TabCollections": "Colecciones",
"HeaderChannels": "Canales",
"TabRecordings": "Grabaciones",
"TabScheduled": "Programado",
"TabSeries": "Series",
- "TabFavorites": "Favoritos",
- "TabMyLibrary": "Mi biblioteca",
"ButtonCancelRecording": "Cancelar grabaci\u00f3n",
"HeaderPrePostPadding": "Pre\/post grabaci\u00f3n extra",
"LabelPrePaddingMinutes": "Minutos previos extras:",
@@ -416,13 +272,10 @@
"TabStatus": "Estado",
"TabSettings": "Opciones",
"ButtonRefreshGuideData": "Actualizar datos de la gu\u00eda",
- "ButtonRefresh": "Refrescar",
- "ButtonAdvancedRefresh": "Actualizar Manualmente",
"OptionPriority": "Prioridad",
"OptionRecordOnAllChannels": "Grabar en cualquier canal",
"OptionRecordAnytime": "Grabar a cualquier hora",
"OptionRecordOnlyNewEpisodes": "Grabar s\u00f3lo nuevos episodios",
- "HeaderRepeatingOptions": "Opciones Repetitivas",
"HeaderDays": "D\u00edas",
"HeaderActiveRecordings": "Grabaciones activas",
"HeaderLatestRecordings": "\u00daltimas grabaciones",
@@ -431,17 +284,16 @@
"ButtonEdit": "Editar",
"ButtonRecord": "Grabar",
"ButtonDelete": "Borrar",
- "ButtonRemove": "Quitar",
"OptionRecordSeries": "Grabar serie",
"HeaderDetails": "Detalles",
+ "OptionFolderSort": "Carpetas",
+ "OptionBackdrop": "Imagen de fondo",
"TitleLiveTV": "Tv en vivo",
"LabelNumberOfGuideDays": "N\u00famero de d\u00edas de descarga de la gu\u00eda.",
"LabelNumberOfGuideDaysHelp": "Descargar m\u00e1s d\u00edas de la gu\u00eda ofrece la posibilidad de programar grabaciones con mayor antelaci\u00f3n y ver m\u00e1s listas, pero tambi\u00e9n tarda m\u00e1s en descargarse. Auto elegir\u00e1 en funci\u00f3n del n\u00famero de canales.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Servicios",
"LiveTvPluginRequired": "El servicio de TV en vivo es necesario para poder continuar.",
"LiveTvPluginRequiredHelp": "Instale uno de los plugins disponibles, como Next Pvr o ServerVmc.",
- "LabelCustomizeOptionsPerMediaType": "Personalizar por tipo de medio:",
"OptionDownloadThumbImage": "Miniatura",
"OptionDownloadMenuImage": "Men\u00fa",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Principal",
"HeaderFetchImages": "Buscar im\u00e1genes",
"HeaderImageSettings": "Opciones de im\u00e1gen",
- "TabOther": "Otros",
"LabelMaxBackdropsPerItem": "M\u00e1ximo n\u00famero de im\u00e1genes de fondo por \u00edtem:",
"LabelMaxScreenshotsPerItem": "M\u00e1ximo n\u00famero de capturas de pantalla por \u00edtem:",
"LabelMinBackdropDownloadWidth": "Anchura m\u00ednima de descarga de im\u00e1genes de fondo:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Reparto y equipo t\u00e9cnico",
"HeaderAdditionalParts": "Partes adicionales",
"ButtonSplitVersionsApart": "Dividir versiones aparte",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Falta",
"LabelOffline": "Apagado",
"PathSubstitutionHelp": "Las rutas alternativas se utilizan para mapear una ruta en el servidor a la que los clientes puedan acceder. El permitir que los clientes se conecten directamente a trav\u00e9s de la red y puedan reproducir los medios directamente, evita utilizar recursos del servidor para la transcodificaci\u00f3n y el stream,",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "M\u00e1xima calidad",
"OptionEnableDebugTranscodingLogging": "Activar el registro de depuraci\u00f3n del transcodificador",
"OptionEnableDebugTranscodingLoggingHelp": "Esto crear\u00e1 archivos de registro muy grandes y s\u00f3lo se recomienda cuando sea necesario para solucionar problemas.",
+ "ButtonNew": "Nuevo",
+ "TabMetadata": "Metadatos",
+ "TabImages": "Im\u00e1genes",
+ "TabCollectionTitles": "T\u00edtulos",
+ "ButtonSearch": "Buscar",
+ "ButtonRemove": "Quitar",
"EditCollectionItemsHelp": "Agregar o quitar pel\u00edculas, series, discos, libros o juegos que desee agrupar dentro de esta colecci\u00f3n.",
"HeaderAddTitles": "A\u00f1adir T\u00edtulos",
"LabelEnableDlnaPlayTo": "Actvar la reproducci\u00f3n en DLNAi",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Rutas del sistema",
"LinkCommunity": "Comunidad",
"LinkGithub": "Github",
- "LinkApi": "API",
"LinkApiDocumentation": "Documentaci\u00f3n API",
"LabelFriendlyServerName": "Nombre informal del servidor:",
"LabelFriendlyServerNameHelp": "Este nombre se podr\u00e1 utilizar para identificar este servidor. Si se deja en blanco se usar\u00e1 el nombre del ordenador.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "Nueva colecci\u00f3n",
- "ButtonSubmit": "Enviar",
"ButtonCreate": "Crear",
- "LabelCustomCss": "css modificado:",
- "LabelCustomCssHelp": "Aplique su propio css modificado a la interfaz de la web.",
- "LabelLocalHttpServerPortNumber": "Numero local de puerto de http:",
- "LabelLocalHttpServerPortNumberHelp": "N\u00famero de puerto al que el servidor de http de Emby debe de ser enlazado.",
- "LabelPublicHttpPort": "N\u00famero de puerto p\u00fablico de http:",
- "LabelPublicHttpPortHelp": "El n\u00famero de puerto p\u00fablico que debe ser enlazado al puerto local http:",
- "LabelPublicHttpsPort": "N\u00famero de puerto p\u00fablico de https:",
- "LabelPublicHttpsPortHelp": "El n\u00famero de puerto p\u00fablico que debe ser enlazado al puerto local https:",
- "LabelEnableHttps": "Reportar el https como una direccion externa",
- "LabelEnableHttpsHelp": "Si es habilitado, el servidor reportara un enlaze https a los clientes como una direccion externa.",
- "LabelHttpsPort": "N\u00famero de puerto local de https:",
- "LabelHttpsPortHelp": "N\u00famero de puerto al que el servidor de tcp de Emby debe de ser enlazado.",
"LabelWebSocketPortNumber": "N\u00famero de puerto WebSocket:",
- "LabelEnableAutomaticPortMap": "Habilitar asignaci\u00f3n de puertos autom\u00e1tico",
- "LabelEnableAutomaticPortMapHelp": "UPnP permite la configuraci\u00f3n del router para acceso externo de forma f\u00e1cil y autom\u00e1tica. Esto puede no funcionar en algunos modelos de routers.",
"LabelExternalDDNS": "Direccion externa del WAN:",
"LabelExternalDDNSHelp": "Ponga aqui su DNS dinamico si tiene uno. las aplicaciones de Emby lo usar\u00e1n para conectarse remotamente. Deje en blanco para detecci\u00f3n autom\u00e1tica.",
"TabResume": "Continuar",
@@ -591,8 +433,12 @@
"HeaderProgram": "Programa",
"HeaderClients": "Clientes",
"LabelCompleted": "Completado",
+ "LabelFailed": "Error",
"LabelSkipped": "Omitido",
"HeaderEpisodeOrganization": "Organizaci\u00f3n de episodios",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "N\u00famero episodio final:",
"LabelEndingEpisodeNumberHelp": "S\u00f3lo requerido para archivos multi-episodio",
"HeaderSupportTheTeam": "Apoye al equipo de Emby",
@@ -627,16 +473,13 @@
"OptionMove": "Mover",
"LabelTransferMethodHelp": "Copiar o mover archivos desde la carpeta de inspecci\u00f3n",
"HeaderLatestNews": "Ultimas noticias",
- "HeaderHelpImproveProject": "Ayude a mejorar a Emby",
"HeaderRunningTasks": "Tareas en ejecuci\u00f3n",
"HeaderActiveDevices": "Dispositivos activos",
"HeaderPendingInstallations": "Instalaciones pendientes",
- "HeaderServerInformation": "Informaci\u00f3n del servidor",
"ButtonRestartNow": "Reiniciar ahora",
"ButtonRestart": "Reiniciar",
"ButtonShutdown": "Apagar",
"ButtonUpdateNow": "Actualizar ahora",
- "TabHosting": "Servidor",
"PleaseUpdateManually": "Por favor cierre el servidor y actualice manualmente.",
"NewServerVersionAvailable": "Una nueva versi\u00f3n de Emby est\u00e1 disponible!",
"ServerUpToDate": "El Servidor Emby est\u00e1 actualizado",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determina la duraci\u00f3n en segundos entre los mensajes en vivo del servidor .",
"LabelDefaultUser": "Usuario por defecto:",
"LabelDefaultUserHelp": "Determina de q\u00fae usuario se utilizar\u00e1 su biblioteca de medios para mostrarla por defecto en los dipositivos conectados. Esto puede cambiarse para cada dispositivo mediante el uso de perfiles.",
+ "HeaderPlaybackSettings": "Ajustes de reproducci\u00f3n",
"TitleDlna": "DLNA",
- "TitleChannels": "Canales",
"HeaderServerSettings": "Ajustes del Servidor",
"LabelWeatherDisplayLocation": "Lugar del que mostar el tiempo:",
"LabelWeatherDisplayLocationHelp": "C\u00f3digo postal USA \/ Ciudad, Estado, Pa\u00eds \/ Ciudad, Pa\u00eds",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Cuando est\u00e1 desactivado los clientes saldr\u00e1n en la pantalla de inicio para seleccionarlos visualmente.",
"OptionOtherApps": "Otras aplicaciones",
"OptionMobileApps": "Aplicaciones m\u00f3viles",
+ "TabNotifications": "Notificaciones",
"HeaderNotificationList": "Haga click en una notificaci\u00f3n para configurar sus opciones de env\u00edo.",
+ "LabelNotificationEnabled": "Activar esta notificaci\u00f3n",
+ "NotificationOptionVideoPlayback": "Reproduccion de video a iniciado",
+ "NotificationOptionAudioPlayback": "Reproduccion de audio a iniciado",
+ "NotificationOptionGamePlayback": "Reproduccion de video juego a iniciado",
+ "NotificationOptionNewLibraryContent": "Nuevo contenido a\u00f1adido",
+ "NotificationOptionServerRestartRequired": "Se requiere el reinicio del servidor",
+ "LabelMonitorUsers": "Supervisar la actividad de:",
+ "LabelSendNotificationToUsers": "Enviar la notificaci\u00f3n a:",
+ "LabelUseNotificationServices": "Usar los siguientes servicios:",
"NotificationOptionApplicationUpdateAvailable": "Disponible actualizaci\u00f3n de la aplicaci\u00f3n",
"NotificationOptionApplicationUpdateInstalled": "Se ha instalado la actualizaci\u00f3n de la aplicaci\u00f3n",
"NotificationOptionPluginUpdateInstalled": "Se ha instalado la actualizaci\u00f3n del plugin",
"NotificationOptionPluginInstalled": "Plugin instalado",
"NotificationOptionPluginUninstalled": "Plugin desinstalado",
- "NotificationOptionVideoPlayback": "Reproduccion de video a iniciado",
- "NotificationOptionAudioPlayback": "Reproduccion de audio a iniciado",
- "NotificationOptionGamePlayback": "Reproduccion de video juego a iniciado",
- "NotificationOptionVideoPlaybackStopped": "Reproducci\u00f3n de video detenida",
- "NotificationOptionAudioPlaybackStopped": "Reproducci\u00f3n de audio detenida",
- "NotificationOptionGamePlaybackStopped": "Reproducci\u00f3n de juego detenida",
"NotificationOptionTaskFailed": "La tarea programada ha fallado",
"NotificationOptionInstallationFailed": "Fallo en la instalaci\u00f3n",
- "NotificationOptionNewLibraryContent": "Nuevo contenido a\u00f1adido",
- "NotificationOptionNewLibraryContentMultiple": "Nuevo contenido a\u00f1adido (multiple)",
- "NotificationOptionCameraImageUploaded": "Imagen de camara se a carcado",
- "NotificationOptionUserLockedOut": "Usuario bloqueado",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Se requiere el reinicio del servidor",
- "LabelNotificationEnabled": "Activar esta notificaci\u00f3n",
- "LabelMonitorUsers": "Supervisar la actividad de:",
- "LabelSendNotificationToUsers": "Enviar la notificaci\u00f3n a:",
- "LabelUseNotificationServices": "Usar los siguientes servicios:",
"CategoryUser": "Usuario",
"CategorySystem": "Sistema",
- "CategoryApplication": "Aplicaci\u00f3n",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "T\u00edtulo del mensaje:",
"LabelAvailableTokens": "Tokens disponibles:",
"AdditionalNotificationServices": "Visite el cat\u00e1logo de plugins para instalar servicios de notificaci\u00f3n adicionales.",
+ "LabelSelectUsers": "Seleccionar usuarios:",
"OptionAllUsers": "Todos los usuarios",
"OptionAdminUsers": "Administradores",
"OptionCustomUsers": "A medida",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Derecha",
"ButtonBack": "Atr\u00e1s",
"ButtonInfo": "Info",
- "ButtonOsd": "Visualizaci\u00f3n en pantalla",
"ButtonPageUp": "P\u00e1gina arriba",
"ButtonPageDown": "P\u00e1gina abajo",
"PageAbbreviation": "PG",
"ButtonHome": "Inicio",
- "ButtonSearch": "Buscar",
"ButtonSettings": "Opciones",
"ButtonTakeScreenshot": "Captura de pantalla",
"ButtonLetterUp": "Letter arriba",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Reproduciendo ahora",
"TabNavigation": "Navegaci\u00f3n",
- "TabControls": "Controles",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Escenas",
"ButtonSubtitles": "Subt\u00edtulos",
+ "ButtonAudioTracks": "Pistas de Audio",
+ "ButtonPreviousTrack": "Pista anterior",
+ "ButtonNextTrack": "Pista siguiente",
"ButtonStop": "Detener",
"ButtonPause": "Pausa",
- "ButtonNext": "Siguiente",
- "ButtonPrevious": "Anterior",
"LabelGroupMoviesIntoCollections": "Agrupar pel\u00edculas en colecciones",
"LabelGroupMoviesIntoCollectionsHelp": "Cuando se muestran las listas de pel\u00edculas, las pel\u00edculas pertenecientes a una colecci\u00f3n se mostrar\u00e1n como un elemento agrupado.",
+ "CategoryApplication": "Aplicaci\u00f3n",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Error en plugin",
+ "TabControls": "Controles",
"ButtonVolumeUp": "Subir volumen",
"ButtonVolumeDown": "Bajar volumen",
"ButtonMute": "Silencio",
"HeaderLatestMedia": "\u00daltimos medios",
+ "OptionNoSubtitles": "Sin subt\u00edtulos",
"OptionSpecialFeatures": "Caracter\u00edsticas especiales",
+ "ChannelAccessHelp": "Seleccione los canales para compartir con este usuario. Los administradores podr\u00e1n editar todos los canales mediante el gestor de metadatos.",
"HeaderCollections": "Colecciones",
"LabelProfileCodecsHelp": "Separados por comas. Esto se puede dejar vac\u00edo para aplicar a todos los codecs.",
"LabelProfileContainersHelp": "Separados por comas. Esto se puede dejar vac\u00edo para aplicar a todos los contenedores.",
"HeaderResponseProfile": "Perfil de respuesta",
"LabelType": "Tipo:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Contenedor:",
"LabelProfileVideoCodecs": "Codecs de video:",
"LabelProfileAudioCodecs": "Codecs de audio:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Si est\u00e1 habilitado, todos los v\u00eddeos est\u00e1n representados en DIDL como \"object.item.videoItem\" en lugar de un tipo m\u00e1s espec\u00edfico, como por ejemplo \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Tipos de medio soportados:",
"TabIdentification": "Identificaci\u00f3n",
- "HeaderIdentification": "Identificaci\u00f3n",
"TabDirectPlay": "Reproducci\u00f3n directa",
"TabContainers": "Contenedores",
"TabCodecs": "C\u00f3decs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Bitrate m\u00e1ximo:",
"LabelMaxBitrateHelp": "Especificar una tasa de bits m\u00e1xima en entornos de ancho de banda limitado, o si el dispositivo impone su propio l\u00edmite.",
- "LabelMaxStreamingBitrate": "Bitrate m\u00e1ximo:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Bitrate de reproducci\u00f3n Chromecast",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignorar las solicitudes de intervalo de bytes de transcodificaci\u00f3n",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Si est\u00e1 activado, estas solicitudes ser\u00e1n atendidas pero ignorar\u00e1n el encabezado de intervalo de bytes.",
"LabelFriendlyName": "Nombre amigable",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Esto es necesario para algunos dispositivos que no buscan el tiempo muy bien.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Descarga subt\u00edtulos para:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Omitir si el video ya contiene subt\u00edtulos gr\u00e1ficos",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subt\u00edtulos",
- "TabChapters": "Cap\u00edtulos",
- "HeaderDownloadChaptersFor": "Descarga nombres de los cap\u00edtulos de:",
"LabelOpenSubtitlesUsername": "Usuario de Open Subtitles:",
"LabelOpenSubtitlesPassword": "Contrase\u00f1a de Open Subtitles:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "\nReproducir pista de audio predeterminado, independientemente del idioma",
- "LabelSubtitlePlaybackMode": "Modo de Subt\u00edtulo:",
"LabelDownloadLanguages": "Idiomas de descarga:",
"ButtonRegister": "Registrar",
+ "LabelSkipIfGraphicalSubsPresent": "Omitir si el video ya contiene subt\u00edtulos gr\u00e1ficos",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Omitir si la pista de audio por defecto coincide con el idioma de descarga",
"LabelSkipIfAudioTrackPresentHelp": "Desactive esta opci\u00f3n para asegurar que todos los v\u00eddeos tienen subt\u00edtulos, sin importar el idioma de audio.",
+ "NotificationOptionNewLibraryContentMultiple": "Nuevo contenido a\u00f1adido (multiple)",
"HeaderSendMessage": "Enviar mensaje",
"ButtonSend": "Enviar",
"LabelMessageText": "Mensaje de texto:",
+ "LabelService": "Servicio:",
+ "LabelStatus": "Estado:",
+ "LabelVersion": "Versi\u00f3n:",
+ "LabelLastResult": "\u00daltimo resultado:",
+ "ButtonOsd": "Visualizaci\u00f3n en pantalla",
"MessageNoAvailablePlugins": "No hay plugins disponibles.",
"LabelDisplayPluginsFor": "Mostrar plugins para:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Entrar texto",
"LabelTypeText": "Texto",
+ "OptionDefaultSubtitles": "Por defecto",
+ "OptionOnlyForcedSubtitles": "S\u00f3lo subt\u00edtulos forzados",
+ "OptionAlwaysPlaySubtitles": "Mostrar siempre subt\u00edtulos",
+ "OptionDefaultSubtitlesHelp": "Los subt\u00edtulos que concuerden con la preferencia de idioma se cargar\u00e1n cuando el audio est\u00e9 en un idioma extranjero.",
+ "OptionOnlyForcedSubtitlesHelp": "S\u00f3lo se cargar\u00e1n los subt\u00edtulos marcados como forzados.",
+ "OptionAlwaysPlaySubtitlesHelp": "Los subt\u00edtulos que concuerden con la preferencia de idioma se cargar\u00e1n independientemente del idioma de audio.",
+ "OptionNoSubtitlesHelp": "Los subt\u00edtulos no se cargar\u00e1n de forma predeterminada.",
+ "TangibleSoftwareMessage": "Utilizamos convertidores Java\/C# de Tangible Solutions a trav\u00e9s de una licencia donada.",
+ "HeaderCredits": "Cr\u00e9ditos",
+ "TabCollections": "Colecciones",
+ "TabFavorites": "Favoritos",
+ "TabMyLibrary": "Mi biblioteca",
+ "LabelCustomizeOptionsPerMediaType": "Personalizar por tipo de medio:",
+ "LabelPlayDefaultAudioTrack": "\nReproducir pista de audio predeterminado, independientemente del idioma",
+ "LabelSubtitlePlaybackMode": "Modo de Subt\u00edtulo:",
+ "TabOther": "Otros",
+ "NotificationOptionVideoPlaybackStopped": "Reproducci\u00f3n de video detenida",
+ "NotificationOptionAudioPlaybackStopped": "Reproducci\u00f3n de audio detenida",
+ "NotificationOptionGamePlaybackStopped": "Reproducci\u00f3n de juego detenida",
"HeaderSearchForSubtitles": "B\u00fasqueda de Subt\u00edtulos",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No se han encontrado resultados en la b\u00fasqueda.",
"TabDisplay": "Pantalla",
"TabLanguages": "Idiomas",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Habilitar temas musicales",
"LabelEnableBackdrops": "Habilitar im\u00e1genes de fondo",
"LabelEnableThemeSongsHelp": "Si est\u00e1 habilitado, se reproducir\u00e1n temas musicales de fondo mientras navega por la biblioteca.",
"LabelEnableBackdropsHelp": "Si est\u00e1 habilitado, se mostrar\u00e1n im\u00e1genes de fondo en algunas p\u00e1ginas mientras navega por la biblioteca.",
- "HeaderHomePage": "P\u00e1gina de inicio",
- "HeaderSettingsForThisDevice": "Opciones para este dispositivo",
"OptionAuto": "Auto",
"OptionYes": "Si",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Continuar",
"OptionLatestMedia": "\u00daltimos medios",
- "OptionLatestChannelMedia": "Ultimos elementos de canales",
- "HeaderLatestChannelItems": "Ultimos elementos de canales",
"OptionNone": "Nada",
"HeaderLiveTv": "TV en vivo",
"HeaderReports": "Informes",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Cargando contenidos del canal...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Marcar como le\u00eddo",
"OptionDefaultSort": "Por defecto",
"OptionCommunityMostWatchedSort": "M\u00e1s visto",
"TabNextUp": "Siguiendo",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No hay sugerencias de pel\u00edculas disponibles. Comience ver y calificar sus pel\u00edculas y vuelva para ver las recomendaciones.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Cerrar",
+ "HeaderConfirmDeletion": "Confirmar borrado",
+ "HeaderHomePage": "P\u00e1gina de inicio",
+ "HeaderSettingsForThisDevice": "Opciones para este dispositivo",
"ButtonDismiss": "Descartar",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Canales",
"LabelChannelStreamQuality": "Calidad preferida para la transmisi\u00f3n por Internet:",
"LabelChannelStreamQualityHelp": "En un entorno de bajo ancho de banda, limitar la calidad puede ayudar a asegurar una experiencia de streaming suave.",
"OptionBestAvailableStreamQuality": "Mejor disponible",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Borrar contenido despues de: (d\u00edas)",
"LabelChannelDownloadAgeHelp": "Todo contenido descargado anterior se borrar\u00e1. Continuar\u00e1 estando disponible v\u00eda streaming de internet.",
"ChannelSettingsFormHelp": "Instale canales como Trailers y Vimeo desde el cat\u00e1logo de plugins.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Agregar a la colecci\u00f3n",
+ "ButtonSubmit": "Enviar",
"ViewTypeMovies": "Pel\u00edculas",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Juegos",
"ViewTypeMusic": "M\u00fasica",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Colecciones",
- "ViewTypeChannels": "Canales",
- "ViewTypeLiveTV": "Tv en vivo",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Configuraci\u00f3n de pantalla",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "Mis vistas",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Canales",
+ "ViewTypeLiveTV": "Tv en vivo",
"OptionDisplayAdultContent": "Mostrar contenido para adultos",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Cap\u00edtulos",
+ "HeaderDownloadChaptersFor": "Descarga nombres de los cap\u00edtulos de:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Ultimos elementos de canales",
+ "HeaderLatestChannelItems": "Ultimos elementos de canales",
"TitleRemoteControl": "Control remoto",
+ "HeaderMyViews": "Mis vistas",
"OptionLatestTvRecordings": "\u00daltimas grabaciones",
+ "ButtonRefresh": "Refrescar",
"LabelProtocolInfo": "Informaci\u00f3n de protocolo:",
"LabelProtocolInfoHelp": "El valor que se utilizar\u00e1 cuando se responde a una solicitud GetProtocolInfo desde el dispositivo.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subt\u00edtulos",
"TabServices": "Servicios",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Archivos de log del servidor:",
@@ -1029,6 +820,8 @@
"LabelAppName": "Nombre de la app",
"LabelAppNameExample": "Ejemplo: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "administraci\u00f3n:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Bitrate m\u00e1ximo:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Cerrar",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "F\u00e1cil c\u00f3digo PIN:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Restablecer f\u00e1cil c\u00f3digo PIN",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Peliculas",
+ "FolderTypeMusic": "Musica",
+ "FolderTypeAdultVideos": "Videos para adultos",
+ "FolderTypePhotos": "Fotos",
+ "FolderTypeMusicVideos": "Videos Musicales",
+ "FolderTypeHomeVideos": "Videos caseros",
+ "FolderTypeGames": "Juegos",
+ "FolderTypeBooks": "Libros",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artistas:",
+ "LabelArtistsHelp": "Separar multiples usando ;",
+ "ButtonAdvancedRefresh": "Actualizar Manualmente",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirmar borrado",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Agregar usuario local",
+ "HeaderIdentification": "Identificaci\u00f3n",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Siguiente",
+ "ButtonPrevious": "Anterior",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Numero local de puerto de http:",
+ "LabelLocalHttpServerPortNumberHelp": "N\u00famero de puerto al que el servidor de http de Emby debe de ser enlazado.",
+ "LabelEnableAutomaticPortMap": "Habilitar asignaci\u00f3n de puertos autom\u00e1tico",
+ "LabelEnableAutomaticPortMapHelp": "UPnP permite la configuraci\u00f3n del router para acceso externo de forma f\u00e1cil y autom\u00e1tica. Esto puede no funcionar en algunos modelos de routers.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invitar usuario",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "C\u00f3digo PIN:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Cartelera",
+ "OptionThumbCard": "Cartel postal",
+ "OptionAllowRemoteSharedDevices": "Habilitar el control remote de otros equipos compartidos",
+ "OptionAllowRemoteSharedDevicesHelp": "Los equipos DLNA son considerados compartidos hasta que un usuario empiece a controlarlo.",
+ "HeaderRemoteControl": "Control Remoto",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Documentaci\u00f3n API",
+ "LabelDeveloperResources": "Recursos del Desarrollador",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Informaci\u00f3n del servidor",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Heredado ",
+ "LabelContentType": "Tipo de contenido:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Ayuda",
+ "TabAccess": "Acceso",
+ "HeaderDeviceAccess": "Acceso de Equipo",
+ "OptionEnableAccessFromAllDevices": "Habilitar acceso de cualquier equipo",
+ "DeviceAccessHelp": "Esto solo aplica a equipos que puedan ser singularmente identificados y no prevendr\u00e1 acceso al navegador. Filtrar el acceso de equipos del usuario les prevendr\u00e1 que usen nuevos equipos hasta que sean aprobados aqui.",
+ "ButtonQuickStartGuide": "Gu\u00eda de inicio r\u00e1pido",
+ "HeaderSyncJobInfo": "Trabajo de Sync",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "T\u00e9rminos de servicios de Emby",
+ "MessagePleaseAcceptTermsOfService": "Por favor aceptar los terminos de servicios y politica de privacidad antes de continuar.",
+ "OptionIAcceptTermsOfService": "Acepto los terminos de servicio",
+ "ButtonPrivacyPolicy": "Politica de privacidad",
+ "ButtonTermsOfService": "Terminos de servicios",
+ "OptionHideUserFromLoginHelp": "\u00datil para privado o cuentas de administradores escondidos. El usuario tendr\u00e1 que acceder entrando su nombre de usuario y contrase\u00f1a manualmente.",
+ "LabelEnterConnectUserName": "Nombre de usuario o email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detectar archivos come medios",
+ "OptionDetectArchiveFilesAsMediaHelp": "Si es habilitado, archivos con extensiones .rar y .zip ser\u00e1n detectados como medios.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Habilitar acceso a todos los canales",
+ "LabelAutomaticUpdates": "Habilite actualizaciones automaticas",
+ "LabelFanartApiKey": "Clave personal de API:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Recursos del Desarrollador",
+ "OptionEnableWebClientResponseCache": "Habilitar almacenamiento de cach\u00e9 de respuestas del cliente web.",
+ "OptionDisableForDevelopmentHelp": "Configure cuantas veces sea nesesario para propositos del desarrollo de cliente de la red.",
+ "OptionEnableWebClientResourceMinification": "Habilitar minificaci\u00f3n de recursos para la aplicacion en linea",
+ "LabelDashboardSourcePath": "Localizaci\u00f3n de la fuente del cliente web:",
+ "LabelDashboardSourcePathHelp": "Si est\u00e1 ejecutando el servidor desde la fuente, especifique la ruta de acceso a la carpeta dashboard-ui. Todos los archivos del cliente web ser\u00e1n atendidos desde esta ruta.",
+ "HeaderPaths": "Ruta",
+ "TitleNotifications": "Notificaciones",
+ "ButtonDonateWithPayPal": "Done utilizando Paypal",
+ "TitleScheduledTasks": "Programar una tarea",
+ "LinkApi": "API",
+ "LabelPublicHttpPort": "N\u00famero de puerto p\u00fablico de http:",
+ "LabelPublicHttpPortHelp": "El n\u00famero de puerto p\u00fablico que debe ser enlazado al puerto local http:",
+ "LabelPublicHttpsPort": "N\u00famero de puerto p\u00fablico de https:",
+ "LabelPublicHttpsPortHelp": "El n\u00famero de puerto p\u00fablico que debe ser enlazado al puerto local https:",
+ "LabelEnableHttps": "Reportar el https como una direccion externa",
+ "LabelEnableHttpsHelp": "Si es habilitado, el servidor reportara un enlaze https a los clientes como una direccion externa.",
+ "LabelHttpsPort": "N\u00famero de puerto local de https:",
+ "LabelHttpsPortHelp": "N\u00famero de puerto al que el servidor de tcp de Emby debe de ser enlazado.",
+ "TabHosting": "Servidor",
+ "LabelCustomCss": "css modificado:",
+ "LabelCustomCssHelp": "Aplique su propio css modificado a la interfaz de la web.",
+ "ButtonConvertMedia": "Convertir medios",
+ "ButtonOrganize": "Organizar",
+ "ButtonJoinTheDevelopmentTeam": "Unace al equipo de desarrolladores",
+ "OptionEnableAccessToAllLibraries": "Habilitar acceso a todas las bibliotecas",
+ "LabelSyncTempPath": "Localizaci\u00f3n del archivo temporal:",
+ "LabelSyncTempPathHelp": "Especificar una carpeta personalizada para achivos en sincronizaci\u00f3n. Medios convertidos creados durante el proceso de sincronizaci\u00f3n ser\u00e1n guardados aqu\u00ed.",
+ "LabelCustomCertificatePath": "Lugar del certificado personalizado:",
+ "LabelCustomCertificatePathHelp": "Aplique su propio certificado ssl or archivo .pfx. Si lo omite el servidor crear\u00e1 un certificado auto-registrador.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Disfrute 14 Dias Gratis de Prueba",
+ "CategorySync": "Sincronizar",
+ "RegisterWithPayPal": "Registrese con PayPal",
+ "NotificationOptionCameraImageUploaded": "Imagen de camara se a carcado",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "F\u00e1cil c\u00f3digo PIN:",
+ "LabelEasyPinCode": "F\u00e1cil c\u00f3digo PIN:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Restablecer f\u00e1cil c\u00f3digo PIN",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "C\u00f3digo PIN:",
+ "ButtonExit": "Salir",
+ "HeaderGrownupsOnly": "Adultos solamente!",
+ "DividerOr": "-- y --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Para acceder, por favor introduzca su f\u00e1cil c\u00f3digo PIN.",
+ "KidsModeAdultInstruction": "Haga clic en el icono en la parte de abajo derecha para configurar o salir del modo de menores. Su codigo PIN es requerido.",
+ "ButtonConfigurePinCode": "Configurar contrase\u00f1a",
+ "HeaderAdultsReadHere": "Adultos Leer Aqui!",
+ "LabelEnableEnhancedMovies": "Habilite presentaciones de peliculas mejoradas",
+ "LabelEnableEnhancedMoviesHelp": "Cuando est\u00e9 habilitado, las peliculas seran mostradas como folderes para incluir trailers, extras, elenco y equipo, y otros contenidos relacionados.",
+ "NotificationOptionUserLockedOut": "Usuario bloqueado",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Limite de tiempo (horas):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Servicios Instalados",
+ "HeaderAvailableServices": "Servicios Disponibles",
+ "MessageNoServicesInstalled": "No hay servicios instalados.",
+ "TitlePlugins": "Complementos",
+ "HeaderServices": "Servicios",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Beneficios del partidario",
+ "HeaderAddUser": "Agregar Usuario",
+ "LabelAddConnectSupporterHelp": "Para agregar a un usuario que no est\u00e1 en el listado, usted tiene primero que conectar su cuenta con Emby Connect desde la p\u00e1gina de perfil del usuario.",
+ "TabPlaylist": "Lista de reproducci\u00f3n",
+ "LabelConfigureServer": "Configurar Emby",
+ "WelcomeToProject": "Bienvenidos a Emby!",
+ "LinkedToEmbyConnect": "Vincular a Emby Connect",
+ "ProjectHasCommunity": "Emby tiene una pr\u00f3spera comunidad de usuarios y contribuidores.",
+ "VisitProjectWebsite": "Visite la pagina de Emby",
+ "VisitProjectWebsiteLong": "Visite la p\u00e1gina Emby para obtener lo m\u00e1s reciente y mantenerse al d\u00eda con el blog de desarrolladores.",
+ "HeaderHelpImproveProject": "Ayude a mejorar a Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Esconder medios vistos de los medios m\u00e1s recientes",
+ "TabSuggestions": "Sugerencias",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sincronizar",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Opciones Repetitivas",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Bitrate de reproducci\u00f3n Chromecast",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Permitir compartir los medios en redes sociales",
+ "OptionAllowLinkSharingHelp": "Solo paginas de web que contengan informaci\u00f3n de los medios ser\u00e1n compartidos. Los medios nunca son compartidos p\u00fablicamente. Medios compartidos tienen un l\u00edmite de tiempo y expirar\u00e1 basado en su configuraci\u00f3n de compartir en el servidor.",
+ "HeaderSharing": "Compartir",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subt\u00edtulos",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/fi.json b/dashboard-ui/strings/html/fi.json
index 91115a3868..e578b04fe5 100644
--- a/dashboard-ui/strings/html/fi.json
+++ b/dashboard-ui/strings/html/fi.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Poistu",
"LabelVisitCommunity": "K\u00e4y Yhteis\u00f6ss\u00e4",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Normaali",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Selaa Kirjastoa",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Avaa Library Viewer",
"LabelRestartServer": "K\u00e4ynnist\u00e4 Palvelin uudelleen",
"LabelShowLogWindow": "N\u00e4yt\u00e4 Loki Ikkuna",
"LabelPrevious": "Edellinen",
"LabelFinish": "Valmis",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Seuraava",
"LabelYoureDone": "Olet valmis!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Virallinen Julkaisu",
+ "OptionBeta": "Beta",
+ "OptionDev": "Kehittely (Ei vakaa)",
"ThisWizardWillGuideYou": "T\u00e4m\u00e4 ty\u00f6kalu auttaa sinua asennus prosessin aikana. loittaaksesi valitse kieli.",
"TellUsAboutYourself": "Kerro meille itsest\u00e4si",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Sinun ensimm\u00e4inen nimi:",
"MoreUsersCanBeAddedLater": "K\u00e4ytt\u00e4ji\u00e4 voi lis\u00e4t\u00e4 lis\u00e4\u00e4 my\u00f6hemmin Dashboardista",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Ota automaattinen porttien mapping k\u00e4ytt\u00f6\u00f6n",
"LabelEnableAutomaticPortMappingHelp": "UPnP sallii automaattisen reitittimen asetusten muuttamisen. T\u00e4m\u00e4 ei mahdollisesti toimi joidenkin retititin mallien kanssa.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Lopeta",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Aseta sinun media kirjasto",
"ButtonAddMediaFolder": "Lis\u00e4\u00e4 media kansio",
"LabelFolderType": "Kansion tyyppi:",
"ReferToMediaLibraryWiki": "Viittus media kirjaston wikiin.",
"LabelCountry": "Maa:",
"LabelLanguage": "Kieli:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Ensisijainen kieli:",
"LabelSaveLocalMetadata": "Tallenna kuvamateriaali ja metadata media kansioihin.",
"LabelSaveLocalMetadataHelp": "Kuvamateriaalin ja metadatan tallentaminen suoraan kansioihin miss\u00e4 niit\u00e4 on helppo muuttaa.",
@@ -130,37 +47,16 @@
"TabPreferences": "Asetukset",
"TabPassword": "Salasana",
"TabLibraryAccess": "Kirjaston P\u00e4\u00e4sy",
- "TabAccess": "Access",
"TabImage": "Kuva",
"TabProfile": "Profiili",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "N\u00e4yt\u00e4 puuttuvat jaksot tuotantokausissa",
"LabelUnairedMissingEpisodesWithinSeasons": "N\u00e4yt\u00e4 julkaisemattomat jaksot tuotantokausissa",
"HeaderVideoPlaybackSettings": "Videon Toistamisen Asetukset",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "\u00c4\u00e4nen ensisijainen kieli:",
"LabelSubtitleLanguagePreference": "Tekstityksien ensisijainen kieli:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiilit",
"TabSecurity": "Suojaus",
"ButtonAddUser": "Lis\u00e4\u00e4 K\u00e4ytt\u00e4j\u00e4",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Tallenna",
"ButtonResetPassword": "Uusi Salasana",
"LabelNewPassword": "Uusi salasana:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Suurin sallittu vanhempien arvostelu:",
"MaxParentalRatingHelp": "Suuremman arvosanan takia, sis\u00e4lt\u00f6 tulla piilottamaan k\u00e4ytt\u00e4j\u00e4lt\u00e4.",
"LibraryAccessHelp": "Valitse media kansiot jotka haluat jakaa t\u00e4m\u00e4n k\u00e4ytt\u00e4j\u00e4n kanssa. J\u00e4rjestelm\u00e4nvalvoja pystyy muokkaamaan kaikkia kansioita k\u00e4ytt\u00e4en metadata hallintaa.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Poista Kuva",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "Name",
- "OptionFolderSort": "Folders",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Virallinen Julkaisu",
- "OptionBeta": "Beta",
- "OptionDev": "Kehittely (Ei vakaa)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/fr.json b/dashboard-ui/strings/html/fr.json
index ee6b931c30..866caf1727 100644
--- a/dashboard-ui/strings/html/fr.json
+++ b/dashboard-ui/strings/html/fr.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Quitter",
"LabelVisitCommunity": "Visiter la Communaut\u00e9",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Documentation API",
- "LabelDeveloperResources": "Ressources pour d\u00e9veloppeurs",
"LabelBrowseLibrary": "Parcourir la biblioth\u00e8que",
- "LabelConfigureServer": "Configurer Emby",
"LabelOpenLibraryViewer": "Ouvrir le navigateur de biblioth\u00e8que",
"LabelRestartServer": "Red\u00e9marrer le Serveur",
"LabelShowLogWindow": "Afficher la fen\u00eatre du journal d'\u00e9v\u00e8nements",
"LabelPrevious": "Pr\u00e9c\u00e9dent",
"LabelFinish": "Terminer",
- "FolderTypeMixed": "Contenu m\u00e9lang\u00e9",
"LabelNext": "Suivant",
"LabelYoureDone": "Vous avez Termin\u00e9!",
- "ButtonAddToCollection": "Ajouter \u00e0 une collection",
- "ButtonMoreItems": "Plus",
- "WelcomeToProject": "Bienvenue dans Emby !",
+ "OptionRelease": "Version officielle",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Instable)",
"ThisWizardWillGuideYou": "Cet assistant vous guidera dans le processus de configuration. Pour commencer, merci de s\u00e9lectionner votre langue pr\u00e9f\u00e9r\u00e9e.",
"TellUsAboutYourself": "Parlez-nous de vous",
- "ButtonQuickStartGuide": "Guide de d\u00e9marrage rapide",
"LabelYourFirstName": "Votre pr\u00e9nom:",
"MoreUsersCanBeAddedLater": "D'autres utilisateurs pourront \u00eatre ajout\u00e9s ult\u00e9rieurement \u00e0 partir du tableau de bord.",
"UserProfilesIntro": "Emby supporte nativement les profils utilisateurs, les pr\u00e9f\u00e9rences d'affichage, la sauvegarde de l'\u00e9tat de lecture et le contr\u00f4le parental.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "L'extraction d'images de chapitres permettra aux clients d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources du processeur et de stockage (plusieurs gigaoctets). Il s'ex\u00e9cute comme t\u00e2che programm\u00e9e mais son param\u00e9trage peut \u00eatre modifi\u00e9 dans les options des t\u00e2ches programm\u00e9es. Il est d\u00e9conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che durant les heures d'utilisation normales.",
"LabelEnableAutomaticPortMapping": "Activer la configuration automatique de port",
"LabelEnableAutomaticPortMappingHelp": "UPnP permet la configuration automatique des routeurs pour un acc\u00e8s \u00e0 distance facile. Ceci peut ne pas fonctionner sur certains mod\u00e8les de routeur.",
- "HeaderTermsOfService": "Conditions d'utilisation de Emby",
- "MessagePleaseAcceptTermsOfService": "Veuillez accepter les conditions d'utilisations et la politique de confidentialit\u00e9 avant de continuer.",
- "OptionIAcceptTermsOfService": "J'accepte les conditions d'utilisation.",
- "ButtonPrivacyPolicy": "Politique de confidentialit\u00e9",
- "ButtonTermsOfService": "Conditions d'utilisation",
- "HeaderDeveloperOptions": "Options de d\u00e9veloppement",
- "OptionEnableWebClientResponseCache": "Activer la mise en cache des r\u00e9ponses du client web",
- "OptionDisableForDevelopmentHelp": "Vous pouvez configurer ces options selon vos besoins de d\u00e9veloppement.",
- "OptionEnableWebClientResourceMinification": "Activer la minimisation des ressources du client web",
- "LabelDashboardSourcePath": "Chemin des fichiers sources du client web",
- "LabelDashboardSourcePathHelp": "Si vous ex\u00e9cutez le serveur \u00e0 partir des sources, veuillez sp\u00e9cifier le chemin du r\u00e9pertoire dashboard-ui. Tous les fichiers du client web seront servis \u00e0 partir de cet endroit.",
- "ButtonConvertMedia": "Convertir le m\u00e9dia",
- "ButtonOrganize": "Organiser",
- "LinkedToEmbyConnect": "Connect\u00e9 \u00e0 Emby",
- "HeaderSupporterBenefits": "Avantages de supporteur",
- "HeaderAddUser": "Ajouter un utilisateur",
- "LabelAddConnectSupporterHelp": "Pour ajouter un utilisateur non list\u00e9, vous devrez d'abord lier son compte \u00e0 Emby Connect depuis sa page de profil utilisateur.",
- "LabelPinCode": "Code PIN:",
- "OptionHideWatchedContentFromLatestMedia": "Masquer le contenu d\u00e9j\u00e0 vu dans les derniers m\u00e9dias",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Annuler",
- "ButtonExit": "Sortie",
- "ButtonNew": "Nouveau",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Vid\u00e9o",
- "HeaderPaths": "Chemins",
- "CategorySync": "Sync",
- "TabPlaylist": "Liste de lecture",
- "HeaderEasyPinCode": "Code Easy Pin",
- "HeaderGrownupsOnly": "R\u00e9serv\u00e9 aux adultes !",
- "DividerOr": "-- ou --",
- "HeaderInstalledServices": "Services install\u00e9s",
- "HeaderAvailableServices": "Services disponibles",
- "MessageNoServicesInstalled": "Aucun service n'est actuellement install\u00e9.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Veuillez entrez votre code Easy PIN :",
- "KidsModeAdultInstruction": "Cliquez sur l'ic\u00f4ne en forme de cadenas en bas \u00e0 droite pour configurer ou quitter le mode Enfants. Votre code PIN sera requis.",
- "ButtonConfigurePinCode": "Configurer le code PIN",
- "HeaderAdultsReadHere": "Section r\u00e9serv\u00e9e aux adultes!",
- "RegisterWithPayPal": "S'enregistrer avec PayPal",
- "HeaderSyncRequiresSupporterMembership": "La synchronisation n\u00e9cessite un abonnement actif comme supporteur.",
- "HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours",
- "LabelSyncTempPath": "R\u00e9pertoire de fichiers temporaires :",
- "LabelSyncTempPathHelp": "Sp\u00e9cifiez un r\u00e9pertoire de travail pour la synchronisation. Les fichiers r\u00e9sultant de la conversion de m\u00e9dias au cours du processus de synchronisation seront stock\u00e9s ici.",
- "LabelCustomCertificatePath": "Chemin vers le certificat personnalis\u00e9 :",
- "LabelCustomCertificatePathHelp": "Fournissez votre propre certificat SSL au format .pfx. Sinon, le serveur cr\u00e9era un certificat auto-sign\u00e9.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Faire un don avec Paypal",
- "OptionDetectArchiveFilesAsMedia": "Reconna\u00eetre les fichiers archives comme m\u00e9dias",
- "OptionDetectArchiveFilesAsMediaHelp": "Activez cette option pour reconna\u00eetre les fichiers portant l'extension .rar ou .zip comme des fichiers de m\u00e9dias. ",
- "LabelEnterConnectUserName": "Nom d'utilisateur ou adresse mail :",
- "LabelEnterConnectUserNameHelp": "C'est le nom d'utilisateur ou l'email de votre compte Emby en ligne.",
- "LabelEnableEnhancedMovies": "Activer le mode d'affichage \u00e9tendu des films",
- "LabelEnableEnhancedMoviesHelp": "Lorsque ce mode est activ\u00e9, les films seront affich\u00e9s comme des dossiers et incluront les bandes-annonces, les extras, l'\u00e9quipe de tournage et les autre contenus li\u00e9s.",
- "HeaderSyncJobInfo": "T\u00e2che de synchronisation",
- "OptionReleaseDate": "Date de sortie",
- "ButtonPlayTrailer": "Bande-annonce",
- "LabelFailed": "\u00c9chou\u00e9",
- "LabelSeries": "S\u00e9ries :",
- "ButtonFullscreen": "Basculer en plein \u00e9cran",
- "ButtonAudioTracks": "Pistes audio",
- "ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente",
- "ButtonNextTrack": "Piste suivante",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Films",
- "FolderTypeMusic": "Musique",
- "FolderTypeAdultVideos": "Vid\u00e9os Adultes",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Vid\u00e9os Musical",
- "FolderTypeHomeVideos": "Vid\u00e9os personnelles",
- "FolderTypeGames": "Jeux",
- "FolderTypeBooks": "Livres",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "H\u00e9rite",
- "LabelContentType": "Type de contenu :",
- "TitleScheduledTasks": "T\u00e2ches planifi\u00e9es",
"HeaderSetupLibrary": "Configurer votre biblioth\u00e8que de m\u00e9dia",
"ButtonAddMediaFolder": "Ajouter un r\u00e9pertoire de m\u00e9dia",
"LabelFolderType": "Type de r\u00e9pertoire:",
"ReferToMediaLibraryWiki": "Se r\u00e9f\u00e9rer au wiki des biblioth\u00e8ques de m\u00e9dia",
"LabelCountry": "Pays:",
"LabelLanguage": "Langue:",
- "LabelTimeLimitHours": "Limite de temps (heures) :",
- "ButtonJoinTheDevelopmentTeam": "Rejoignez l'\u00e9quipe de d\u00e9veloppement",
"HeaderPreferredMetadataLanguage": "Langue pr\u00e9f\u00e9r\u00e9e pour les m\u00e9tadonn\u00e9es:",
"LabelSaveLocalMetadata": "Enregistrer les images et m\u00e9tadonn\u00e9es dans les r\u00e9pertoires de m\u00e9dia",
"LabelSaveLocalMetadataHelp": "L'enregistrement des images et des m\u00e9tadonn\u00e9es dans le r\u00e9pertoire de m\u00e9dia les placera \u00e0 un endroit o\u00f9 elles seront facilement modifiables.",
@@ -130,37 +47,16 @@
"TabPreferences": "Pr\u00e9f\u00e9rences",
"TabPassword": "Mot de passe",
"TabLibraryAccess": "Acc\u00e8s aux biblioth\u00e8ques",
- "TabAccess": "Acc\u00e8s",
"TabImage": "Image",
"TabProfile": "Profil",
- "TabMetadata": "M\u00e9tadonn\u00e9es",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titres",
- "HeaderDeviceAccess": "Acc\u00e8s \u00e0 l'appareil",
- "OptionEnableAccessFromAllDevices": "Autoriser l'acc\u00e8s \u00e0 tous les appareils",
- "OptionEnableAccessToAllChannels": "Activer l'acc\u00e8s \u00e0 toutes les cha\u00eenes",
- "OptionEnableAccessToAllLibraries": "Activer l'acc\u00e8s \u00e0 toutes les librairies",
- "DeviceAccessHelp": "Ceci ne s'applique qu'aux appareils qui peuvent \u00eatre identifi\u00e9s de mani\u00e8re unique et qui n'emp\u00eachent pas l'acc\u00e8s au navigateur. Le filtrage de l'acc\u00e8s aux appareil par utilisateur emp\u00eachera l'utilisation de nouveaux appareils jusqu'\u00e0 ce qu'ils soient approuv\u00e9s ici.",
"LabelDisplayMissingEpisodesWithinSeasons": "Afficher les \u00e9pisodes manquants dans les saisons",
"LabelUnairedMissingEpisodesWithinSeasons": "Afficher les \u00e9pisodes non diffus\u00e9s dans les saisons",
"HeaderVideoPlaybackSettings": "Param\u00e8tres de lecture video",
- "HeaderPlaybackSettings": "Param\u00e8tres de lecture",
"LabelAudioLanguagePreference": "Param\u00e8tres de langue audio:",
"LabelSubtitleLanguagePreference": "Param\u00e8tres de langue de sous-titre",
- "OptionDefaultSubtitles": "Par d\u00e9faut",
- "OptionOnlyForcedSubtitles": "Seulement les sous-titres forc\u00e9s",
- "OptionAlwaysPlaySubtitles": "Toujours afficher les sous-titres",
- "OptionNoSubtitles": "Aucun sous-titre",
- "OptionDefaultSubtitlesHelp": "Les sous-titres de la langue pr\u00e9f\u00e9r\u00e9e seront charg\u00e9s lorsque la langue de la piste audio est \u00e9trang\u00e8re.",
- "OptionOnlyForcedSubtitlesHelp": "Seuls les sous-titres forc\u00e9s seront charg\u00e9s.",
- "OptionAlwaysPlaySubtitlesHelp": "Les sous-titres correspondants \u00e0 la langue pr\u00e9f\u00e9r\u00e9e seront charg\u00e9s quelque soit la langue de la piste audio.",
- "OptionNoSubtitlesHelp": "Par d\u00e9faut, les sous-titres ne seront pas charg\u00e9s.",
"TabProfiles": "Profils",
"TabSecurity": "S\u00e9curit\u00e9",
"ButtonAddUser": "Ajouter utilisateur",
- "ButtonAddLocalUser": "Ajouter un utilisateur local",
- "ButtonInviteUser": "Inviter un utilisateur",
"ButtonSave": "Sauvegarder",
"ButtonResetPassword": "R\u00e9initialiser le mot de passe",
"LabelNewPassword": "Nouveau mot de passe :",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Note maximale d'\u00e9valuation de contr\u00f4le parental:",
"MaxParentalRatingHelp": "Le contenu avec une note d'\u00e9valuation de contr\u00f4le parental plus \u00e9lev\u00e9e ne sera pas visible par cet utilisateur.",
"LibraryAccessHelp": "Selectionnez le r\u00e9pertoire de m\u00e9dia \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier tous les r\u00e9pertoires en utilisant le gestionnaire de m\u00e9tadonn\u00e9es.",
- "ChannelAccessHelp": "S\u00e9lectionner les cha\u00eenes \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier toutes les cha\u00eenes par le gestionnaire de m\u00e9tadonn\u00e9es.",
"ButtonDeleteImage": "Supprimer l'image",
- "LabelSelectUsers": "S\u00e9lectionner des utilisateurs:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Uploader une nouvelle image",
"LabelDropImageHere": "Placer l'image ici",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Rien ici.",
"MessagePleaseEnsureInternetMetadata": "Veuillez vous assurer que le t\u00e9l\u00e9chargement des m\u00e9tadonn\u00e9es depuis Internet est activ\u00e9.",
"TabSuggested": "Sugg\u00e9r\u00e9s",
- "TabSuggestions": "Suggestions",
"TabLatest": "Plus r\u00e9cents",
"TabUpcoming": "\u00c0 venir",
"TabShows": "S\u00e9ries",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascendant",
"OptionDescending": "Descendant",
"OptionRuntime": "Dur\u00e9e",
+ "OptionReleaseDate": "Date de sortie",
"OptionPlayCount": "Nombre de lectures",
"OptionDatePlayed": "Date lu",
"OptionDateAdded": "Date d'ajout",
@@ -226,16 +120,10 @@
"OptionTrackName": "Titre",
"OptionCommunityRating": "Note de la communaut\u00e9",
"OptionNameSort": "Nom",
- "OptionFolderSort": "R\u00e9pertoires",
"OptionBudget": "Budget",
"OptionRevenue": "Recettes",
"OptionPoster": "Affiche",
- "OptionPosterCard": "Carte Affiche",
- "OptionBackdrop": "Image d'arri\u00e8re-plan",
"OptionTimeline": "Chronologie",
- "OptionThumb": "Vignette",
- "OptionThumbCard": "Carte Vignette",
- "OptionBanner": "Banni\u00e8re",
"OptionCriticRating": "Note des critiques",
"OptionVideoBitrate": "D\u00e9bit vid\u00e9o",
"OptionResumable": "Reprise possible",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "T\u00e2ches planifi\u00e9es",
"TabMyPlugins": "Mes plugins",
"TabCatalog": "Catalogue",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Mises \u00e0 jour automatiques",
"HeaderNowPlaying": "Lecture en cours",
"HeaderLatestAlbums": "Derniers albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Lus r\u00e9cemment",
"HeaderFrequentlyPlayed": "Fr\u00e9quemment lus",
"DevBuildWarning": "Les versions Dev incorporent les tous derniers d\u00e9veloppements. Mises \u00e0 jour fr\u00e9quemment, ces versions ne sont pas test\u00e9es. L'application peut planter et il se peut que des pans entiers de fonctionnalit\u00e9s soient d\u00e9faillants.",
+ "OptionThumb": "Vignette",
+ "OptionBanner": "Banni\u00e8re",
"LabelVideoType": "Type de vid\u00e9o:",
"OptionBluray": "Bluray",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "Caract\u00e9ristiques :",
- "LabelService": "Service :",
- "LabelStatus": "Statut:",
- "LabelVersion": "Version :",
- "LabelLastResult": "Dernier r\u00e9sultat :",
"OptionHasSubtitles": "Sous-titres",
"OptionHasTrailer": "Bande-annonce",
"OptionHasThemeSong": "Chanson th\u00e8me",
@@ -268,8 +153,6 @@
"TabMovies": "Films",
"TabStudios": "Studios",
"TabTrailers": "Bandes-annonces",
- "LabelArtists": "Artistes",
- "LabelArtistsHelp": "S\u00e9parer les \u00e9l\u00e9ments par un point-virgule ;",
"HeaderLatestMovies": "Films les plus r\u00e9cents",
"HeaderLatestTrailers": "Derni\u00e8res bandes-annonces",
"OptionHasSpecialFeatures": "Bonus",
@@ -290,32 +173,24 @@
"OptionFriday": "Vendredi",
"OptionSaturday": "Samedi",
"HeaderManagement": "Gestion",
- "LabelManagement": "Gestion :",
"OptionMissingImdbId": "Identifiant IMDb manquant",
"OptionMissingTvdbId": "Identifiant TheTVDB manquant",
"OptionMissingOverview": "R\u00e9sum\u00e9 manquant",
"OptionFileMetadataYearMismatch": "Conflit entre nom du fichier et les m\u00e9tadonn\u00e9es sur l'ann\u00e9e",
"TabGeneral": "G\u00e9n\u00e9ral",
"TitleSupport": "Assistance",
- "LabelSeasonNumber": "Num\u00e9ro de saison",
"TabLog": "Journal d'\u00e9v\u00e9nements",
- "LabelEpisodeNumber": "Num\u00e9ro d'\u00e9pisode",
"TabAbout": "\u00c0 propos",
"TabSupporterKey": "Cl\u00e9 de membre supporteur",
"TabBecomeSupporter": "Devenir un suporteur",
- "ProjectHasCommunity": "Emby b\u00e9n\u00e9ficie d'une communaut\u00e9 florissante d'utilisateurs et de contributeurs.",
"CheckoutKnowledgeBase": "Jetez un oeil \u00e0 notre base de connaissance pour tirer le meilleur parti d'Emby.",
"SearchKnowledgeBase": "Rechercher dans la base de connaissances",
"VisitTheCommunity": "Visiter la Communaut\u00e9",
- "VisitProjectWebsite": "Visiter le site web de Emby",
- "VisitProjectWebsiteLong": "Consultez le site web d'Emby pour vous tenir inform\u00e9 des derni\u00e8res actualit\u00e9s et billets du blog des d\u00e9veloppeurs.",
"OptionHideUser": "Ne pas afficher cet utilisateur dans les \u00e9crans de connexion",
- "OptionHideUserFromLoginHelp": "Recommand\u00e9 pour les comptes administrateurs priv\u00e9s ou cach\u00e9s. L'utilisateur devra s'authentifier manuellement en entrant son login et mot de passe.",
"OptionDisableUser": "D\u00e9sactiver cet utilisateur",
"OptionDisableUserHelp": "Si d\u00e9sactiv\u00e9, le serveur n'autorisera pas de connexion de cet utilisateur. Les connexions existantes seront interrompues.",
"HeaderAdvancedControl": "Contr\u00f4le avanc\u00e9",
"LabelName": "Nom",
- "ButtonHelp": "Aide",
"OptionAllowUserToManageServer": "Autoriser la gestion du serveur \u00e0 cet utilisateur",
"HeaderFeatureAccess": "Acc\u00e8s aux fonctionnalit\u00e9s",
"OptionAllowMediaPlayback": "Autoriser la lecture de m\u00e9dias",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Autoriser la suppression de m\u00e9dias",
"OptionAllowManageLiveTv": "Autoriser la gestion des enregistrements de TV Live",
"OptionAllowRemoteControlOthers": "Autoriser le contr\u00f4le \u00e0 distance des autres utilisateurs",
- "OptionAllowRemoteSharedDevices": "Autoriser le contr\u00f4le \u00e0 distance des appareils partag\u00e9s",
- "OptionAllowRemoteSharedDevicesHelp": "Les p\u00e9riph\u00e9riques Dlna sont consid\u00e9r\u00e9s comme partag\u00e9s tant qu'un utilisateur ne commence pas \u00e0 le contr\u00f4ler.",
- "OptionAllowLinkSharing": "Autoriser le partage sur les r\u00e9seaux sociaux",
- "OptionAllowLinkSharingHelp": "Seul les pages web contenant des informations sur les m\u00e9dias sont partag\u00e9s. Les fichiers de m\u00e9dias ne sont jamais publi\u00e9s publiquement. Les partages ont un temps limit\u00e9s et expirent en fonctions de vos param\u00e8tres de paratage du serveur.",
- "HeaderSharing": "Partage",
- "HeaderRemoteControl": "Contr\u00f4le \u00e0 distance",
"OptionMissingTmdbId": "ID TMDb manquant",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "S\u00e9lectionner",
"ButtonGroupVersions": "Versions des groupes",
"PismoMessage": "Utilisation de \"Pismo File Mount\" par une licence fournie.",
- "TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.",
- "HeaderCredits": "Cr\u00e9dits",
"PleaseSupportOtherProduces": "Merci de soutenir les autres produits gratuits que nous utilisons :",
"VersionNumber": "Version {0}",
"TabPaths": "Chemins d'acc\u00e8s",
"TabServer": "Serveur",
"TabTranscoding": "Transcodage",
"TitleAdvanced": "Avanc\u00e9",
- "OptionRelease": "Version officielle",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Instable)",
"LabelAllowServerAutoRestart": "Autoriser le red\u00e9marrage automatique du serveur pour appliquer les mises \u00e0 jour",
"LabelAllowServerAutoRestartHelp": "Le serveur ne red\u00e9marrera que pendant les p\u00e9riodes d'inactivit\u00e9, quand aucun utilisateur n'est connect\u00e9.",
"LabelEnableDebugLogging": "Activer le d\u00e9boguage dans le journal d'\u00e9n\u00e8nements",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Sp\u00e9cifier des chemins d'acc\u00e8s personnalis\u00e9s. Laissez vide pour conserver les chemins d'acc\u00e8s par d\u00e9faut.",
"LabelCachePath": "Chemin du cache :",
"LabelCachePathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les fichier temporaires du serveur, comme par exemple les images. Laissez vide pour utiliser la valeur par d\u00e9faut.",
- "LabelRecordingPath": "Enregistrement de l'adresse :",
- "LabelRecordingPathHelp": "Pr\u00e9cisez un endroit personnalis\u00e9 pour la sauvegarde des enregistrements. Laissez vide pour utiliser l'endroit par d\u00e9faut du serveur.",
"LabelImagesByNamePath": "R\u00e9pertoire de stockage des images t\u00e9l\u00e9charg\u00e9es :",
"LabelImagesByNamePathHelp": "Veuillez sp\u00e9cifier un emplacement personnalis\u00e9 pour les images t\u00e9l\u00e9charg\u00e9es d'acteurs, artistes, genre, et studios .",
"LabelMetadataPath": "Chemin des m\u00e9tadonn\u00e9es :",
@@ -374,14 +236,11 @@
"OptionEpisodes": "\u00c9pisodes",
"OptionOtherVideos": "Autres vid\u00e9os",
"TitleMetadata": "M\u00e9tadonn\u00e9es",
- "LabelAutomaticUpdates": "Activer les mises \u00e0 jour automatiques",
"LabelAutomaticUpdatesTmdb": "Activer les mises \u00e0 jour automatique depuis TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Activer les mises \u00e0 jour automatique depuis TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles sont ajout\u00e9es dans Fanart.tv. Les images existantes ne seront pas remplac\u00e9es.",
"LabelAutomaticUpdatesTmdbHelp": "Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles sont ajout\u00e9es dans TheMovieDB.org. Les images existantes ne seront pas remplac\u00e9es.",
"LabelAutomaticUpdatesTvdbHelp": "Si activ\u00e9, les nouvelles images seront t\u00e9l\u00e9charg\u00e9es automatiquement lorsqu'elles sont ajout\u00e9es dans TheTVDB.com. Les images existantes ne seront pas remplac\u00e9es.",
- "LabelFanartApiKey": "Cl\u00e9 d'api personnelle :",
- "LabelFanartApiKeyHelp": "Les requ\u00eates de fanart sans cl\u00e9 d'api personnelle renvoient des r\u00e9sultats approuv\u00e9s il y a plus de 7 jours. Avec une cl\u00e9 d'api personnelle, cette valeur tombe \u00e0 48 heures, et si vous \u00eates aussi membre fanart VIP, cette valeur tombera encore plus, \u00e0 environ 10 minutes.",
"ExtractChapterImagesHelp": "L'extraction d'images de chapitre permettra aux clients d'afficher des menus visuels pour la s\u00e9lection des sc\u00e8nes. Le processus peut \u00eatre long et consommateur de ressources processeur et peut n\u00e9cessiter de nombreux gigaoctets de stockage. Il s'ex\u00e9cute quand des vid\u00e9os sont d\u00e9couvertes et \u00e9galement comme t\u00e2che planifi\u00e9e. La planification peut \u00eatre modifi\u00e9e dans les options du planificateur de tache. Il n'est pas conseill\u00e9 d'ex\u00e9cuter cette t\u00e2che pendant les heures d'usage intensif.",
"LabelMetadataDownloadLanguage": "Langue de t\u00e9l\u00e9chargement pr\u00e9f\u00e9r\u00e9e:",
"ButtonAutoScroll": "D\u00e9filement automatique",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Aucun mot de passe requis pour les connexions par \"localhost\".",
"TabGuide": "Guide horaire",
"TabChannels": "Cha\u00eenes",
- "TabCollections": "Collections",
"HeaderChannels": "Cha\u00eenes",
"TabRecordings": "Enregistrements",
"TabScheduled": "Planifi\u00e9s",
"TabSeries": "S\u00e9ries",
- "TabFavorites": "Favoris",
- "TabMyLibrary": "Ma Biblioth\u00e8que",
"ButtonCancelRecording": "Annuler l'enregistrement",
"HeaderPrePostPadding": "Pr\u00e9-remplissage",
"LabelPrePaddingMinutes": "Minutes de Pr\u00e9-remplissage:",
@@ -416,13 +272,10 @@
"TabStatus": "\u00c9tat",
"TabSettings": "Param\u00e8tres",
"ButtonRefreshGuideData": "Rafra\u00eechir les donn\u00e9es du guide horaire.",
- "ButtonRefresh": "Actualiser",
- "ButtonAdvancedRefresh": "Mise \u00e0 jour avanc\u00e9e",
"OptionPriority": "Priorit\u00e9",
"OptionRecordOnAllChannels": "Enregistrer sur toutes les cha\u00eenes",
"OptionRecordAnytime": "Enregistrer \u00e0 n'importe quelle heure\/journ\u00e9e",
"OptionRecordOnlyNewEpisodes": "Enregistrer seulement les nouveaux \u00e9pisodes",
- "HeaderRepeatingOptions": "Options de r\u00e9p\u00e9tition",
"HeaderDays": "Jours",
"HeaderActiveRecordings": "Enregistrements actifs",
"HeaderLatestRecordings": "Derniers enregistrements",
@@ -431,17 +284,16 @@
"ButtonEdit": "Modifier",
"ButtonRecord": "Enregistrer",
"ButtonDelete": "Supprimer",
- "ButtonRemove": "Supprimer",
"OptionRecordSeries": "Enregistrer S\u00e9ries",
"HeaderDetails": "D\u00e9tails",
+ "OptionFolderSort": "R\u00e9pertoires",
+ "OptionBackdrop": "Image d'arri\u00e8re-plan",
"TitleLiveTV": "TV en direct",
"LabelNumberOfGuideDays": "Nombre de jours de donn\u00e9es du guide \u00e0 t\u00e9l\u00e9charger:",
"LabelNumberOfGuideDaysHelp": "Le t\u00e9l\u00e9chargement de plus de journ\u00e9es dans le guide horaire permet de programmer des enregistrements plus longtemps \u00e0 l'avance et de visualiser plus de contenus, mais prendra \u00e9galement plus de temps. \"Auto\" permettra une s\u00e9lection automatique bas\u00e9e sur le nombre de cha\u00eenes.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "Un fournisseur de service de TV en direct est requis pour continuer.",
"LiveTvPluginRequiredHelp": "Merci d'installer un de nos plugins disponibles, comme Next Pvr ou ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Personnaliser pour le type de m\u00e9dia:",
"OptionDownloadThumbImage": "Vignette",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Principal",
"HeaderFetchImages": "T\u00e9l\u00e9charger Images:",
"HeaderImageSettings": "Param\u00e8tres d'image",
- "TabOther": "Autre",
"LabelMaxBackdropsPerItem": "Nombre maximum d'images d'arri\u00e8re-plan par item:",
"LabelMaxScreenshotsPerItem": "Nombre maximum de captures d'\u00e9cran par item:",
"LabelMinBackdropDownloadWidth": "Largeur minimum d'image d'arri\u00e8re-plan \u00e0 t\u00e9l\u00e9charger:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u00c9quipe de tournage",
"HeaderAdditionalParts": "Parties Additionelles",
"ButtonSplitVersionsApart": "S\u00e9parer les versions",
+ "ButtonPlayTrailer": "Bande-annonce",
"LabelMissing": "Manquant(s)",
"LabelOffline": "Hors ligne",
"PathSubstitutionHelp": "Les substitutions de chemins d'acc\u00e8s sont utilis\u00e9es pour faire correspondre un chemin d'acc\u00e8s du serveur \u00e0 un chemin d'acc\u00e8s accessible par les clients. En autorisant un acc\u00e8s direct aux m\u00e9dias du serveur, les clients pourront les lire directement du r\u00e9seau et \u00e9viter l'utilisation inutiles des ressources du serveur en demandant du transcodage.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Qualit\u00e9 maximale",
"OptionEnableDebugTranscodingLogging": "Activer le d\u00e9bogage du transcodage dans le journal d'\u00e9v\u00e8nements",
"OptionEnableDebugTranscodingLoggingHelp": "Ceci cr\u00e9era un journal d\u2019\u00e9v\u00e9nements tr\u00e8s volumineux et n'est recommand\u00e9 que pour des besoins de diagnostic d'erreur.",
+ "ButtonNew": "Nouveau",
+ "TabMetadata": "M\u00e9tadonn\u00e9es",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titres",
+ "ButtonSearch": "Recherche",
+ "ButtonRemove": "Supprimer",
"EditCollectionItemsHelp": "Ajoutez ou supprimez n'importe quel film, s\u00e9rie, album, livre ou jeux que vous souhaitez grouper dans cette collection.",
"HeaderAddTitles": "Ajouter des \u00e9l\u00e9ments",
"LabelEnableDlnaPlayTo": "Activer DLNA \"Lire sur\"",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Chemins d'acc\u00e8s syst\u00e8me",
"LinkCommunity": "Communaut\u00e9",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Documentation de l'API",
"LabelFriendlyServerName": "Surnom du serveur:",
"LabelFriendlyServerNameHelp": "Ce nom sera utilis\u00e9 pour identifier le serveur. Si laiss\u00e9 vide, le nom d'ordinateur sera utilis\u00e9.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "La traduction d'Emby est un porjet en cours.",
"LabelReadHowYouCanContribute": "Voir comment vous pouvez contribuer.",
"HeaderNewCollection": "Nouvelle collection",
- "ButtonSubmit": "Soumettre",
"ButtonCreate": "Cr\u00e9er",
- "LabelCustomCss": "Css personnalis\u00e9e :",
- "LabelCustomCssHelp": "Appliquez votre propre feuille de styles css personnalis\u00e9e \u00e0 l'interface web.",
- "LabelLocalHttpServerPortNumber": "Num\u00e9ro de port http local :",
- "LabelLocalHttpServerPortNumberHelp": "Le port TCP que le serveur http d'Emby doit utiliser.",
- "LabelPublicHttpPort": "Num\u00e9ro de port http public :",
- "LabelPublicHttpPortHelp": "Le num\u00e9ro de port public \u00e0 mapper sur le port http local.",
- "LabelPublicHttpsPort": "Num\u00e9ro de port https public :",
- "LabelPublicHttpsPortHelp": "Le num\u00e9ro de port public \u00e0 mapper sur le port https local.",
- "LabelEnableHttps": "Renvoyer une url https en tant qu'adresse externe",
- "LabelEnableHttpsHelp": "Activez cette option pour que le serveur renvoie une adresse https aux clients pour son adresse externe.",
- "LabelHttpsPort": "Num\u00e9ro de port https local :",
- "LabelHttpsPortHelp": "Le port TCP que le serveur https d'Emby doit utiliser.",
"LabelWebSocketPortNumber": "Num\u00e9ro de port \"Web socket\":",
- "LabelEnableAutomaticPortMap": "Autoriser le mapping automatique de port",
- "LabelEnableAutomaticPortMapHelp": "Essayer de mapper automatiquement le port public au port local via UPnP. Cela peut ne pas fonctionner avec certains mod\u00e8les de routeurs.",
"LabelExternalDDNS": "Adresse WAN externe :",
"LabelExternalDDNSHelp": "Si vous avez un DNS dynamique, entrez le ici. Les applications Emby l'utiliseront pour se connecter \u00e0 distance. Laissez vide pour conserver la d\u00e9tection automatique.",
"TabResume": "Reprendre",
@@ -591,8 +433,12 @@
"HeaderProgram": "Programme",
"HeaderClients": "Clients",
"LabelCompleted": "Termin\u00e9 avec succ\u00e8s",
+ "LabelFailed": "\u00c9chou\u00e9",
"LabelSkipped": "Saut\u00e9",
"HeaderEpisodeOrganization": "Organisation des \u00e9pisodes",
+ "LabelSeries": "S\u00e9ries :",
+ "LabelSeasonNumber": "Num\u00e9ro de saison",
+ "LabelEpisodeNumber": "Num\u00e9ro d'\u00e9pisode",
"LabelEndingEpisodeNumber": "Num\u00e9ro d'\u00e9pisode final:",
"LabelEndingEpisodeNumberHelp": "Uniquement requis pour les fichiers multi-\u00e9pisodes",
"HeaderSupportTheTeam": "Aidez l'\u00e9quipe Emby",
@@ -627,16 +473,13 @@
"OptionMove": "D\u00e9placer",
"LabelTransferMethodHelp": "Copier ou d\u00e9placer des fichiers du r\u00e9pertoire surveill\u00e9",
"HeaderLatestNews": "Derni\u00e8res nouvelles",
- "HeaderHelpImproveProject": "Aider \u00e0 am\u00e9liorer Emby",
"HeaderRunningTasks": "T\u00e2ches en ex\u00e9cution",
"HeaderActiveDevices": "Appareils actifs",
"HeaderPendingInstallations": "Installations en suspens",
- "HeaderServerInformation": "Information du serveur",
"ButtonRestartNow": "Red\u00e9marrer maintenant",
"ButtonRestart": "Red\u00e9marrer",
"ButtonShutdown": "\u00c9teindre",
"ButtonUpdateNow": "Mettre \u00e0 jour maintenant",
- "TabHosting": "H\u00e9bergement",
"PleaseUpdateManually": "Merci d'\u00e9teindre le serveur et de le mettre \u00e0 jour manuellement.",
"NewServerVersionAvailable": "Une nouvelle version du serveur Emby est disponible !",
"ServerUpToDate": "Le serveur Emby est \u00e0 jour",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "D\u00e9termine la dur\u00e9e en secondes entre les message de pr\u00e9sence du serveur.",
"LabelDefaultUser": "Utilisateur par d\u00e9faut :",
"LabelDefaultUserHelp": "D\u00e9termine quelle biblioth\u00e8que d'utilisateur doit \u00eatre affich\u00e9e sur les appareils connect\u00e9s. Ces param\u00e8tres peuvent \u00eatre remplac\u00e9s pour chaque appareil par les configurations de profils.",
+ "HeaderPlaybackSettings": "Param\u00e8tres de lecture",
"TitleDlna": "DLNA",
- "TitleChannels": "Cha\u00eenes",
"HeaderServerSettings": "Param\u00e8tres du serveur",
"LabelWeatherDisplayLocation": "Emplacement de l'affichage de la m\u00e9t\u00e9o:",
"LabelWeatherDisplayLocationHelp": "Code ZIP US \/ Ville, \u00c9tat, Pays \/ Ville, Pays",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Lorsque d\u00e9sactiv\u00e9, les clients pourront afficher la s\u00e9lection du compte utilisateur de mani\u00e8re graphique sur l'\u00e9cran de connexion.",
"OptionOtherApps": "Autres applications",
"OptionMobileApps": "Applications mobiles",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Cliquez sur une notification pour configurer ses options d'envois",
+ "LabelNotificationEnabled": "Activer cette notification",
+ "NotificationOptionVideoPlayback": "Lecture vid\u00e9o d\u00e9marr\u00e9e",
+ "NotificationOptionAudioPlayback": "Lecture audio d\u00e9marr\u00e9e",
+ "NotificationOptionGamePlayback": "Lecture de jeu d\u00e9marr\u00e9e",
+ "NotificationOptionNewLibraryContent": "Nouveau contenu ajout\u00e9",
+ "NotificationOptionServerRestartRequired": "Un red\u00e9marrage du serveur est requis",
+ "LabelMonitorUsers": "Surveiller les activit\u00e9s de:",
+ "LabelSendNotificationToUsers": "Envoyer la notification \u00e0:",
+ "LabelUseNotificationServices": "Utiliser les services suivants:",
"NotificationOptionApplicationUpdateAvailable": "Mise \u00e0 jour d'application disponible",
"NotificationOptionApplicationUpdateInstalled": "Mise \u00e0 jour d'application install\u00e9e",
"NotificationOptionPluginUpdateInstalled": "Mise \u00e0 jour de plugin install\u00e9e",
"NotificationOptionPluginInstalled": "Plugin install\u00e9",
"NotificationOptionPluginUninstalled": "Plugin d\u00e9sinstall\u00e9",
- "NotificationOptionVideoPlayback": "Lecture vid\u00e9o d\u00e9marr\u00e9e",
- "NotificationOptionAudioPlayback": "Lecture audio d\u00e9marr\u00e9e",
- "NotificationOptionGamePlayback": "Lecture de jeu d\u00e9marr\u00e9e",
- "NotificationOptionVideoPlaybackStopped": "Lecture vid\u00e9o arr\u00eat\u00e9e",
- "NotificationOptionAudioPlaybackStopped": "Lecture audio arr\u00eat\u00e9e",
- "NotificationOptionGamePlaybackStopped": "Lecture de jeu arr\u00eat\u00e9e",
"NotificationOptionTaskFailed": "\u00c9chec de t\u00e2che planifi\u00e9e",
"NotificationOptionInstallationFailed": "\u00c9chec d'installation",
- "NotificationOptionNewLibraryContent": "Nouveau contenu ajout\u00e9",
- "NotificationOptionNewLibraryContentMultiple": "Nouveau contenu ajout\u00e9 (multiple)",
- "NotificationOptionCameraImageUploaded": "L'image de l'appareil photo a \u00e9t\u00e9 upload\u00e9e",
- "NotificationOptionUserLockedOut": "Utilisateur verrouill\u00e9",
- "HeaderSendNotificationHelp": "Les notifications sont pr\u00e9sent\u00e9es dans votre bo\u00eete de messagerie . Des options suppl\u00e9mentaires peuvent \u00eatre install\u00e9es depuis l'onglet Services.",
- "NotificationOptionServerRestartRequired": "Un red\u00e9marrage du serveur est requis",
- "LabelNotificationEnabled": "Activer cette notification",
- "LabelMonitorUsers": "Surveiller les activit\u00e9s de:",
- "LabelSendNotificationToUsers": "Envoyer la notification \u00e0:",
- "LabelUseNotificationServices": "Utiliser les services suivants:",
"CategoryUser": "Utilisateur",
"CategorySystem": "Syst\u00e8me",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Titre du message:",
"LabelAvailableTokens": "Jetons disponibles:",
"AdditionalNotificationServices": "Visitez le catalogue de plugins pour installer des services de notifications suppl\u00e9mentaires.",
+ "LabelSelectUsers": "S\u00e9lectionner des utilisateurs:",
"OptionAllUsers": "Tous les utilisateurs",
"OptionAdminUsers": "Administrateurs",
"OptionCustomUsers": "Personnalis\u00e9",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Droite",
"ButtonBack": "Retour arri\u00e8re",
"ButtonInfo": "Info",
- "ButtonOsd": "Affichage \u00e0 l'\u00e9cran",
"ButtonPageUp": "Page suivante",
"ButtonPageDown": "Page pr\u00e9c\u00e9dante",
"PageAbbreviation": "PG",
"ButtonHome": "Accueil",
- "ButtonSearch": "Recherche",
"ButtonSettings": "Param\u00e8tres",
"ButtonTakeScreenshot": "Prendre une copie d'\u00e9cran",
"ButtonLetterUp": "Lettre haut",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Lecture en cours",
"TabNavigation": "Navigation",
- "TabControls": "Contr\u00f4les",
+ "ButtonFullscreen": "Basculer en plein \u00e9cran",
"ButtonScenes": "Sc\u00e8nes",
"ButtonSubtitles": "Sous-titres",
+ "ButtonAudioTracks": "Pistes audio",
+ "ButtonPreviousTrack": "Piste pr\u00e9c\u00e9dente",
+ "ButtonNextTrack": "Piste suivante",
"ButtonStop": "Arr\u00eat",
"ButtonPause": "Pause",
- "ButtonNext": "Suivant",
- "ButtonPrevious": "Pr\u00e9c\u00e9dent",
"LabelGroupMoviesIntoCollections": "Grouper les films en collections",
"LabelGroupMoviesIntoCollectionsHelp": "Dans l'affichage des listes de films, les films faisant partie d'une collection seront affich\u00e9s comme un groupe d'items.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Erreur de plugin",
+ "TabControls": "Contr\u00f4les",
"ButtonVolumeUp": "Volume +",
"ButtonVolumeDown": "Volume -",
"ButtonMute": "Sourdine",
"HeaderLatestMedia": "Derniers m\u00e9dias",
+ "OptionNoSubtitles": "Aucun sous-titre",
"OptionSpecialFeatures": "Bonus",
+ "ChannelAccessHelp": "S\u00e9lectionner les cha\u00eenes \u00e0 partager avec cet utilisateur. Les administrateurs pourront modifier toutes les cha\u00eenes par le gestionnaire de m\u00e9tadonn\u00e9es.",
"HeaderCollections": "Collections",
"LabelProfileCodecsHelp": "S\u00e9par\u00e9s par des virgules. Peut \u00eatre laiss\u00e9 vide pour s'appliquer \u00e0 tous les codecs.",
"LabelProfileContainersHelp": "S\u00e9par\u00e9s par des virgules. Peut \u00eatre laiss\u00e9 vide pour s'appliquer \u00e0 tous les conteneurs.",
"HeaderResponseProfile": "Profil de r\u00e9ponse",
"LabelType": "Type :",
- "LabelPersonRole": "R\u00f4le:",
- "LabelPersonRoleHelp": "Le r\u00f4le n'est g\u00e9n\u00e9ralement applicable qu'aux acteurs.",
"LabelProfileContainer": "Conteneur:",
"LabelProfileVideoCodecs": "Codecs vid\u00e9os :",
"LabelProfileAudioCodecs": "Codecs audios :",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Si activ\u00e9, toutes les vid\u00e9os seront affich\u00e9es en DIDL en tant que \"object.item.videoItem\" au lieu de formats plus sp\u00e9cifiques comme, par exemple \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Types de m\u00e9dias support\u00e9s:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Lecture directe",
"TabContainers": "Conteneur",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "Ces valeurs contr\u00f4lent la fa\u00e7on dont le serveur Emby se pr\u00e9sentera aux appareils.",
"LabelMaxBitrate": "D\u00e9bit maximum:",
"LabelMaxBitrateHelp": "Sp\u00e9cifiez un d\u00e9bit maximum dans les environnements avec bande passante limit\u00e9e ou si l'appareil impose sa propre limite.",
- "LabelMaxStreamingBitrate": "D\u00e9bit max de streaming :",
- "LabelMaxStreamingBitrateHelp": "Sp\u00e9cifiez le d\u00e9bit max lors du streaming.",
- "LabelMaxChromecastBitrate": "D\u00e9bit Chromecast maximum",
- "LabelMaxStaticBitrate": "D\u00e9bit max de synchronisation :",
- "LabelMaxStaticBitrateHelp": "Sp\u00e9cifiez un d\u00e9bit max pour la synchronisation de contenu en haute qualit\u00e9.",
- "LabelMusicStaticBitrate": "D\u00e9bit de synchronisation de la musique",
- "LabelMusicStaticBitrateHelp": "Sp\u00e9cifier un d\u00e9bit maxi de synchronisation de la musique",
- "LabelMusicStreamingTranscodingBitrate": "D\u00e9bit du transcodage musique :",
- "LabelMusicStreamingTranscodingBitrateHelp": "Sp\u00e9cifiez le d\u00e9bit max pendant la diffusion de musique",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore les demande de transcodage de plage d'octets",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Si activ\u00e9, ces requ\u00eates\/demandes seront honor\u00e9es mais l'ent\u00eate de plage d'octets sera ignor\u00e9. ",
"LabelFriendlyName": "Surnom d'affichage",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Cette option est requise pour certains p\u00e9riph\u00e9riques qui ne sont pas capables d'effectuer une recherche d'octets correctement.",
"HeaderSubtitleDownloadingHelp": "Lorsqu'Emby scanne vos fichiers vid\u00e9o, il peut chercher les sous-titres manquant et les t\u00e9l\u00e9charger depuis un fournisseur comme OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "T\u00e9l\u00e9charger les sous-titres pour :",
- "MessageNoChapterProviders": "Installer un plugin de fournisseur de chapitre tel que ChapterDb pour activer les options suppl\u00e9mentaires de chapitre.",
- "LabelSkipIfGraphicalSubsPresent": "Sauter la vid\u00e9o si elle contient d\u00e9j\u00e0 des sous-titres graphiques",
- "LabelSkipIfGraphicalSubsPresentHelp": "Conserver les versions textes des sous-titres permettra une diffusion plus efficace et diminuera la probabilit\u00e9 d'un transcodage de la vid\u00e9o.",
"TabSubtitles": "Sous-titres",
- "TabChapters": "Chapitres",
- "HeaderDownloadChaptersFor": "T\u00e9l\u00e9charger les noms de chapitre pour:",
"LabelOpenSubtitlesUsername": "Nom d'utilisateur Open Subtitles:",
"LabelOpenSubtitlesPassword": "Mot de passe Open Subtitles:",
- "HeaderChapterDownloadingHelp": "Lorsqu'Emby scanne vos fichiers vid\u00e9o, il peut t\u00e9l\u00e9charger par Internet les noms des chapitres gr\u00e2ce \u00e0 un plugin comme ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Utiliser le flux audio par d\u00e9faut quelque soit la langue",
- "LabelSubtitlePlaybackMode": "Mode de sous-titres:",
"LabelDownloadLanguages": "T\u00e9l\u00e9chargement de langues:",
"ButtonRegister": "S'enregistrer",
+ "LabelSkipIfGraphicalSubsPresent": "Sauter la vid\u00e9o si elle contient d\u00e9j\u00e0 des sous-titres graphiques",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Conserver les versions textes des sous-titres permettra une diffusion plus efficace et diminuera la probabilit\u00e9 d'un transcodage de la vid\u00e9o.",
"LabelSkipIfAudioTrackPresent": "Sauter si la piste audio correspond \u00e0 la langue de t\u00e9l\u00e9chargement",
"LabelSkipIfAudioTrackPresentHelp": "D\u00e9cocher cette option va s'assurer que toutes les vid\u00e9os ont des sous-titres, quelque soit la langue de la piste audio.",
+ "NotificationOptionNewLibraryContentMultiple": "Nouveau contenu ajout\u00e9 (multiple)",
"HeaderSendMessage": "Envoyer un message",
"ButtonSend": "Envoyer",
"LabelMessageText": "Texte du message:",
+ "LabelService": "Service :",
+ "LabelStatus": "Statut:",
+ "LabelVersion": "Version :",
+ "LabelLastResult": "Dernier r\u00e9sultat :",
+ "ButtonOsd": "Affichage \u00e0 l'\u00e9cran",
"MessageNoAvailablePlugins": "Aucun plugin disponible.",
"LabelDisplayPluginsFor": "Afficher les plugins pour :",
- "PluginTabAppClassic": "Emby classique",
- "PluginTabAppTheater": "Emby theater",
- "LabelEpisodeNamePlain": "Nom d'\u00e9pisode",
- "LabelSeriesNamePlain": "Nom de la s\u00e9rie",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Num\u00e9ro de la saison",
- "LabelEpisodeNumberPlain": "Num\u00e9ro d'\u00e9pisode",
- "LabelEndingEpisodeNumberPlain": "Num\u00e9ro d'\u00e9pisode final",
"HeaderTypeText": "Entrer texte",
"LabelTypeText": "Texte",
+ "OptionDefaultSubtitles": "Par d\u00e9faut",
+ "OptionOnlyForcedSubtitles": "Seulement les sous-titres forc\u00e9s",
+ "OptionAlwaysPlaySubtitles": "Toujours afficher les sous-titres",
+ "OptionDefaultSubtitlesHelp": "Les sous-titres de la langue pr\u00e9f\u00e9r\u00e9e seront charg\u00e9s lorsque la langue de la piste audio est \u00e9trang\u00e8re.",
+ "OptionOnlyForcedSubtitlesHelp": "Seuls les sous-titres forc\u00e9s seront charg\u00e9s.",
+ "OptionAlwaysPlaySubtitlesHelp": "Les sous-titres correspondants \u00e0 la langue pr\u00e9f\u00e9r\u00e9e seront charg\u00e9s quelque soit la langue de la piste audio.",
+ "OptionNoSubtitlesHelp": "Par d\u00e9faut, les sous-titres ne seront pas charg\u00e9s.",
+ "TangibleSoftwareMessage": "Utilisation de convertisseurs Tangible Solutions Java\/C# par licence fournie.",
+ "HeaderCredits": "Cr\u00e9dits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favoris",
+ "TabMyLibrary": "Ma Biblioth\u00e8que",
+ "LabelCustomizeOptionsPerMediaType": "Personnaliser pour le type de m\u00e9dia:",
+ "LabelPlayDefaultAudioTrack": "Utiliser le flux audio par d\u00e9faut quelque soit la langue",
+ "LabelSubtitlePlaybackMode": "Mode de sous-titres:",
+ "TabOther": "Autre",
+ "NotificationOptionVideoPlaybackStopped": "Lecture vid\u00e9o arr\u00eat\u00e9e",
+ "NotificationOptionAudioPlaybackStopped": "Lecture audio arr\u00eat\u00e9e",
+ "NotificationOptionGamePlaybackStopped": "Lecture de jeu arr\u00eat\u00e9e",
"HeaderSearchForSubtitles": "Rechercher des sous-titres",
- "ButtonMore": "Plus",
"MessageNoSubtitleSearchResultsFound": "Aucun r\u00e9sultat trouv\u00e9.",
"TabDisplay": "Affichage",
"TabLanguages": "Langues",
- "TabAppSettings": "Param\u00e8tres de l'applications",
"LabelEnableThemeSongs": "Activer les chansons th\u00e8mes",
"LabelEnableBackdrops": "Activer les images d'arri\u00e8re-plans",
"LabelEnableThemeSongsHelp": "Si activ\u00e9, les chansons th\u00e8mes seront lues en arri\u00e8re-plan pendant la navigation dans les biblioth\u00e8ques.",
"LabelEnableBackdropsHelp": "Si activ\u00e9, les images d'arri\u00e8re-plan seront affich\u00e9es sur certaines pages pendant la navigation dans les biblioth\u00e8ques.",
- "HeaderHomePage": "Portail",
- "HeaderSettingsForThisDevice": "Param\u00e8tres pour cet appareil",
"OptionAuto": "Auto",
"OptionYes": "Oui",
"OptionNo": "Non",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "R\u00e9sultat de l'identification",
"LabelHomePageSection1": "Premi\u00e8re section du portail :",
"LabelHomePageSection2": "Seconde section du portail :",
"LabelHomePageSection3": "Troisi\u00e8me section du portail :",
- "LabelHomePageSection4": "Quatri\u00e8me section du portail:",
- "OptionMyMediaButtons": "Mes m\u00e9dias (boutons)",
- "OptionMyMedia": "Mes m\u00e9dias",
- "OptionMyMediaSmall": "Mes m\u00e9dias (petit)",
"OptionResumablemedia": "Reprendre",
"OptionLatestMedia": "Les plus r\u00e9cents",
- "OptionLatestChannelMedia": "Items de cha\u00eene les plus r\u00e9cents",
- "HeaderLatestChannelItems": "Items de cha\u00eene les plus r\u00e9cents",
"OptionNone": "Aucun",
"HeaderLiveTv": "TV en direct",
"HeaderReports": "Rapports",
"HeaderMetadataManager": "Gestionnaire de m\u00e9tadonn\u00e9es",
- "HeaderSettings": "Param\u00e8tres",
"MessageLoadingChannels": "Chargement du contenu de la cha\u00eene...",
- "MessageLoadingContent": "Chargement du contenu...",
"ButtonMarkRead": "Marquer comme lu",
"OptionDefaultSort": "Par d\u00e9faut",
"OptionCommunityMostWatchedSort": "Les plus lus",
"TabNextUp": "Prochains \u00e0 voir",
- "PlaceholderUsername": "Identifiant",
- "HeaderBecomeProjectSupporter": "Devenir un fan d'Emby",
"MessageNoMovieSuggestionsAvailable": "Aucune suggestion de film n'est actuellement disponible. Commencez \u00e0 regarder et notez vos films pour avoir des suggestions.",
"MessageNoCollectionsAvailable": "Les collections vous permettent de tirer parti de groupements personnalis\u00e9s de films, de s\u00e9ries, d'albums audio, de livres et de jeux. Cliquez sur le bouton + pour commencer \u00e0 cr\u00e9er des Collections.",
- "MessageNoPlaylistsAvailable": "Les listes de lectures vous permettent de cr\u00e9er des listes de contenus \u00e0 lire en continu en une fois. Pour ajouter un \u00e9l\u00e9ment \u00e0 la liste, faire un clic droit ou appuyer et maintenez, puis s\u00e9lectionnez Ajouter \u00e0 la liste de lecture",
- "MessageNoPlaylistItemsAvailable": "Cette liste de lecture est actuellement vide.",
+ "ButtonClose": "Fermer",
+ "HeaderConfirmDeletion": "Confirmer la suppression",
+ "HeaderHomePage": "Portail",
+ "HeaderSettingsForThisDevice": "Param\u00e8tres pour cet appareil",
"ButtonDismiss": "Annuler",
+ "ButtonMore": "Plus",
"ButtonEditOtherUserPreferences": "Modifier ce profil utilisateur, son avatar et ses pr\u00e9f\u00e9rences personnelles.",
+ "TitleChannels": "Cha\u00eenes",
"LabelChannelStreamQuality": "Qualit\u00e9 de diffusion internet pr\u00e9f\u00e9r\u00e9e :",
"LabelChannelStreamQualityHelp": "Avec une bande passante faible, limiter la qualit\u00e9 garantit un confort d'utilisation du streaming.",
"OptionBestAvailableStreamQuality": "Meilleur disponible",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Supprimer le contenu apr\u00e8s : (jours)",
"LabelChannelDownloadAgeHelp": "Le contenu t\u00e9l\u00e9charg\u00e9 plus vieux que cette valeur sera supprim\u00e9. Il restera disponible \u00e0 la lecture par streaming Internet.",
"ChannelSettingsFormHelp": "Installer des cha\u00eenes comme \"Trailers\" et \"Vimeo\" dans le catalogue des plugins.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Listes de lecture",
+ "ButtonAddToCollection": "Ajouter \u00e0 une collection",
+ "ButtonSubmit": "Soumettre",
"ViewTypeMovies": "Films",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Jeux",
"ViewTypeMusic": "Musique",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artistes",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Cha\u00eenes",
- "ViewTypeLiveTV": "TV en direct",
- "ViewTypeLiveTvNowPlaying": "En cours de diffusion",
- "ViewTypeLatestGames": "Derniers jeux",
- "ViewTypeRecentlyPlayedGames": "R\u00e9cemment jou\u00e9",
- "ViewTypeGameFavorites": "Favoris",
- "ViewTypeGameSystems": "Syst\u00e8me de jeu",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Reprise",
- "ViewTypeTvNextUp": "A venir",
- "ViewTypeTvLatest": "Derniers",
- "ViewTypeTvShowSeries": "S\u00e9ries",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "S\u00e9ries favorites",
- "ViewTypeTvFavoriteEpisodes": "Episodes favoris",
- "ViewTypeMovieResume": "Reprise",
- "ViewTypeMovieLatest": "Dernier",
- "ViewTypeMovieMovies": "Films",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favoris",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Dernier",
- "ViewTypeMusicPlaylists": "Listes de lectures",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Artiste de l'album",
"HeaderOtherDisplaySettings": "Param\u00e8tres d'affichage",
- "ViewTypeMusicSongs": "Chansons",
- "ViewTypeMusicFavorites": "Favoris",
- "ViewTypeMusicFavoriteAlbums": "Albums favoris",
- "ViewTypeMusicFavoriteArtists": "Artistes favoris",
- "ViewTypeMusicFavoriteSongs": "Chansons favorites",
- "HeaderMyViews": "Mes affichages",
"LabelSelectFolderGroups": "Grouper automatiquement le contenu des r\u00e9pertoires suivants dans les vues tels que Films, Musiques et TV :",
"LabelSelectFolderGroupsHelp": "Les r\u00e9pertoires qui ne sont pas coch\u00e9s seront affich\u00e9s tels quels avec leur propre disposition.",
+ "ViewTypeChannels": "Cha\u00eenes",
+ "ViewTypeLiveTV": "TV en direct",
"OptionDisplayAdultContent": "Afficher le contenu adulte",
+ "MessageNoChapterProviders": "Installer un plugin de fournisseur de chapitre tel que ChapterDb pour activer les options suppl\u00e9mentaires de chapitre.",
+ "TabChapters": "Chapitres",
+ "HeaderDownloadChaptersFor": "T\u00e9l\u00e9charger les noms de chapitre pour:",
+ "HeaderChapterDownloadingHelp": "Lorsqu'Emby scanne vos fichiers vid\u00e9o, il peut t\u00e9l\u00e9charger par Internet les noms des chapitres gr\u00e2ce \u00e0 un plugin comme ChapterDb.",
"OptionLibraryFolders": "R\u00e9pertoires de m\u00e9dias",
+ "LabelHomePageSection4": "Quatri\u00e8me section du portail:",
+ "OptionLatestChannelMedia": "Items de cha\u00eene les plus r\u00e9cents",
+ "HeaderLatestChannelItems": "Items de cha\u00eene les plus r\u00e9cents",
"TitleRemoteControl": "Contr\u00f4le \u00e0 distance",
+ "HeaderMyViews": "Mes affichages",
"OptionLatestTvRecordings": "Les plus r\u00e9cents enregistrements",
+ "ButtonRefresh": "Actualiser",
"LabelProtocolInfo": "Infos sur le protocole:",
"LabelProtocolInfoHelp": "La valeur qui sera utilis\u00e9e pour r\u00e9pondre aux requ\u00eates GetProtocolInfo du p\u00e9riph\u00e9rique.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby supporte nativement les fichiers de m\u00e9tadonn\u00e9es Nfo. Pour activer ou d\u00e9sactiver les m\u00e9tadonn\u00e9es Nfo, veuillez utiliser l'onglet Avanc\u00e9 pour configurer les options des types de m\u00e9dias.",
- "LabelKodiMetadataUser": "Synchroniser les donn\u00e9es de visionnage utilisateur en nfo pour :",
- "LabelKodiMetadataUserHelp": "Activez cette option pour synchroniser les donn\u00e9es de lecture entre le serveur Emby et les fichiers Nfo.",
- "LabelKodiMetadataDateFormat": "Format de la date de sortie :",
- "LabelKodiMetadataDateFormatHelp": "Toutes les dates du nfo seront lues et \u00e9crites en utilisant ce format.",
- "LabelKodiMetadataSaveImagePaths": "Sauvegarder le chemin des images dans les fichiers nfo",
- "LabelKodiMetadataSaveImagePathsHelp": "Ceci est recommand\u00e9 si les noms des fichiers d'images ne sont pas conformes aux recommandations d'Xbmc.",
- "LabelKodiMetadataEnablePathSubstitution": "Activer la substitution de chemins",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Activer la substitution du chemin des images en utilisant les param\u00e8tres de substitution des chemins du serveur.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Voir substitution de chemins.",
- "OptionDisplayChannelsInline": "Int\u00e9grer les affichage des chaines dans mes vues",
- "OptionDisplayChannelsInlineHelp": "Si aciv\u00e9, les chaines seront affich\u00e9s directement \u00e0 c\u00f4t\u00e9 des autres vues. Si d\u00e9sactiv\u00e9, elles seront affich\u00e9es dans une vue de cha\u00eenes s\u00e9par\u00e9e.",
"LabelDisplayCollectionsView": "Afficher un aper\u00e7u de collections pour montrer les collections de film",
- "LabelDisplayCollectionsViewHelp": "Ceci cr\u00e9era une vue s\u00e9par\u00e9e pour l'affichage des collections que vous avez cr\u00e9\u00e9es ou auxquelles vous avez acc\u00e8s. Pour cr\u00e9er une collection, faites un clic-droit ou tapotez et maintenez l'\u00e9cran sur un film, puis choisissez 'Ajouter \u00e0 une collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copier les extrafanart dans les extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "Pendant le t\u00e9l\u00e9chargement, les images peuvent \u00eatre sauvegard\u00e9es en tant qu'extrafanart et extrathumbs pour am\u00e9liorer la compatibilit\u00e9 avec le skin Xbmc.",
+ "HeaderSubtitles": "Sous-titres",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Fichiers log du serveur :",
@@ -1029,6 +820,8 @@
"LabelAppName": "Nom de l'app",
"LabelAppNameExample": "Exemple: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Permet \u00e0 une application de communiquer avec le serveur Emby.",
+ "TabUsers": "Utilisateurs",
+ "TabScheduledTasks": "T\u00e2ches planifi\u00e9es",
"HeaderHttpHeaders": "En-t\u00eates HTTP",
"HeaderIdentificationHeader": "En-t\u00eate d'identification",
"LabelValue": "Valeur :",
@@ -1041,19 +834,19 @@
"TabFilter": "Filtre",
"ButtonView": "Affichage",
"LabelPageSize": "Items par page :",
- "LabelPath": "Chemin",
"LabelView": "Visualisation :",
- "TabUsers": "Utilisateurs",
- "LabelSortName": "Cl\u00e9 de tri",
- "LabelDateAdded": "Date d'ajout",
+ "LabelManagement": "Gestion :",
"HeaderFeatures": "Fonctionnalit\u00e9s",
"HeaderAdvanced": "Avanc\u00e9",
"ButtonSync": "Sync",
- "TabScheduledTasks": "T\u00e2ches planifi\u00e9es",
"HeaderChapters": "Chapitres",
"HeaderResumeSettings": "Reprendre les param\u00e8tres",
"TabSync": "Sync",
"TitleUsers": "Utilisateurs",
+ "LabelMaxStreamingBitrate": "D\u00e9bit max de streaming :",
+ "LabelMaxStreamingBitrateHelp": "Sp\u00e9cifiez le d\u00e9bit max lors du streaming.",
+ "LabelMaxStaticBitrate": "D\u00e9bit max de synchronisation :",
+ "LabelMaxStaticBitrateHelp": "Sp\u00e9cifiez un d\u00e9bit max pour la synchronisation de contenu en haute qualit\u00e9.",
"LabelProtocol": "Protocole:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Streaming Http Live",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Diffusion",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Ajouter \u00e0 la liste de lecture",
+ "MessageNoPlaylistsAvailable": "Les listes de lectures vous permettent de cr\u00e9er des listes de contenus \u00e0 lire en continu en une fois. Pour ajouter un \u00e9l\u00e9ment \u00e0 la liste, faire un clic droit ou appuyer et maintenez, puis s\u00e9lectionnez Ajouter \u00e0 la liste de lecture",
+ "MessageNoPlaylistItemsAvailable": "Cette liste de lecture est actuellement vide.",
"TabPlaylists": "Listes de lecture",
- "ButtonClose": "Fermer",
"LabelAllLanguages": "Toutes les langues",
"HeaderBrowseOnlineImages": "Parcourir les images en ligne",
"LabelSource": "Source :",
@@ -1080,7 +874,6 @@
"OptionBox": "Bo\u00eetier",
"OptionBoxRear": "Dos de bo\u00eetier",
"OptionDisc": "Disque",
- "OptionIcon": "Ic\u00f4ne",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Non identifi\u00e9",
"OptionMissingParentalRating": "Note de contr\u00f4le parental manquante",
"OptionStub": "Coupure",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Saison 0",
"LabelReport": "Rapport:",
"OptionReportSongs": "Chansons",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artistes",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Vid\u00e9os adultes",
+ "ButtonMoreItems": "Plus",
"HeaderActivity": "Activit\u00e9",
"ScheduledTaskStartedWithName": "{0} a commenc\u00e9",
"ScheduledTaskCancelledWithName": "{0} a \u00e9t\u00e9 annul\u00e9",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Le t\u00e9l\u00e9chargement des sous-titres pour {0} a \u00e9chou\u00e9.",
"LabelRunningTimeValue": "Dur\u00e9e: {0}",
"LabelIpAddressValue": "Adresse IP: {0}",
- "UserLockedOutWithName": "L'utilisateur {0} a \u00e9t\u00e9 verrouill\u00e9",
"UserConfigurationUpdatedWithName": "La configuration utilisateur de {0} a \u00e9t\u00e9 mise \u00e0 jour",
"UserCreatedWithName": "L'utilisateur {0} a \u00e9t\u00e9 cr\u00e9\u00e9.",
"UserPasswordChangedWithName": "Le mot de passe pour l'utilisateur {0} a \u00e9t\u00e9 modifi\u00e9.",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Le serveur Emby a \u00e9t\u00e9 mis \u00e0 jour",
"AuthenticationSucceededWithUserName": "{0} s'est authentifi\u00e9 avec succ\u00e8s",
"FailedLoginAttemptWithUserName": "Echec d'une tentative de connexion de {0}",
- "UserDownloadingItemWithValues": "{0} est en train de t\u00e9l\u00e9charger {1}",
"UserStartedPlayingItemWithValues": "{0} vient de commencer la lecture de {1}",
"UserStoppedPlayingItemWithValues": "{0} vient d'arr\u00eater la lecture de {1}",
"AppDeviceValues": "Application : {0}, Appareil: {1}",
"ProviderValue": "Fournisseur : {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Vid\u00e9o",
+ "MessageLoadingContent": "Chargement du contenu...",
"LabelChannelDownloadSizeLimit": "Taille limite de t\u00e9l\u00e9chargement (Go) :",
- "LabelChannelDownloadSizeLimitHelpText": "Limiter la taille du r\u00e9pertoire de t\u00e9l\u00e9chargement des cha\u00eenes.",
+ "LabelMusicStaticBitrate": "D\u00e9bit de synchronisation de la musique",
+ "LabelMusicStaticBitrateHelp": "Sp\u00e9cifier un d\u00e9bit maxi de synchronisation de la musique",
+ "LabelMusicStreamingTranscodingBitrate": "D\u00e9bit du transcodage musique :",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Sp\u00e9cifiez le d\u00e9bit max pendant la diffusion de musique",
"HeaderRecentActivity": "Activit\u00e9 r\u00e9cente",
"HeaderPeople": "Personnes",
"HeaderDownloadPeopleMetadataFor": "T\u00e9l\u00e9charger la biographie et les images pour:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Afficher une vue mosa\u00efque pour montrer les dossiers media en int\u00e9gralit\u00e9.",
"ViewTypeLiveTvRecordingGroups": "Enregistrements",
"ViewTypeLiveTvChannels": "Cha\u00eenes",
- "LabelEasyPinCode": "Code Easy Pin :",
- "EasyPasswordHelp": "Votre code Easy Pin est utilis\u00e9 pour l'acc\u00e8s offline par les applications Emby compatibles. Il peut \u00e9galement servir \u00e0 simplifier votre connexion depuis votre r\u00e9seau local.",
- "LabelInNetworkSignInWithEasyPassword": "Activer l'authentification simplifi\u00e9e dans les r\u00e9seaux domestiques avec mon code Easy Pin",
- "LabelInNetworkSignInWithEasyPasswordHelp": "Si vous activez cette option, vous pourrez utiliser votre code Easy Pin pour vous connecter aux applications Emby depuis l'int\u00e9rieur de votre r\u00e9seau local. Votre mot de passe habituel ne sera requis que depuis l'ext\u00e9rieur. Si le code Pin n'est pas d\u00e9fini, vous n'aurez pas besoin de mot de passe depuis l'int\u00e9rieur de votre r\u00e9seau local.",
"HeaderPassword": "Mot de passe",
"HeaderLocalAccess": "Acc\u00e8s local",
"HeaderViewOrder": "Ordre d'affichage",
- "ButtonResetEasyPassword": "R\u00e9initialiser le code Easy Pin",
"LabelSelectUserViewOrder": "Choisissez l'ordre dans lequel les pages des applications Emby seront affich\u00e9es",
+ "LabelReleaseDate": "Date de sortie",
+ "LabelEndDate": "Date de fin:",
+ "LabelYear": "Ann\u00e9e",
+ "FolderTypeMixed": "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",
+ "LabelArtists": "Artistes",
+ "LabelArtistsHelp": "S\u00e9parer les \u00e9l\u00e9ments par un point-virgule ;",
+ "ButtonAdvancedRefresh": "Mise \u00e0 jour avanc\u00e9e",
+ "LabelPersonRole": "R\u00f4le:",
+ "LabelPersonRoleHelp": "Le r\u00f4le n'est g\u00e9n\u00e9ralement applicable qu'aux acteurs.",
+ "LabelPath": "Chemin",
+ "LabelSortName": "Cl\u00e9 de tri",
+ "LabelDateAdded": "Date d'ajout",
"LabelMetadataRefreshMode": "Mode de mise \u00e0 jour des m\u00e9tadonn\u00e9es :",
"LabelImageRefreshMode": "Mode de mise \u00e0 jour des images :",
"OptionDownloadMissingImages": "T\u00e9l\u00e9charger les images manquantes",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Info personnes",
"HeaderIdentifyItem": "Identification de l'\u00e9l\u00e9ment",
"HeaderIdentifyItemHelp": "Entrez un ou plusieurs crit\u00e8res de recherche. Retirez des crit\u00e8res pour \u00e9largir les r\u00e9sultats de la recherche.",
- "HeaderConfirmDeletion": "Confirmer la suppression",
"LabelFollowingFileWillBeDeleted": "Le fichier suivant sera supprim\u00e9 :",
"LabelIfYouWishToContinueWithDeletion": "Si vous souhaitez continuer, veuillez confirmer en entrant la valeur de :",
"ButtonIdentify": "Identifier",
"LabelAlbumArtist": "Album de l'artiste",
- "LabelAlbumArtists": "Artistes de l'album :",
"LabelAlbum": "Album :",
"LabelCommunityRating": "Note de la communaut\u00e9",
"LabelVoteCount": "Nombre de votes",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Slogan",
"LabelOverview": "Synopsis",
"LabelShortOverview": "R\u00e9sum\u00e9",
- "LabelReleaseDate": "Date de sortie",
- "LabelYear": "Ann\u00e9e",
"LabelPlaceOfBirth": "Lieu de naissance :",
- "LabelEndDate": "Date de fin:",
"LabelAirDate": "Jours de diffusion",
"LabelAirTime:": "Heure de diffusion",
"LabelRuntimeMinutes": "Dur\u00e9e (minutes)",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "R\u00e9glages m\u00e9tadonn\u00e9es",
"LabelLockItemToPreventChanges": "Verrouiller cet \u00e9l\u00e9ment pour \u00e9viter de futures modifications",
"MessageLeaveEmptyToInherit": "Laisser vide pour h\u00e9riter des r\u00e9glages de l'\u00e9l\u00e9ment parent, ou de la valeur globale par d\u00e9faut.",
- "TabDonate": "Faire un don",
"HeaderDonationType": "Type de don :",
"OptionMakeOneTimeDonation": "Faire un don s\u00e9par\u00e9",
- "OptionOneTimeDescription": "Il s'agit d'une donation additionnelle \u00e0 l'\u00e9quipe pour montrer votre support. Elle ne vous apportera pas de b\u00e9n\u00e9fices suppl\u00e9mentaires et ne vous donnera pas de cl\u00e9 de supporteur.",
- "OptionLifeTimeSupporterMembership": "Partenariat de supporteur \u00e0 vie",
- "OptionYearlySupporterMembership": "Partenariat de supporteur annuel",
- "OptionMonthlySupporterMembership": "Partenariat de supporteur mensuel",
"OptionNoTrailer": "Aucune bande-annonce",
"OptionNoThemeSong": "Pas de th\u00e8me de musique",
"OptionNoThemeVideo": "Pas de th\u00e8me vid\u00e9o",
"LabelOneTimeDonationAmount": "Montant du don :",
- "ButtonDonate": "Faire un don",
- "ButtonPurchase": "Acheter",
"OptionActor": "Acteur(trice)",
"OptionComposer": "Compositeur:",
"OptionDirector": "R\u00e9alisateur:",
"OptionGuestStar": "Invit\u00e9s d'honneur",
"OptionProducer": "Producteur",
"OptionWriter": "Sc\u00e9nariste",
+ "LabelEpisodeNamePlain": "Nom d'\u00e9pisode",
+ "LabelSeriesNamePlain": "Nom de la s\u00e9rie",
+ "LabelSeasonNumberPlain": "Num\u00e9ro de la saison",
+ "LabelEpisodeNumberPlain": "Num\u00e9ro d'\u00e9pisode",
+ "LabelEndingEpisodeNumberPlain": "Num\u00e9ro d'\u00e9pisode final",
+ "OptionOneTimeDescription": "Il s'agit d'une donation additionnelle \u00e0 l'\u00e9quipe pour montrer votre support. Elle ne vous apportera pas de b\u00e9n\u00e9fices suppl\u00e9mentaires et ne vous donnera pas de cl\u00e9 de supporteur.",
"LabelAirDays": "Jours de diffusion",
"LabelAirTime": "Heure de diffusion",
"HeaderMediaInfo": "Information m\u00e9dia",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Info d\u00e9velopeur",
"HeaderRevisionHistory": "Historique des r\u00e9visions",
"ButtonViewWebsite": "Voir le site",
+ "ViewTypeLiveTvNowPlaying": "En cours de diffusion",
+ "ViewTypeLatestGames": "Derniers jeux",
+ "ViewTypeRecentlyPlayedGames": "R\u00e9cemment jou\u00e9",
+ "ViewTypeGameFavorites": "Favoris",
+ "ViewTypeGameSystems": "Syst\u00e8me de jeu",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Reprise",
+ "ViewTypeTvNextUp": "A venir",
+ "ViewTypeTvLatest": "Derniers",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Reprise",
+ "ViewTypeMovieLatest": "Dernier",
+ "ViewTypeMovieMovies": "Films",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favoris",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Dernier",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Artiste de l'album",
+ "TabDonate": "Faire un don",
+ "OptionLifeTimeSupporterMembership": "Partenariat de supporteur \u00e0 vie",
+ "OptionYearlySupporterMembership": "Partenariat de supporteur annuel",
+ "OptionMonthlySupporterMembership": "Partenariat de supporteur mensuel",
+ "ViewTypeTvShowSeries": "S\u00e9ries",
+ "ViewTypeTvFavoriteSeries": "S\u00e9ries favorites",
+ "ViewTypeTvFavoriteEpisodes": "Episodes favoris",
"HeaderXmlSettings": "R\u00e9glages Xml",
"HeaderXmlDocumentAttributes": "Attributs des documents Xml",
"HeaderXmlDocumentAttribute": "Attribut des documents Xml",
"XmlDocumentAttributeListHelp": "Ces attributs sont appliqu\u00e9s \u00e0 l'\u00e9l\u00e9ment racine de chaque r\u00e9ponse xml",
"OptionSaveMetadataAsHidden": "Sauvegarder les m\u00e9ta-donn\u00e9es et les images en tant que fichier cach\u00e9s",
+ "ViewTypeMusicSongs": "Chansons",
"LabelExtractChaptersDuringLibraryScan": "Extraire les images des chapitres pendant le scan de la biblioth\u00e8que",
"LabelExtractChaptersDuringLibraryScanHelp": "Si activ\u00e9, les images de chapitres seront extraites lors de l'importation de vid\u00e9os pendant le scan de la librairie. Sinon elles seront extraites pendant la t\u00e2che programm\u00e9e, permettant de terminer plus rapidement les scans r\u00e9guliers de la librairie.",
- "LabelConnectGuestUserName": "Nom d'utilisateur Emby ou adresse email de l'invit\u00e9 :",
+ "ViewTypeMusicFavorites": "Favoris",
+ "ViewTypeMusicFavoriteAlbums": "Albums favoris",
+ "ViewTypeMusicFavoriteArtists": "Artistes favoris",
+ "ViewTypeMusicFavoriteSongs": "Chansons favorites",
+ "ButtonAddLocalUser": "Ajouter un utilisateur local",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Nom d'utilisateur Emby ou adresse email :",
"LabelConnectUserNameHelp": "Connectez cet utilisateur \u00e0 un compte Emby pour activer l'acc\u00e8s par code Easy Pin depuis n'importe quelle application Emby sans avoir \u00e0 conna\u00eetre l'adresse IP du serveur.",
- "ButtonLearnMoreAboutEmbyConnect": "Plus d'infos sur Emby Connect",
+ "ButtonNext": "Suivant",
+ "ButtonPrevious": "Pr\u00e9c\u00e9dent",
"LabelExternalPlayers": "Lecteurs externes:",
"LabelExternalPlayersHelp": "Afficher les boutons pour lire du contenu sur le lecteur externe. Ceci est valable uniquement sur des appareils supportant les URLs, g\u00e9n\u00e9ralement Android et iOS. Avec les lecteurs externes il n'y a g\u00e9n\u00e9ralement pas de support pour le contr\u00f4le \u00e0 distance ou la reprise.",
- "LabelNativeExternalPlayersHelp": "Afficher les boutons pour lire le contenu sur les lecteurs externes.",
- "LabelEnableItemPreviews": "Activer les aper\u00e7us des \u00e9l\u00e9ments",
- "LabelEnableItemPreviewsHelp": "Activez cette option pour faire appara\u00eetre des aper\u00e7us d\u00e9roulants lorsque vous cliquez sur les \u00e9l\u00e9ments de certains \u00e9crans",
+ "ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
"HeaderSubtitleProfile": "Profil de sous-titre",
"HeaderSubtitleProfiles": "Profils de sous-titre",
"HeaderSubtitleProfilesHelp": "Les profils de sous-titre d\u00e9crivent les formats de sous-titre support\u00e9s par l'appareil.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Sous-titres segment\u00e9 HIs",
"LabelSubtitleFormatHelp": "Exemple: srt",
"ButtonLearnMore": "En savoir plus",
+ "HeaderKodiMetadataHelp": "Emby supporte nativement les fichiers de m\u00e9tadonn\u00e9es Nfo. Pour activer ou d\u00e9sactiver les m\u00e9tadonn\u00e9es Nfo, veuillez utiliser l'onglet Avanc\u00e9 pour configurer les options des types de m\u00e9dias.",
+ "LabelKodiMetadataUser": "Synchroniser les donn\u00e9es de visionnage utilisateur en nfo pour :",
+ "LabelKodiMetadataUserHelp": "Activez cette option pour synchroniser les donn\u00e9es de lecture entre le serveur Emby et les fichiers Nfo.",
+ "LabelKodiMetadataDateFormat": "Format de la date de sortie :",
+ "LabelKodiMetadataDateFormatHelp": "Toutes les dates du nfo seront lues et \u00e9crites en utilisant ce format.",
+ "LabelKodiMetadataSaveImagePaths": "Sauvegarder le chemin des images dans les fichiers nfo",
+ "LabelKodiMetadataSaveImagePathsHelp": "Ceci est recommand\u00e9 si les noms des fichiers d'images ne sont pas conformes aux recommandations d'Xbmc.",
+ "LabelKodiMetadataEnablePathSubstitution": "Activer la substitution de chemins",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Activer la substitution du chemin des images en utilisant les param\u00e8tres de substitution des chemins du serveur.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Voir substitution de chemins.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copier les extrafanart dans les extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Pendant le t\u00e9l\u00e9chargement, les images peuvent \u00eatre sauvegard\u00e9es en tant qu'extrafanart et extrathumbs pour am\u00e9liorer la compatibilit\u00e9 avec le skin Xbmc.",
"TabPlayback": "Lecture",
"HeaderLanguagePreferences": "Pr\u00e9f\u00e9rences de langue",
"TabCinemaMode": "Mode cin\u00e9ma",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Utiliser seulement les bandes-annonces du contenu non lu",
"LabelEnableIntroParentalControl": "Activer le control parental intelligent",
"LabelEnableIntroParentalControlHelp": "Les bandes-annonces seront s\u00e9lectionn\u00e9es seulement si niveau de contr\u00f4le parental est \u00e9gal ou inf\u00e9rieur \u00e0 celui du contenu en cours de lecture.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Ces fonctionnalit\u00e9s n\u00e9cessitent un abonnement actif comme supporteur et l'installation du plugin \"Trailer channel\".",
"OptionTrailersFromMyMoviesHelp": "N\u00e9cessite la configuration des bandes-annonces locales.",
"LabelCustomIntrosPath": "Chemin des intros personnalis\u00e9es :",
"LabelCustomIntrosPathHelp": "Un r\u00e9pertoire contenant des fichiers vid\u00e9os. Une vid\u00e9o sera s\u00e9lectionn\u00e9e al\u00e9atoirement et lue apr\u00e8s les bandes-annonces.",
- "ValueSpecialEpisodeName": "Sp\u00e9cial - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Ces fonctionnalit\u00e9s n\u00e9cessitent un abonnement actif comme supporteur et l'installation du plugin \"Trailer channel\".",
"LabelSelectInternetTrailersForCinemaMode": "Bandes-annonces Internet :",
"OptionUpcomingDvdMovies": "Inclure les bandes-annonces des nouveaut\u00e9s et des films \u00e0 venir sur DVD et Blu-Ray",
"OptionUpcomingStreamingMovies": "Inclure les bandes-annonces des nouveaut\u00e9s et des films \u00e0 l'affiche sur Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Les utilisateurs ont la possibilit\u00e9 de d\u00e9sactiver le mode cin\u00e9ma dans leurs propres pr\u00e9f\u00e9rences.",
"LabelEnableCinemaMode": "Activer le mode cin\u00e9ma",
"HeaderCinemaMode": "Mode cin\u00e9ma",
+ "TabDevices": "Appareils",
+ "LabelLocalHttpServerPortNumber": "Num\u00e9ro de port http local :",
+ "LabelLocalHttpServerPortNumberHelp": "Le port TCP que le serveur http d'Emby doit utiliser.",
+ "LabelEnableAutomaticPortMap": "Autoriser le mapping automatique de port",
+ "LabelEnableAutomaticPortMapHelp": "Essayer de mapper automatiquement le port public au port local via UPnP. Cela peut ne pas fonctionner avec certains mod\u00e8les de routeurs.",
"LabelDateAddedBehavior": "Choix des dates lors de l'ajout de nouveau contenu:",
"OptionDateAddedImportTime": "Utiliser la dates du scan de la biblioth\u00e8que",
"OptionDateAddedFileTime": "Utiliser la date de cr\u00e9ation de fichier",
"LabelDateAddedBehaviorHelp": "Si une m\u00e9dadonn\u00e9e est pr\u00e9sente, elle sera toujours utilis\u00e9e avant toutes ces options.",
"LabelNumberTrailerToPlay": "Nombre de bandes-annonces \u00e0 lire :",
+ "LabelChannelDownloadSizeLimitHelpText": "Limiter la taille du r\u00e9pertoire de t\u00e9l\u00e9chargement des cha\u00eenes.",
"TitleDevices": "Appareils",
"TabCameraUpload": "Upload du contenu de l'appareil photo",
- "TabDevices": "Appareils",
"HeaderCameraUploadHelp": "Uploadez automatiquement dans Emby les photos et vid\u00e9os prises depuis votre mobile.",
"MessageNoDevicesSupportCameraUpload": "Vous n'avez actuellement aucun appareil supportant l'upload du contenu de l'appareil photo.",
"LabelCameraUploadPath": "R\u00e9pertoire d'upload du contenu de l'appareil photo :",
"LabelCameraUploadPathHelp": "Si vous le souhaitez, vous pouvez choisir un r\u00e9pertoire d'upload personnalis\u00e9. Sinon, le r\u00e9pertoire par d\u00e9faut sera utilis\u00e9. Si vous utilisez un r\u00e9pertoire personnalis\u00e9, vous devrez le rajouter \u00e0 la biblioth\u00e8que.",
"LabelCreateCameraUploadSubfolder": "Cr\u00e9er un sous-dossier pour chaque appareil",
"LabelCreateCameraUploadSubfolderHelp": "Des r\u00e9pertoires sp\u00e9cifiques peuvent \u00eatres affect\u00e9 aux appareils en cliquant sur le bouton correspondant dans la page des appareils.",
+ "ButtonInviteUser": "Inviter un utilisateur",
"LabelCustomDeviceDisplayName": "Nom d'affichage:",
"LabelCustomDeviceDisplayNameHelp": "Entrez un nom d'affichage personnalis\u00e9 ou laissez vide pour utiliser le nom rapport\u00e9 par l'appareil.",
"HeaderInviteUser": "Inviter un utilisateur",
- "LabelConnectGuestUserNameHelp": "Ceci est le nom d'utilisateur ou l'adress email que votre ami utilise pour se connecter au site web Emby.",
"HeaderInviteUserHelp": "Le partage de m\u00e9dias avec vos amis n'a jamais \u00e9t\u00e9 aussi facile avec Emby Connect.",
"ButtonSendInvitation": "Envoyez un invitation",
- "HeaderSignInWithConnect": "Se connecter avec Emby Connect",
"HeaderGuests": "Invit\u00e9s",
"HeaderLocalUsers": "Utilisateurs locaux",
"HeaderPendingInvitations": "Invitations en attente",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Jours de la semaine",
"OptionWeekends": "Week-ends",
"MessageProfileInfoSynced": "Information de profil utilisateur synchronis\u00e9 avec Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optionnel : liez votre compte Emby",
"ButtonTrailerReel": "Bobine bande-annonce",
"HeaderTrailerReel": "Bobine Bande-annonce",
"OptionPlayUnwatchedTrailersOnly": "Lire seulement les bandes-annonces non lues.",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "Aucune bande-annonce trouv\u00e9e. Installez la cha\u00eene Bande-annonces pour am\u00e9liorer votre exp\u00e9rience, par l'ajout d'une biblioth\u00e8que de bandes-annonces disponibles sur Internet.",
"HeaderNewUsers": "Nouveaux utilisateurs",
"ButtonSignUp": "S'inscrire",
+ "LabelConnectGuestUserName": "Nom d'utilisateur Emby ou adresse email de l'invit\u00e9 :",
+ "LabelConnectGuestUserNameHelp": "Ceci est le nom d'utilisateur ou l'adress email que votre ami utilise pour se connecter au site web Emby.",
"ButtonForgotPassword": "Mot de passe oubli\u00e9",
"OptionDisableUserPreferences": "D\u00e9sactiver l'acc\u00e8s aux pr\u00e9f\u00e9rences utilisateurs",
"OptionDisableUserPreferencesHelp": "Si activ\u00e9, seuls les administrateurs seront capables de configurer les images de profil utilisateurs, les mots de passe, et les langues pr\u00e9f\u00e9r\u00e9es.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Partager les r\u00e9pertoires de m\u00e9dias",
"MessageGuestSharingPermissionsHelp": "La plupart des fonctions sont initialement indisponibles pour les invit\u00e9s mais peuvent \u00eatre activ\u00e9es au besoin.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Entrez votre nom d'utilisateur, si vous vous en souvenez.",
"HeaderForgotPassword": "Mot de passe oubli\u00e9",
+ "LabelForgotPasswordUsernameHelp": "Entrez votre nom d'utilisateur, si vous vous en souvenez.",
"TitleForgotPassword": "Mot de passe oubli\u00e9",
"TitlePasswordReset": "Mot de passe r\u00e9initialis\u00e9",
"LabelPasswordRecoveryPinCode": "Code NIP:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Note parentale",
"HeaderVideoTypes": "Types de vid\u00e9o",
"HeaderYears": "Ann\u00e9es",
+ "OptionPosterCard": "Carte Affiche",
+ "OptionThumbCard": "Carte Vignette",
+ "OptionAllowRemoteSharedDevices": "Autoriser le contr\u00f4le \u00e0 distance des appareils partag\u00e9s",
+ "OptionAllowRemoteSharedDevicesHelp": "Les p\u00e9riph\u00e9riques Dlna sont consid\u00e9r\u00e9s comme partag\u00e9s tant qu'un utilisateur ne commence pas \u00e0 le contr\u00f4ler.",
+ "HeaderRemoteControl": "Contr\u00f4le \u00e0 distance",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artistes",
+ "HeaderSignInWithConnect": "Se connecter avec Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Documentation API",
+ "LabelDeveloperResources": "Ressources pour d\u00e9veloppeurs",
"HeaderAddTag": "Ajouter un tag",
- "HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classement inconnues ou n'en disposant pas:",
- "LabelBlockContentWithTags": "Bloquer le contenu comportant les tags suivants :",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Information du serveur",
"LabelEnableSingleImageInDidlLimit": "Limiter \u00e0 une seule image int\u00e9gr\u00e9e",
"LabelEnableSingleImageInDidlLimitHelp": "Quelques p\u00e9riph\u00e9riques ne fourniront pas un rendu correct si plusieurs images sont int\u00e9gr\u00e9es dans Didl",
"TabActivity": "Activit\u00e9",
"TitleSync": "Sync.",
+ "HeaderSettings": "Param\u00e8tres",
"OptionAllowSyncContent": "Autoriser la synchronisation",
- "OptionAllowContentDownloading": "Autoriser le t\u00e9l\u00e9chargement de m\u00e9dias",
+ "FolderTypeInherit": "H\u00e9rite",
+ "LabelContentType": "Type de contenu :",
"NameSeasonUnknown": "Saison inconnue",
"NameSeasonNumber": "Saison {0}",
"LabelNewUserNameHelp": "Les noms d'utilisateur peuvent contenir des lettres (a-z), des chiffres (0-9), des tirets (-), des tirets bas (_), des apostrophes (') et des points (.).",
+ "ButtonHelp": "Aide",
+ "TabAccess": "Acc\u00e8s",
+ "HeaderDeviceAccess": "Acc\u00e8s \u00e0 l'appareil",
+ "OptionEnableAccessFromAllDevices": "Autoriser l'acc\u00e8s \u00e0 tous les appareils",
+ "DeviceAccessHelp": "Ceci ne s'applique qu'aux appareils qui peuvent \u00eatre identifi\u00e9s de mani\u00e8re unique et qui n'emp\u00eachent pas l'acc\u00e8s au navigateur. Le filtrage de l'acc\u00e8s aux appareil par utilisateur emp\u00eachera l'utilisation de nouveaux appareils jusqu'\u00e0 ce qu'ils soient approuv\u00e9s ici.",
+ "ButtonQuickStartGuide": "Guide de d\u00e9marrage rapide",
+ "HeaderSyncJobInfo": "T\u00e2che de synchronisation",
"TabJobs": "T\u00e2ches",
"TabSyncJobs": "T\u00e2ches de synchronisation",
+ "HeaderTermsOfService": "Conditions d'utilisation de Emby",
+ "MessagePleaseAcceptTermsOfService": "Veuillez accepter les conditions d'utilisations et la politique de confidentialit\u00e9 avant de continuer.",
+ "OptionIAcceptTermsOfService": "J'accepte les conditions d'utilisation.",
+ "ButtonPrivacyPolicy": "Politique de confidentialit\u00e9",
+ "ButtonTermsOfService": "Conditions d'utilisation",
+ "OptionHideUserFromLoginHelp": "Recommand\u00e9 pour les comptes administrateurs priv\u00e9s ou cach\u00e9s. L'utilisateur devra s'authentifier manuellement en entrant son login et mot de passe.",
+ "LabelEnterConnectUserName": "Nom d'utilisateur ou adresse mail :",
+ "LabelEnterConnectUserNameHelp": "C'est le nom d'utilisateur ou l'email de votre compte Emby en ligne.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Reconna\u00eetre les fichiers archives comme m\u00e9dias",
+ "OptionDetectArchiveFilesAsMediaHelp": "Activez cette option pour reconna\u00eetre les fichiers portant l'extension .rar ou .zip comme des fichiers de m\u00e9dias. ",
+ "ButtonDonate": "Faire un don",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "R\u00e9sultat de l'identification",
+ "OptionEnableAccessToAllChannels": "Activer l'acc\u00e8s \u00e0 toutes les cha\u00eenes",
+ "LabelAutomaticUpdates": "Activer les mises \u00e0 jour automatiques",
+ "LabelFanartApiKey": "Cl\u00e9 d'api personnelle :",
+ "LabelFanartApiKeyHelp": "Les requ\u00eates de fanart sans cl\u00e9 d'api personnelle renvoient des r\u00e9sultats approuv\u00e9s il y a plus de 7 jours. Avec une cl\u00e9 d'api personnelle, cette valeur tombe \u00e0 48 heures, et si vous \u00eates aussi membre fanart VIP, cette valeur tombera encore plus, \u00e0 environ 10 minutes.",
+ "HeaderDeveloperOptions": "Options de d\u00e9veloppement",
+ "OptionEnableWebClientResponseCache": "Activer la mise en cache des r\u00e9ponses du client web",
+ "OptionDisableForDevelopmentHelp": "Vous pouvez configurer ces options selon vos besoins de d\u00e9veloppement.",
+ "OptionEnableWebClientResourceMinification": "Activer la minimisation des ressources du client web",
+ "LabelDashboardSourcePath": "Chemin des fichiers sources du client web",
+ "LabelDashboardSourcePathHelp": "Si vous ex\u00e9cutez le serveur \u00e0 partir des sources, veuillez sp\u00e9cifier le chemin du r\u00e9pertoire dashboard-ui. Tous les fichiers du client web seront servis \u00e0 partir de cet endroit.",
+ "HeaderPaths": "Chemins",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Faire un don avec Paypal",
+ "TitleScheduledTasks": "T\u00e2ches planifi\u00e9es",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Num\u00e9ro de port http public :",
+ "LabelPublicHttpPortHelp": "Le num\u00e9ro de port public \u00e0 mapper sur le port http local.",
+ "LabelPublicHttpsPort": "Num\u00e9ro de port https public :",
+ "LabelPublicHttpsPortHelp": "Le num\u00e9ro de port public \u00e0 mapper sur le port https local.",
+ "LabelEnableHttps": "Renvoyer une url https en tant qu'adresse externe",
+ "LabelEnableHttpsHelp": "Activez cette option pour que le serveur renvoie une adresse https aux clients pour son adresse externe.",
+ "LabelHttpsPort": "Num\u00e9ro de port https local :",
+ "LabelHttpsPortHelp": "Le port TCP que le serveur https d'Emby doit utiliser.",
+ "TabHosting": "H\u00e9bergement",
+ "LabelCustomCss": "Css personnalis\u00e9e :",
+ "LabelCustomCssHelp": "Appliquez votre propre feuille de styles css personnalis\u00e9e \u00e0 l'interface web.",
+ "ButtonConvertMedia": "Convertir le m\u00e9dia",
+ "ButtonOrganize": "Organiser",
+ "ButtonJoinTheDevelopmentTeam": "Rejoignez l'\u00e9quipe de d\u00e9veloppement",
+ "OptionEnableAccessToAllLibraries": "Activer l'acc\u00e8s \u00e0 toutes les librairies",
+ "LabelSyncTempPath": "R\u00e9pertoire de fichiers temporaires :",
+ "LabelSyncTempPathHelp": "Sp\u00e9cifiez un r\u00e9pertoire de travail pour la synchronisation. Les fichiers r\u00e9sultant de la conversion de m\u00e9dias au cours du processus de synchronisation seront stock\u00e9s ici.",
+ "LabelCustomCertificatePath": "Chemin vers le certificat personnalis\u00e9 :",
+ "LabelCustomCertificatePathHelp": "Fournissez votre propre certificat SSL au format .pfx. Sinon, le serveur cr\u00e9era un certificat auto-sign\u00e9.",
+ "LabelDisplayCollectionsViewHelp": "Ceci cr\u00e9era une vue s\u00e9par\u00e9e pour l'affichage des collections que vous avez cr\u00e9\u00e9es ou auxquelles vous avez acc\u00e8s. Pour cr\u00e9er une collection, faites un clic-droit ou tapotez et maintenez l'\u00e9cran sur un film, puis choisissez 'Ajouter \u00e0 une collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "La synchronisation n\u00e9cessite un abonnement comme supporteur",
+ "HeaderEnjoyDayTrial": "Profitez d'une p\u00e9riode d'essai de 14 jours",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "S'enregistrer avec PayPal",
+ "NotificationOptionCameraImageUploaded": "L'image de l'appareil photo a \u00e9t\u00e9 upload\u00e9e",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Code Easy Pin",
+ "LabelEasyPinCode": "Code Easy Pin :",
+ "EasyPasswordHelp": "Votre code Easy Pin est utilis\u00e9 pour l'acc\u00e8s offline par les applications Emby compatibles. Il peut \u00e9galement servir \u00e0 simplifier votre connexion depuis votre r\u00e9seau local.",
+ "LabelInNetworkSignInWithEasyPassword": "Activer l'authentification simplifi\u00e9e dans les r\u00e9seaux domestiques avec mon code Easy Pin",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "Si vous activez cette option, vous pourrez utiliser votre code Easy Pin pour vous connecter aux applications Emby depuis l'int\u00e9rieur de votre r\u00e9seau local. Votre mot de passe habituel ne sera requis que depuis l'ext\u00e9rieur. Si le code Pin n'est pas d\u00e9fini, vous n'aurez pas besoin de mot de passe depuis l'int\u00e9rieur de votre r\u00e9seau local.",
+ "ButtonResetEasyPassword": "R\u00e9initialiser le code Easy Pin",
+ "OptionAllowContentDownloading": "Autoriser le t\u00e9l\u00e9chargement de m\u00e9dias",
+ "LabelBlockContentWithTags": "Bloquer le contenu comportant les tags suivants :",
"LabelTagFilterMode": "Mode :",
"LabelTagFilterAllowModeHelp": "Si l'autorisation par tags est appliqu\u00e9e \u00e0 un contenu d'un sous-r\u00e9pertoire, les r\u00e9pertoires parents devront \u00e9galement \u00eatre marqu\u00e9s avec ces m\u00eames tags.",
+ "UserDownloadingItemWithValues": "{0} est en train de t\u00e9l\u00e9charger {1}",
+ "LabelPinCode": "Code PIN:",
+ "ButtonExit": "Sortie",
+ "HeaderGrownupsOnly": "R\u00e9serv\u00e9 aux adultes !",
+ "DividerOr": "-- ou --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Veuillez entrez votre code Easy PIN :",
+ "KidsModeAdultInstruction": "Cliquez sur l'ic\u00f4ne en forme de cadenas en bas \u00e0 droite pour configurer ou quitter le mode Enfants. Votre code PIN sera requis.",
+ "ButtonConfigurePinCode": "Configurer le code PIN",
+ "HeaderAdultsReadHere": "Section r\u00e9serv\u00e9e aux adultes!",
+ "LabelEnableEnhancedMovies": "Activer le mode d'affichage \u00e9tendu des films",
+ "LabelEnableEnhancedMoviesHelp": "Lorsque ce mode est activ\u00e9, les films seront affich\u00e9s comme des dossiers et incluront les bandes-annonces, les extras, l'\u00e9quipe de tournage et les autre contenus li\u00e9s.",
+ "NotificationOptionUserLockedOut": "Utilisateur verrouill\u00e9",
+ "OptionIcon": "Ic\u00f4ne",
+ "UserLockedOutWithName": "L'utilisateur {0} a \u00e9t\u00e9 verrouill\u00e9",
"HeaderThisUserIsCurrentlyDisabled": "Cet utilisateur est actuellement d\u00e9sactiv\u00e9",
"MessageReenableUser": "Voir ci-dessous pour le r\u00e9activer",
+ "LabelTimeLimitHours": "Limite de temps (heures) :",
+ "HeaderSendNotificationHelp": "Les notifications sont pr\u00e9sent\u00e9es dans votre bo\u00eete de messagerie . Des options suppl\u00e9mentaires peuvent \u00eatre install\u00e9es depuis l'onglet Services.",
+ "HeaderInstalledServices": "Services install\u00e9s",
+ "HeaderAvailableServices": "Services disponibles",
+ "MessageNoServicesInstalled": "Aucun service n'est actuellement install\u00e9.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Listes de lecture",
+ "LabelAlbumArtists": "Artistes de l'album :",
"LabelEnableInternetMetadataForTvPrograms": "T\u00e9l\u00e9charger les m\u00e9ta-donn\u00e9es depuis Internet pour :",
"OptionTVMovies": "T\u00e9l\u00e9films",
"HeaderUpcomingMovies": "Films \u00e0 venir",
- "HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir",
"HeaderUpcomingPrograms": "Programmes \u00e0 venir",
"LabelShowLibraryTileNames": "Voir les noms des affiches de la biblioth\u00e8que",
"LabelShowLibraryTileNamesHelp": "D\u00e9termine si les noms doivent \u00eatre affich\u00e9s en dessous des affiches de la biblioth\u00e8que sur la page d'accueil",
+ "HeaderSupporterBenefits": "Avantages de supporteur",
+ "HeaderAddUser": "Ajouter un utilisateur",
+ "LabelAddConnectSupporterHelp": "Pour ajouter un utilisateur non list\u00e9, vous devrez d'abord lier son compte \u00e0 Emby Connect depuis sa page de profil utilisateur.",
+ "TabPlaylist": "Liste de lecture",
+ "LabelConfigureServer": "Configurer Emby",
+ "WelcomeToProject": "Bienvenue dans Emby !",
+ "LinkedToEmbyConnect": "Connect\u00e9 \u00e0 Emby",
+ "ProjectHasCommunity": "Emby b\u00e9n\u00e9ficie d'une communaut\u00e9 florissante d'utilisateurs et de contributeurs.",
+ "VisitProjectWebsite": "Visiter le site web de Emby",
+ "VisitProjectWebsiteLong": "Consultez le site web d'Emby pour vous tenir inform\u00e9 des derni\u00e8res actualit\u00e9s et billets du blog des d\u00e9veloppeurs.",
+ "HeaderHelpImproveProject": "Aider \u00e0 am\u00e9liorer Emby",
+ "PluginTabAppClassic": "Emby classique",
+ "PluginTabAppTheater": "Emby theater",
+ "HeaderBecomeProjectSupporter": "Devenir un fan d'Emby",
+ "ButtonLearnMoreAboutEmbyConnect": "Plus d'infos sur Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optionnel : liez votre compte Emby",
"OptionEnableTranscodingThrottle": "Activer le throttling",
"OptionEnableTranscodingThrottleHelp": "Le throttling consiste \u00e0 ajuster automatiquement la fr\u00e9quence de transcodage afin de minimiser l'utilisation CPU pendant la lecture.",
+ "OptionHideWatchedContentFromLatestMedia": "Masquer le contenu d\u00e9j\u00e0 vu dans les derniers m\u00e9dias",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Identifiant",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Ev\u00e9nements sportifs \u00e0 venir",
"LabelUploadSpeedLimit": "D\u00e9bit max d'upload (Mbps) :",
"OptionAllowSyncTranscoding": "Autoriser la synchronisation quand elle n\u00e9cessite un transcodage",
"HeaderPlayback": "Lecture du m\u00e9dia",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Les utilisateurs recevront un message d'erreur compr\u00e9hensible lorsque le contenu n'est pas lisible en raison des restrictions appliqu\u00e9es.",
"OptionAllowAudioPlaybackTranscoding": "Autoriser la lecture de musique n\u00e9cessitant un transcodage",
"OptionAllowVideoPlaybackTranscoding": "Autoriser la lecture de vid\u00e9os n\u00e9cessitant un transcodage",
- "OptionAllowMediaPlaybackTranscodingHelp": "Les utilisateurs recevront un message d'erreur compr\u00e9hensible lorsque le contenu n'est pas lisible en raison des restrictions appliqu\u00e9es.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Limite de d\u00e9bit de streaming Internet (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "Une limite de d\u00e9bit optionnelle du streaming pour toutes les connexions r\u00e9seau. Utile pour \u00e9viter que les clients demandent une bande passante sup\u00e9rieure \u00e0 ce que votre connexion peu fournir.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limite le nombre de c\u0153ur du processeur utilis\u00e9s pendant le transcodage.",
"OptionEnableFullSpeedConversion": "Autoriser le transcodage rapide",
"OptionEnableFullSpeedConversionHelp": "Par d\u00e9faut, le transcodage est r\u00e9alis\u00e9 de mani\u00e8re lente pour minimiser la consommation de ressources.",
+ "HeaderRepeatingOptions": "Options de r\u00e9p\u00e9tition",
+ "OptionMyMediaButtons": "Mes m\u00e9dias (boutons)",
+ "OptionMyMedia": "Mes m\u00e9dias",
+ "OptionMyMediaSmall": "Mes m\u00e9dias (petit)",
"HeaderPlaylists": "Listes de lecture",
+ "ViewTypeMusicPlaylists": "Listes de lectures",
"HeaderViewStyles": "Styles d'affichage",
"LabelSelectViewStyles": "Activer les pr\u00e9sentations am\u00e9lior\u00e9es pour :",
"LabelSelectViewStylesHelp": "Si vous activez cette option, l'affichage utilisera les m\u00e9tadonn\u00e9es pour ajouter des cat\u00e9gories telles que Suggestions, Derni\u00e8res, Genres, ... Si vous d\u00e9sactivez cette option, l'affichage sera simplement bas\u00e9 sur les dossiers.",
+ "ButtonSignInWithConnect": "Se connecter avec Emby Connect",
+ "HeaderNewServer": "Nouveau serveur",
+ "LabelMaxChromecastBitrate": "D\u00e9bit Chromecast maximum",
+ "TabAppSettings": "Param\u00e8tres de l'applications",
"TabPhotos": "Photos",
"TabVideos": "Vid\u00e9os",
"HeaderWelcomeToEmby": "Bienvenue sur Emby",
"EmbyIntroMessage": "Avec Emby, vous pouvez facilement diffuser vid\u00e9os, musique et photos sur Android et autres p\u00e9riph\u00e9riques de votre serveur Emby.",
"ButtonSkip": "Passer",
"TextConnectToServerManually": "Connexion manuelle \u00e0 mon serveur",
- "ButtonSignInWithConnect": "Se connecter avec Emby Connect",
"ButtonConnect": "Connexion",
"LabelServerHost": "Nom d'h\u00f4te :",
"LabelServerHostHelp": "192.168.1.1 ou https:\/\/monserveur.com",
"LabelServerPort": "Port :",
- "HeaderNewServer": "Nouveau serveur",
"ButtonChangeServer": "Changer de serveur",
"HeaderConnectToServer": "Connexion au serveur",
"OptionReportList": "Vue en liste",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Exporter",
"HeaderColumns": "Colonnes",
"ButtonReset": "R\u00e9initialiser",
+ "ButtonPurchase": "Acheter",
"OptionEnableExternalVideoPlayers": "Activer les lecteurs vid\u00e9o externes",
+ "LabelNativeExternalPlayersHelp": "Afficher les boutons pour lire le contenu sur les lecteurs externes.",
+ "LabelEnableItemPreviews": "Activer les aper\u00e7us des \u00e9l\u00e9ments",
+ "LabelEnableItemPreviewsHelp": "Activez cette option pour faire appara\u00eetre des aper\u00e7us d\u00e9roulants lorsque vous cliquez sur les \u00e9l\u00e9ments de certains \u00e9crans",
"ButtonUnlockGuide": "D\u00e9verrouiller le Guide",
+ "ButtonManageServer": "G\u00e9rer le serveur",
"LabelEnableFullScreen": "Activer le mode plein \u00e9cran",
"LabelEnableChromecastAc3Passthrough": "Activer le mode Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synchronis\u00e9 avec une carte SD externe",
+ "LabelSyncPath": "Chemin de synchro :",
"LabelEmail": "Email :",
"LabelUsername": "Nom d'utilisateur :",
"HeaderSignUp": "S'inscrire",
"LabelPasswordConfirm": "Mot de passe (confirmation) :",
"ButtonAddServer": "Ajouter un serveur",
+ "ButtonShare": "Partager",
+ "OptionAllowLinkSharing": "Autoriser le partage sur les r\u00e9seaux sociaux",
+ "OptionAllowLinkSharingHelp": "Seul les pages web contenant des informations sur les m\u00e9dias sont partag\u00e9s. Les fichiers de m\u00e9dias ne sont jamais publi\u00e9s publiquement. Les partages ont un temps limit\u00e9s et expirent en fonctions de vos param\u00e8tres de paratage du serveur.",
+ "HeaderSharing": "Partage",
"TabHomeScreen": "Ecran d'accueil",
"HeaderDisplay": "Afficher",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "Ces param\u00e8tres sont partag\u00e9s sur tous les p\u00e9riph\u00e9riques.",
+ "LabelRecordingPath": "Enregistrement de l'adresse :",
+ "LabelRecordingPathHelp": "Pr\u00e9cisez un endroit personnalis\u00e9 pour la sauvegarde des enregistrements. Laissez vide pour utiliser l'endroit par d\u00e9faut du serveur.",
"OptionEnableAutomaticServerUpdates": "Activer les mises \u00e0 jour automatiques du serveur",
"OptionOtherTrailers": "Inclure les bandes-annonces des vieux films",
"HeaderOverview": "Aper\u00e7u",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Ajouter un appareil",
"HeaderAddDevice": "Ajouter un appareil",
"HeaderExternalServices": "Services externes",
- "LabelTunerIpAddress": "Adresse IP du tuner :",
"TabExternalServices": "Services externes",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Fournisseurs de guides TV",
"AddGuideProviderHelp": "Ajouter une source de guide d'information TV",
"LabelZipCode": "Code postal :",
- "GuideProviderSelectListings": "S\u00e9lectionner les listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Gamme :",
"MessageTunerDeviceNotListed": "Votre appareil tuner n'est pas list\u00e9 ? Essayez d'installer un fournisseur de service externe pour plus d'options de TV Live.",
+ "OptionSyncToSDCard": "Synchronis\u00e9 avec une carte SD externe",
+ "LabelTunerIpAddress": "Adresse IP du tuner :",
+ "GuideProviderSelectListings": "S\u00e9lectionner les listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restreindre aux cha\u00eenes ajout\u00e9es aux favoris",
"ImportFavoriteChannelsHelp": "Activez cette option pour n'importer que les cha\u00eenes ajout\u00e9es aux favoris sur le tuner.",
"ButtonRepeat": "R\u00e9p\u00e9ter",
- "LabelEnableThisTuner": "Activer ce tuner",
- "LabelEnableThisTunerHelp": "D\u00e9sactivez pour emp\u00eacher l'import de cha\u00eenes de ce tuner.",
- "HeaderLocked": "Verrouill\u00e9",
"HeaderUnidentified": "Non identifi\u00e9",
"HeaderImagePrimary": "Primaire",
"HeaderImageBackdrop": "Contexte",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "Avatar de l'utilisateur",
+ "LabelEnableThisTuner": "Activer ce tuner",
+ "LabelEnableThisTunerHelp": "D\u00e9sactivez pour emp\u00eacher l'import de cha\u00eenes de ce tuner.",
+ "HeaderLocked": "Verrouill\u00e9",
"ButtonDisplaySettings": "Param\u00e8tres d'affichage",
"ButtonHomeScreenSettings": "Param\u00e8tres de l'\u00e9cran d'accueil",
"ButtonPlaybackSettings": "Param\u00e8tres de lecture",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "S\u00e9lectionnez le nombre maximum de threads \u00e0 utiliser pour le transcodage. La r\u00e9duction de cette valeur \u00e9conomisera du temps CPU mais pourrait ne pas suffire pour que le transcodage soit assez rapide pour maintenir une lecture fluide.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Guide Emby",
- "LabelSyncPath": "Chemin de synchro :",
"OptionSyncOnlyOnWifi": "Synchroniser sur Wifi uniquement",
+ "OptionDisplayChannelsInline": "Int\u00e9grer les affichage des chaines dans mes vues",
+ "OptionDisplayChannelsInlineHelp": "Si aciv\u00e9, les chaines seront affich\u00e9s directement \u00e0 c\u00f4t\u00e9 des autres vues. Si d\u00e9sactiv\u00e9, elles seront affich\u00e9es dans une vue de cha\u00eenes s\u00e9par\u00e9e.",
"OptionSyncLosslessAudioOriginal": "Synchroniser le son sans perte de la qualit\u00e9 originelle",
"HeaderMetadata": "M\u00e9tadonn\u00e9es",
"HeaderRecordingOptions": "Options d'enregistrement",
- "ButtonShare": "Partager",
"HeaderUpcomingForKids": "A venir pour les enfants",
"HeaderSetupLiveTV": "Configuration de la TV Live",
"LabelTunerType": "Type de tuner :",
"HelpMoreTunersCanBeAdded": "D'autres tuners peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "D'autres fournisseurs de TV Live peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Une adh\u00e9sion active au programme de soutien Emby est requise pour cr\u00e9er des enregistrements automatiques de s\u00e9ries.",
"HeaderSetupTVGuide": "Configuration du Guide TV",
"LabelDataProvider": "Fournisseur de donn\u00e9es :",
"OptionSendRecordingsToAutoOrganize": "Activer l'auto-organisation pour les nouveaux enregistrements",
"OptionSendRecordingsToAutoOrganizeHelp": "Les nouveaux enregistrements seront envoy\u00e9s au service d'auto-organisation et import\u00e9s dans votre biblioth\u00e8que de m\u00e9dias.",
"HeaderDefaultPadding": "Temporisation par d\u00e9faut",
- "HeaderSubtitles": "Sous-titres",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "D'autres fournisseurs de TV Live peuvent \u00eatre ajout\u00e9s plus tard dans la section TV Live.",
"HeaderVideos": "Vid\u00e9os",
"OptionEnableVideoFrameAnalysis": "Activer l'analyse vid\u00e9o image par image",
"OptionEnableVideoFrameAnalysisHelp": "Extraire des informations d\u00e9taill\u00e9es sur les vid\u00e9os pour rendre le transcodage le plus efficace possible. Cette option ralentira le scan de la biblioth\u00e8que.",
"LabelVideoFrameAnalysisLimit": "Limiter l'analyse image par image aux vid\u00e9os inf\u00e9rieures \u00e0 :",
+ "HeaderBlockItemsWithNoRating": "Bloquer le contenu comportant des informations de classement inconnues ou n'en disposant pas:",
"LabelHardwareVideoDecoder": "D\u00e9codeur vid\u00e9o mat\u00e9riel:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/gsw.json b/dashboard-ui/strings/html/gsw.json
index a0b124094a..a91af9ad70 100644
--- a/dashboard-ui/strings/html/gsw.json
+++ b/dashboard-ui/strings/html/gsw.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Verlasse",
"LabelVisitCommunity": "Bsuech d'Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "API Dokumentatione",
- "LabelDeveloperResources": "Entwickler Ressurce",
"LabelBrowseLibrary": "Dursuech d'Bibliothek",
- "LabelConfigureServer": "Konfigurier Emby",
"LabelOpenLibraryViewer": "\u00d6ffne d'Asicht f\u00f6r Bibliotheke",
"LabelRestartServer": "Server neustarte",
"LabelShowLogWindow": "Zeig Log-Feischter",
"LabelPrevious": "Vorher",
"LabelFinish": "Beende",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "N\u00f6chst",
"LabelYoureDone": "Du besch fertig!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Willkomme bi Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "De Assistent hilft der dur de Installations Prozess. Zum afange, w\u00e4hl bitte dini Sproch us.",
"TellUsAboutYourself": "Verzell was \u00fcber dech selber",
- "ButtonQuickStartGuide": "Schnellstart Instruktione",
"LabelYourFirstName": "Din Vorname:",
"MoreUsersCanBeAddedLater": "Meh User ch\u00f6nt sp\u00f6ter im Dashboard hinzuegf\u00fcegt werde.",
"UserProfilesIntro": "Emby beinhaltet iibauti Unterst\u00fctzig f\u00f6r User-Profil, wo mer siini eigene Asichte, Spellst\u00e4nd und Altersfriigobe iistelle chan.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extrahierig vo de Kapitelbilder zeigt der denn es Bild i de Scene als Uswahl im Men\u00fc. De Prozess chan langsam sii, CPU-lastig und verbrutzled m\u00f6glicherwiis mehreri Gigabyte a Speicherplatz. I de Regel lauft das i de Nacht als planti Ufgab, alternativ chasch es au selber konfiguriere i de Planti Ufgabe siite. Es esch n\u00f6d empfohle die Ufgab w\u00e4hrend h\u00f6che Uslastige dure z'f\u00fcehre.",
"LabelEnableAutomaticPortMapping": "Aktiviere s'automaitsche Port Mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP erlaubt en automatischi Routeriistellig f\u00f6r eifache Remote-Zuegang. Das chan under umst\u00e4nde mit es paar Router ned funktioniere.",
- "HeaderTermsOfService": "Emby Nutzigsbedingige",
- "MessagePleaseAcceptTermsOfService": "Bitte akzeptiere z'erst no d'Nutzigsbedingige und Datenutzig-Richtlinie bevor du wiiter machsch.",
- "OptionIAcceptTermsOfService": "Ich akzeptiere d'Nutzigsbedingige",
- "ButtonPrivacyPolicy": "Datenutzig-Richtlinie",
- "ButtonTermsOfService": "Nutzigsbedingige",
- "HeaderDeveloperOptions": "Entwickler Optione",
- "OptionEnableWebClientResponseCache": "Aktiviere d'Antwort zw\u00fcschespeicherig vom Web Client.",
- "OptionDisableForDevelopmentHelp": "Konfiguriere das falls n\u00f6tig f\u00fcr jeglichi Entwicklerzweck.",
- "OptionEnableWebClientResourceMinification": "Aktiviere d'Minimierig vo de Ressource vom Web Client.",
- "LabelDashboardSourcePath": "Web Client Sourcepfad:",
- "LabelDashboardSourcePathHelp": "Falls de Server vonere andere Source bedient s\u00f6ll werde, geb bitte de genaui Pfad zum dashboard-ui Ordner a. Alli Date vom Web Client werded vo dem Verzeichnis us bedient werde.",
- "ButtonConvertMedia": "Konvertiere Medie",
- "ButtonOrganize": "Organisiere",
- "LinkedToEmbyConnect": "Verbunde zu Emby Connect",
- "HeaderSupporterBenefits": "Supporter Vorteil",
- "HeaderAddUser": "Erstell en User",
- "LabelAddConnectSupporterHelp": "Um en User wo ned ufglistet esch us z'w\u00e4hle, muesch z'erst no sin Account mit Emby Connect im Userprofil verbinde.",
- "LabelPinCode": "Pin Code:",
- "OptionHideWatchedContentFromLatestMedia": "Versteck bereits agluegti Medie i de Rubrik neui Medie",
- "HeaderSync": "synchronisiere",
"ButtonOk": "OK",
"ButtonCancel": "Abbreche",
- "ButtonExit": "Verlasse",
- "ButtonNew": "Neu",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Pfad",
- "CategorySync": "Synchronisierig",
- "TabPlaylist": "Playliste",
- "HeaderEasyPinCode": "Eifache Pin Code",
- "HeaderGrownupsOnly": "Nur Erwachseni!",
- "DividerOr": "-- odr --",
- "HeaderInstalledServices": "Installierti Dienst",
- "HeaderAvailableServices": "Verf\u00fcegbari Dienst",
- "MessageNoServicesInstalled": "Es sind momentan kei Dienst installiert.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Um Zuegriff z'ha, gib bitte diin eifache Pin Code i",
- "KidsModeAdultInstruction": "Klick ufs Schloss-Icon im undere rechte Egge zum konfiguriere oder verlasse vom Kinder Modus. Diin Pin Code wird erforderlich sii.",
- "ButtonConfigurePinCode": "Konfigurier de Pin Code",
- "HeaderAdultsReadHere": "Erwachseni bitte do lese!",
- "RegisterWithPayPal": "Registrier di mit PayPal",
- "HeaderSyncRequiresSupporterMembership": "Synchronisierig brucht en Supporter Mitgliedschaft",
- "HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste",
- "LabelSyncTempPath": "Pfad f\u00f6r tempor\u00e4ri Date:",
- "LabelSyncTempPathHelp": "Gib en eigene Arbetsordner f\u00f6r d'Synchronisierig a. Konvertierti Medie werded w\u00e4hrend em Sync-Prozess det gspeichered.",
- "LabelCustomCertificatePath": "Eigene Pfad f\u00f6r Zertifikat:",
- "LabelCustomCertificatePathHelp": "Gib en eigene Pfad f\u00fcr SSL-Zertifikat (*.pfx) a. Falls ned, wird de Server es selber signierts Zertifikat erstelle.",
- "TitleNotifications": "Mitteilige",
- "ButtonDonateWithPayPal": "Spende mit PayPal",
- "OptionDetectArchiveFilesAsMedia": "Erkenn Archiv als Mediedateie",
- "OptionDetectArchiveFilesAsMediaHelp": "Falls aktiviert, werded *.rar und *.zip Date als Medie erkennt.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Aktivier erwiiterti Filmasichte",
- "LabelEnableEnhancedMoviesHelp": "Falls aktiviert, werded Film als ganzi Ordner inkl Trailer, Extras wie Casting & Crew und anderi wichtigi Date azeigt.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Ziit:",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Film",
- "FolderTypeMusic": "Musig",
- "FolderTypeAdultVideos": "Erwachseni Film",
- "FolderTypePhotos": "F\u00f6teli",
- "FolderTypeMusicVideos": "Musigvideos",
- "FolderTypeHomeVideos": "Heimvideos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "B\u00fcecher",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "erbf\u00e4hig",
- "LabelContentType": "Date Art:",
- "TitleScheduledTasks": "Planti Ufgabe",
"HeaderSetupLibrary": "Stell diini Mediebibliothek i",
"ButtonAddMediaFolder": "F\u00fceg en Medieordner dezue.",
"LabelFolderType": "Ordner Art:",
"ReferToMediaLibraryWiki": "Lueg im Wiki f\u00f6r Mediebiblithek noh.",
"LabelCountry": "Land:",
"LabelLanguage": "Sproch:",
- "LabelTimeLimitHours": "Ziitlimit (h):",
- "ButtonJoinTheDevelopmentTeam": "Tritt eusem Entwicklerteam bi",
"HeaderPreferredMetadataLanguage": "Bevorzuegti Metadate Sproch:",
"LabelSaveLocalMetadata": "Speicher Bilder und Metadate i d'Medieordner",
"LabelSaveLocalMetadataHelp": "Wennd Bilder und Metadate direkt i d'Medieordner speicherisch, chasch sie eifach weder finde und au bearbeite.",
@@ -130,37 +47,16 @@
"TabPreferences": "iistellige",
"TabPassword": "Passwort",
"TabLibraryAccess": "Bibliothek Zuegriff",
- "TabAccess": "Zuegriff",
"TabImage": "Bild",
"TabProfile": "Profil",
- "TabMetadata": "Metadate",
- "TabImages": "Bilder",
- "TabNotifications": "Mitteilige",
- "TabCollectionTitles": "Titel",
- "HeaderDeviceAccess": "Gr\u00e4t Zuegriff",
- "OptionEnableAccessFromAllDevices": "Aktiviere de Zuegriff vo allne Gr\u00e4t",
- "OptionEnableAccessToAllChannels": "Aktiviere de Zuegriff zu allne Kan\u00e4l",
- "OptionEnableAccessToAllLibraries": "Aktiviere de Zuegriff zu allne Bibliotheke",
- "DeviceAccessHelp": "Das betrifft nur Gr\u00e4t wo einzigartig indentifiziert werded und tuet ned Browser Zuegriff verhindere. En Filter f\u00f6r Gr\u00e4t Zuegriff verhindered, dass neui Gr\u00e4t dezue gf\u00fcegt werded, bovor si ned \u00fcberpr\u00fcefd worde sind.",
"LabelDisplayMissingEpisodesWithinSeasons": "Zeig fehlendi Episode innerhalb vo de einzelne Staffle",
"LabelUnairedMissingEpisodesWithinSeasons": "Zeig ned usgstrahlti Episode innerhalb vo de einzelne Staffle",
"HeaderVideoPlaybackSettings": "Video Abspell iistellige",
- "HeaderPlaybackSettings": "Abspell iistellige",
"LabelAudioLanguagePreference": "Audio Sproch iistellig:",
"LabelSubtitleLanguagePreference": "Undertitel Sproch iistellig:",
- "OptionDefaultSubtitles": "Normal",
- "OptionOnlyForcedSubtitles": "Nur erzwungeni Undertitel",
- "OptionAlwaysPlaySubtitles": "Zeig immer Undertitel a",
- "OptionNoSubtitles": "Kei Undertitel",
- "OptionDefaultSubtitlesHelp": "Undertitel wo de Sproch iistellige gliich sind, werded nur glade, wenn d'Audiospur inere fr\u00f6mde Sproch esch.",
- "OptionOnlyForcedSubtitlesHelp": "Nur Undertitel wo erzwunge werded, werded glade.",
- "OptionAlwaysPlaySubtitlesHelp": "Undertitel wo de Sprochiistellige gliich sind, werded usnahmslos glade, egal uf d'Audiospur.",
- "OptionNoSubtitlesHelp": "Undertitel werded normalerwiis ned glade.",
"TabProfiles": "Profil",
"TabSecurity": "Sicherheit",
"ButtonAddUser": "Erstell en User",
- "ButtonAddLocalUser": "Erstell en lokale User",
- "ButtonInviteUser": "Lad en User i",
"ButtonSave": "Speichere",
"ButtonResetPassword": "Passwort zrug setze",
"LabelNewPassword": "Neus Passwort:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum erlaubti Kindersicherig:",
"MaxParentalRatingHelp": "Date mit enere h\u00f6here Kindersicherig werded vo dem User versteckt.",
"LibraryAccessHelp": "W\u00e4hl en Medieordner us, um de mit dem User z'teile. Administratore werded immer d'M\u00f6glichkeit ha alli Verzeichnis mitm Metadate Manager z'bearbeite.",
- "ChannelAccessHelp": "W\u00e4hl en Kanal us, um de mit dem User z'teile. Administratore werded immer d'M\u00f6glichkeit ha alli Kan\u00e4l mitm Metadate Manager z'bearbeite.",
"ButtonDeleteImage": "L\u00f6sch Bild",
- "LabelSelectUsers": "W\u00e4hl User:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Lad es neus Bild ue",
"LabelDropImageHere": "Leg es Bild do ab.",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nix da.",
"MessagePleaseEnsureInternetMetadata": "Bitte stell sicher, dass Abelade vo Metadate vom Internet aktiviert worde esch.",
"TabSuggested": "Vorgschlage",
- "TabSuggestions": "Vorschl\u00e4g",
"TabLatest": "Letschti",
"TabUpcoming": "Usstehend",
"TabShows": "Serie",
@@ -217,6 +110,7 @@
"OptionAscending": "Ufstiigend",
"OptionDescending": "Abstiigend",
"OptionRuntime": "Laufziit",
+ "OptionReleaseDate": "Release Ziit:",
"OptionPlayCount": "Z\u00e4hler",
"OptionDatePlayed": "Abgspellt am",
"OptionDateAdded": "Dezue gf\u00fcegt am",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Bewertig",
"OptionNameSort": "Name",
- "OptionFolderSort": "Ordner",
"OptionBudget": "Budget",
"OptionRevenue": "iinahme",
"OptionPoster": "Poster",
- "OptionPosterCard": "Postercharte",
- "OptionBackdrop": "Hindergrund",
"OptionTimeline": "Ziitlinie",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumbcharte",
- "OptionBanner": "Banner",
"OptionCriticRating": "Kritiker Bewertig",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Chan fortgsetzt werde",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Planti Ufgabe",
"TabMyPlugins": "Miini Plugins",
"TabCatalog": "Katalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatischi Updates",
"HeaderNowPlaying": "Jetz am spelle",
"HeaderLatestAlbums": "Letschti Albene",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Erst grad dezue gf\u00fcegt",
"HeaderFrequentlyPlayed": "Vell gspellt",
"DevBuildWarning": "Dev-Builds sind experimentell, werded vell versione releasd und sind \u00f6ppe die mal ned tested worde. Die Software chan abst\u00fcrze und die komplette Features m\u00fcend ned zwingend funktioniere laufe.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Art:",
"OptionBluray": "BluRay",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Letschti Ergebnis:",
"OptionHasSubtitles": "Undertitel",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Film",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artist:",
- "LabelArtistsHelp": "Trenn mehreri iistr\u00e4g dur es ;",
"HeaderLatestMovies": "Letschti Film",
"HeaderLatestTrailers": "Letschti Trailer",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friitig",
"OptionSaturday": "Samstig",
"HeaderManagement": "Verwaltig",
- "LabelManagement": "Verwaltig:",
"OptionMissingImdbId": "Fehlendi IMDB ID",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Ordner",
+ "OptionBackdrop": "Hindergrund",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "Neu",
+ "TabMetadata": "Metadate",
+ "TabImages": "Bilder",
+ "TabCollectionTitles": "Titel",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Abspell iistellige",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Mitteilige",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "W\u00e4hl User:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "Kei Undertitel",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "W\u00e4hl en Kanal us, um de mit dem User z'teile. Administratore werded immer d'M\u00f6glichkeit ha alli Kan\u00e4l mitm Metadate Manager z'bearbeite.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Letschti Ergebnis:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Normal",
+ "OptionOnlyForcedSubtitles": "Nur erzwungeni Undertitel",
+ "OptionAlwaysPlaySubtitles": "Zeig immer Undertitel a",
+ "OptionDefaultSubtitlesHelp": "Undertitel wo de Sproch iistellige gliich sind, werded nur glade, wenn d'Audiospur inere fr\u00f6mde Sproch esch.",
+ "OptionOnlyForcedSubtitlesHelp": "Nur Undertitel wo erzwunge werded, werded glade.",
+ "OptionAlwaysPlaySubtitlesHelp": "Undertitel wo de Sprochiistellige gliich sind, werded usnahmslos glade, egal uf d'Audiospur.",
+ "OptionNoSubtitlesHelp": "Undertitel werded normalerwiis ned glade.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Verwaltig:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Film",
+ "FolderTypeMusic": "Musig",
+ "FolderTypeAdultVideos": "Erwachseni Film",
+ "FolderTypePhotos": "F\u00f6teli",
+ "FolderTypeMusicVideos": "Musigvideos",
+ "FolderTypeHomeVideos": "Heimvideos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "B\u00fcecher",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artist:",
+ "LabelArtistsHelp": "Trenn mehreri iistr\u00e4g dur es ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Erstell en lokale User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Lad en User i",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Postercharte",
+ "OptionThumbCard": "Thumbcharte",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "API Dokumentatione",
+ "LabelDeveloperResources": "Entwickler Ressurce",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "erbf\u00e4hig",
+ "LabelContentType": "Date Art:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Zuegriff",
+ "HeaderDeviceAccess": "Gr\u00e4t Zuegriff",
+ "OptionEnableAccessFromAllDevices": "Aktiviere de Zuegriff vo allne Gr\u00e4t",
+ "DeviceAccessHelp": "Das betrifft nur Gr\u00e4t wo einzigartig indentifiziert werded und tuet ned Browser Zuegriff verhindere. En Filter f\u00f6r Gr\u00e4t Zuegriff verhindered, dass neui Gr\u00e4t dezue gf\u00fcegt werded, bovor si ned \u00fcberpr\u00fcefd worde sind.",
+ "ButtonQuickStartGuide": "Schnellstart Instruktione",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Nutzigsbedingige",
+ "MessagePleaseAcceptTermsOfService": "Bitte akzeptiere z'erst no d'Nutzigsbedingige und Datenutzig-Richtlinie bevor du wiiter machsch.",
+ "OptionIAcceptTermsOfService": "Ich akzeptiere d'Nutzigsbedingige",
+ "ButtonPrivacyPolicy": "Datenutzig-Richtlinie",
+ "ButtonTermsOfService": "Nutzigsbedingige",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Erkenn Archiv als Mediedateie",
+ "OptionDetectArchiveFilesAsMediaHelp": "Falls aktiviert, werded *.rar und *.zip Date als Medie erkennt.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Aktiviere de Zuegriff zu allne Kan\u00e4l",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Entwickler Optione",
+ "OptionEnableWebClientResponseCache": "Aktiviere d'Antwort zw\u00fcschespeicherig vom Web Client.",
+ "OptionDisableForDevelopmentHelp": "Konfiguriere das falls n\u00f6tig f\u00fcr jeglichi Entwicklerzweck.",
+ "OptionEnableWebClientResourceMinification": "Aktiviere d'Minimierig vo de Ressource vom Web Client.",
+ "LabelDashboardSourcePath": "Web Client Sourcepfad:",
+ "LabelDashboardSourcePathHelp": "Falls de Server vonere andere Source bedient s\u00f6ll werde, geb bitte de genaui Pfad zum dashboard-ui Ordner a. Alli Date vom Web Client werded vo dem Verzeichnis us bedient werde.",
+ "HeaderPaths": "Pfad",
+ "TitleNotifications": "Mitteilige",
+ "ButtonDonateWithPayPal": "Spende mit PayPal",
+ "TitleScheduledTasks": "Planti Ufgabe",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Konvertiere Medie",
+ "ButtonOrganize": "Organisiere",
+ "ButtonJoinTheDevelopmentTeam": "Tritt eusem Entwicklerteam bi",
+ "OptionEnableAccessToAllLibraries": "Aktiviere de Zuegriff zu allne Bibliotheke",
+ "LabelSyncTempPath": "Pfad f\u00f6r tempor\u00e4ri Date:",
+ "LabelSyncTempPathHelp": "Gib en eigene Arbetsordner f\u00f6r d'Synchronisierig a. Konvertierti Medie werded w\u00e4hrend em Sync-Prozess det gspeichered.",
+ "LabelCustomCertificatePath": "Eigene Pfad f\u00f6r Zertifikat:",
+ "LabelCustomCertificatePathHelp": "Gib en eigene Pfad f\u00fcr SSL-Zertifikat (*.pfx) a. Falls ned, wird de Server es selber signierts Zertifikat erstelle.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Gn\u00fcss diin 14-T\u00e4g gratis Ziit zum teste",
+ "CategorySync": "Synchronisierig",
+ "RegisterWithPayPal": "Registrier di mit PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Eifache Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin Code:",
+ "ButtonExit": "Verlasse",
+ "HeaderGrownupsOnly": "Nur Erwachseni!",
+ "DividerOr": "-- odr --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Um Zuegriff z'ha, gib bitte diin eifache Pin Code i",
+ "KidsModeAdultInstruction": "Klick ufs Schloss-Icon im undere rechte Egge zum konfiguriere oder verlasse vom Kinder Modus. Diin Pin Code wird erforderlich sii.",
+ "ButtonConfigurePinCode": "Konfigurier de Pin Code",
+ "HeaderAdultsReadHere": "Erwachseni bitte do lese!",
+ "LabelEnableEnhancedMovies": "Aktivier erwiiterti Filmasichte",
+ "LabelEnableEnhancedMoviesHelp": "Falls aktiviert, werded Film als ganzi Ordner inkl Trailer, Extras wie Casting & Crew und anderi wichtigi Date azeigt.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Ziitlimit (h):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installierti Dienst",
+ "HeaderAvailableServices": "Verf\u00fcegbari Dienst",
+ "MessageNoServicesInstalled": "Es sind momentan kei Dienst installiert.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Vorteil",
+ "HeaderAddUser": "Erstell en User",
+ "LabelAddConnectSupporterHelp": "Um en User wo ned ufglistet esch us z'w\u00e4hle, muesch z'erst no sin Account mit Emby Connect im Userprofil verbinde.",
+ "TabPlaylist": "Playliste",
+ "LabelConfigureServer": "Konfigurier Emby",
+ "WelcomeToProject": "Willkomme bi Emby!",
+ "LinkedToEmbyConnect": "Verbunde zu Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Versteck bereits agluegti Medie i de Rubrik neui Medie",
+ "TabSuggestions": "Vorschl\u00e4g",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "synchronisiere",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/he.json b/dashboard-ui/strings/html/he.json
index c025a960bf..910aa971ad 100644
--- a/dashboard-ui/strings/html/he.json
+++ b/dashboard-ui/strings/html/he.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u05d9\u05e6\u05d9\u05d0\u05d4",
"LabelVisitCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "\u05e8\u05d2\u05d9\u05dc",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "\u05d3\u05e4\u05d3\u05e3 \u05d1\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "\u05e4\u05ea\u05d7 \u05de\u05e6\u05d9\u05d2 \u05ea\u05d9\u05e7\u05d9\u05d5\u05ea",
"LabelRestartServer": "\u05d0\u05ea\u05d7\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea",
"LabelShowLogWindow": "\u05d4\u05e8\u05d0\u05d4 \u05d7\u05dc\u05d5\u05df \u05dc\u05d5\u05d2",
"LabelPrevious": "\u05d4\u05e7\u05d5\u05d3\u05dd",
"LabelFinish": "\u05e1\u05d9\u05d9\u05dd",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "\u05d4\u05d1\u05d0",
"LabelYoureDone": "\u05e1\u05d9\u05d9\u05de\u05ea!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "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)",
"ThisWizardWillGuideYou": "\u05d0\u05e9\u05e3 \u05d6\u05d4 \u05d9\u05e2\u05d6\u05d5\u05e8 \u05dc\u05da \u05d1\u05d4\u05ea\u05dc\u05d9\u05da \u05d4\u05d4\u05ea\u05e7\u05e0\u05d4.",
"TellUsAboutYourself": "\u05e1\u05e4\u05e8 \u05dc\u05e0\u05d5 \u05e2\u05dc \u05e2\u05e6\u05de\u05da",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "\u05e9\u05de\u05da \u05d4\u05e4\u05e8\u05d8\u05d9:",
"MoreUsersCanBeAddedLater": "\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d2\u05d3\u05d9\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd \u05de\u05d0\u05d5\u05d7\u05e8 \u05d9\u05d5\u05ea\u05e8 \u05d3\u05e8\u05da \u05dc\u05d5\u05d7 \u05d4\u05d1\u05e7\u05e8\u05d4.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "\u05d0\u05e4\u05e9\u05e8 \u05de\u05d9\u05e4\u05d5\u05d9 \u05e4\u05d5\u05e8\u05d8\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9",
"LabelEnableAutomaticPortMappingHelp": "UPnP \u05de\u05d0\u05e4\u05e9\u05e8 \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05d5\u05ea \u05e9\u05dc \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d2\u05d9\u05e9\u05d4 \u05de\u05e8\u05d5\u05d7\u05e7\u05ea \u05d1\u05e7\u05dc\u05d5\u05ea. \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05d6\u05d5 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3 \u05e2\u05dd \u05db\u05dc \u05d3\u05d2\u05de\u05d9 \u05d4\u05e8\u05d0\u05d5\u05d8\u05e8\u05d9\u05dd.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "\u05d0\u05e9\u05e8",
"ButtonCancel": "\u05d1\u05d8\u05dc",
- "ButtonExit": "Exit",
- "ButtonNew": "\u05d7\u05d3\u05e9",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05e9\u05dc\u05da",
"ButtonAddMediaFolder": "\u05d4\u05d5\u05e1\u05e3 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05de\u05d3\u05d9\u05d4",
"LabelFolderType": "\u05e1\u05d5\u05d2 \u05d4\u05ea\u05d9\u05e7\u05d9\u05d9\u05d4:",
"ReferToMediaLibraryWiki": "\u05e4\u05e0\u05d4 \u05dc\u05de\u05d9\u05d3\u05e2 \u05d0\u05d5\u05d3\u05d5\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4\u05de\u05d3\u05d9\u05d4.",
"LabelCountry": "\u05de\u05d3\u05d9\u05e0\u05d4:",
"LabelLanguage": "\u05e9\u05e4\u05d4:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "\u05e9\u05e4\u05ea \u05de\u05d9\u05d3\u05e2 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:",
"LabelSaveLocalMetadata": "\u05e9\u05de\u05d5\u05e8 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d1\u05ea\u05d5\u05da \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4",
"LabelSaveLocalMetadataHelp": "\u05e9\u05de\u05d9\u05e8\u05ea \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05d5\u05de\u05d9\u05d3\u05e2 \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05d1\u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05ea\u05d0\u05e4\u05e9\u05e8 \u05e2\u05e8\u05d9\u05db\u05d4 \u05e0\u05d5\u05d7\u05d4 \u05d5\u05e7\u05dc\u05d4 \u05e9\u05dc\u05d4\u05dd.",
@@ -130,37 +47,16 @@
"TabPreferences": "\u05d4\u05e2\u05d3\u05e4\u05d5\u05ea",
"TabPassword": "\u05e1\u05d9\u05e1\u05de\u05d0",
"TabLibraryAccess": "\u05d2\u05d9\u05e9\u05d4 \u05dc\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea",
- "TabAccess": "Access",
"TabImage": "\u05ea\u05de\u05d5\u05e0\u05d4",
"TabProfile": "\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc",
- "TabMetadata": "Metadata",
- "TabImages": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea",
- "TabNotifications": "\u05d4\u05ea\u05e8\u05d0\u05d5\u05ea",
- "TabCollectionTitles": "\u05db\u05d5\u05ea\u05e8\u05d9\u05dd",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "\u05d4\u05e6\u05d2 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05e1\u05e8\u05d9\u05dd \u05d1\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05e0\u05d5\u05ea",
"LabelUnairedMissingEpisodesWithinSeasons": "\u05d4\u05e6\u05d2 \u05e4\u05e8\u05e7\u05d9\u05dd \u05e9\u05e2\u05d3\u05d9\u05df \u05d0\u05dc \u05e9\u05d5\u05d3\u05e8\u05d5 \u05d1\u05ea\u05d5\u05da \u05d4\u05e2\u05d5\u05e0\u05d5\u05ea",
"HeaderVideoPlaybackSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e0\u05d9\u05d2\u05d5\u05df",
- "HeaderPlaybackSettings": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d9\u05d2\u05d5\u05df",
"LabelAudioLanguagePreference": "\u05e9\u05e4\u05ea \u05e7\u05d5\u05dc \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:",
"LabelSubtitleLanguagePreference": "\u05e9\u05e4\u05ea \u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9\u05dd",
"TabSecurity": "\u05d1\u05d8\u05d9\u05d7\u05d5\u05ea",
"ButtonAddUser": "\u05d4\u05d5\u05e1\u05e3 \u05de\u05e9\u05ea\u05de\u05e9",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "\u05e9\u05de\u05d5\u05e8",
"ButtonResetPassword": "\u05d0\u05d9\u05e4\u05d5\u05e1 \u05e1\u05d9\u05e1\u05de\u05d0",
"LabelNewPassword": "\u05e1\u05d9\u05e1\u05de\u05d0 \u05d7\u05d3\u05e9\u05d4:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05d5\u05e8\u05d9\u05dd \u05de\u05e7\u05e1\u05d9\u05de\u05d0\u05dc\u05d9:",
"MaxParentalRatingHelp": "\u05ea\u05d5\u05db\u05df \u05e2\u05dd \u05d3\u05d9\u05e8\u05d5\u05d2 \u05d2\u05d5\u05d1\u05d4 \u05d9\u05d5\u05ea\u05e8 \u05d9\u05d5\u05e1\u05ea\u05e8 \u05de\u05d4\u05de\u05e9\u05ea\u05de\u05e9.",
"LibraryAccessHelp": "\u05d1\u05d7\u05e8 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05d4\u05de\u05d3\u05d9\u05d4 \u05d0\u05e9\u05e8 \u05d9\u05e9\u05d5\u05ea\u05e4\u05d5 \u05e2\u05dd \u05d4\u05de\u05e9\u05ea\u05de\u05e9. \u05de\u05e0\u05d4\u05dc\u05d9\u05dd \u05d9\u05d5\u05db\u05dc\u05d5 \u05dc\u05e2\u05e8\u05d5\u05ea \u05d0\u05ea \u05db\u05dc \u05d4\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea \u05d1\u05d0\u05de\u05e6\u05e2\u05d5\u05ea \u05e2\u05d5\u05e8\u05da \u05d4\u05de\u05d9\u05d3\u05e2.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "\u05de\u05d7\u05e7 \u05ea\u05de\u05d5\u05e0\u05d4",
- "LabelSelectUsers": "\u05d1\u05d7\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd:",
"ButtonUpload": "\u05d4\u05e2\u05dc\u05d4",
"HeaderUploadNewImage": "\u05d4\u05e2\u05dc\u05d4 \u05ea\u05de\u05d5\u05e0\u05d4 \u05d7\u05d3\u05e9\u05d4",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u05d0\u05d9\u05df \u05db\u05d0\u05df \u05db\u05dc\u05d5\u05dd.",
"MessagePleaseEnsureInternetMetadata": "\u05d1\u05d1\u05e7\u05e9\u05d4 \u05d5\u05d5\u05d3\u05d0 \u05db\u05d9 \u05d4\u05d5\u05e8\u05d3\u05ea \u05de\u05d9\u05d3\u05e2 \u05de\u05d4\u05d0\u05d9\u05e0\u05d8\u05e8\u05e0\u05d8 \u05de\u05d0\u05d5\u05e4\u05e9\u05e8\u05ea",
"TabSuggested": "\u05de\u05de\u05d5\u05dc\u05e5",
- "TabSuggestions": "Suggestions",
"TabLatest": "\u05d0\u05d7\u05e8\u05d5\u05df",
"TabUpcoming": "\u05d1\u05e7\u05e8\u05d5\u05d1",
"TabShows": "\u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea",
@@ -217,6 +110,7 @@
"OptionAscending": "\u05e1\u05d3\u05e8 \u05e2\u05d5\u05dc\u05d4",
"OptionDescending": "\u05e1\u05d3\u05e8 \u05d9\u05d5\u05e8\u05d3",
"OptionRuntime": "\u05de\u05e9\u05da",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "\u05de\u05e1\u05e4\u05e8 \u05d4\u05e9\u05de\u05e2\u05d5\u05ea",
"OptionDatePlayed": "\u05ea\u05d0\u05e8\u05d9\u05da \u05e0\u05d9\u05d2\u05d5\u05df",
"OptionDateAdded": "\u05ea\u05d0\u05e8\u05d9\u05da \u05d4\u05d5\u05e1\u05e4\u05d4",
@@ -226,16 +120,10 @@
"OptionTrackName": "\u05e9\u05dd \u05d4\u05e9\u05d9\u05e8",
"OptionCommunityRating": "\u05d3\u05d9\u05e8\u05d5\u05d2 \u05d4\u05e7\u05d4\u05d9\u05dc\u05d4",
"OptionNameSort": "\u05e9\u05dd",
- "OptionFolderSort": "\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea",
"OptionBudget": "\u05ea\u05e7\u05e6\u05d9\u05d1",
"OptionRevenue": "\u05d4\u05db\u05e0\u05e1\u05d5\u05ea",
"OptionPoster": "\u05e4\u05d5\u05e1\u05d8\u05e8",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2",
"OptionTimeline": "\u05e6\u05d9\u05e8 \u05d6\u05de\u05df",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "\u05d1\u05d0\u05e0\u05e8",
"OptionCriticRating": "\u05e6\u05d9\u05d5\u05df \u05de\u05d1\u05e7\u05e8\u05d9\u05dd",
"OptionVideoBitrate": "\u05e7\u05e6\u05ea \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5",
"OptionResumable": "\u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05de\u05e9\u05d9\u05da",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05d5\u05ea",
"TabMyPlugins": "\u05d4\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05e9\u05dc\u05d9",
"TabCatalog": "\u05e7\u05d8\u05dc\u05d5\u05d2",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd",
"HeaderNowPlaying": "\u05de\u05e0\u05d2\u05df \u05e2\u05db\u05e9\u05d9\u05d5",
"HeaderLatestAlbums": "\u05d0\u05dc\u05d1\u05d5\u05de\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "\u05e0\u05d5\u05d2\u05e0\u05d5 \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4",
"HeaderFrequentlyPlayed": "\u05e0\u05d5\u05d2\u05e0\u05d5 \u05dc\u05e8\u05d5\u05d1",
"DevBuildWarning": "\u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05de\u05e4\u05ea\u05d7 \u05d4\u05df \u05d7\u05d5\u05d3 \u05d4\u05d7\u05e0\u05d9\u05ea. \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05d0\u05dc\u05d4 \u05dc\u05d0 \u05e0\u05d1\u05d3\u05e7\u05d5 \u05d5\u05d4\u05df \u05de\u05e9\u05d5\u05d7\u05e8\u05e8\u05d5\u05ea \u05d1\u05de\u05d4\u05d9\u05e8\u05d5\u05ea. \u05d4\u05ea\u05d5\u05db\u05e0\u05d4 \u05e2\u05dc\u05d5\u05dc\u05d4 \u05dc\u05e7\u05e8\u05d5\u05e1 \u05d5\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05e1\u05d5\u05d9\u05d9\u05de\u05d9\u05dd \u05e2\u05dc\u05d5\u05dc\u05d9\u05dd \u05db\u05dc\u05dc \u05dc\u05d0 \u05dc\u05e2\u05d1\u05d5\u05d3.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "\u05d1\u05d0\u05e0\u05e8",
"LabelVideoType": "\u05d2\u05d5\u05d3 \u05d5\u05d5\u05d9\u05d3\u05d0\u05d5:",
"OptionBluray": "\u05d1\u05dc\u05d5-\u05e8\u05d9\u05d9",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "\u05ea\u05dc\u05ea \u05de\u05d9\u05de\u05d3",
"LabelFeatures": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "\u05db\u05ea\u05d5\u05d1\u05d9\u05d5\u05ea",
"OptionHasTrailer": "\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8",
"OptionHasThemeSong": "\u05e9\u05d9\u05e8 \u05e0\u05d5\u05e9\u05d0",
@@ -268,8 +153,6 @@
"TabMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd",
"TabStudios": "\u05d0\u05d5\u05dc\u05e4\u05e0\u05d9\u05dd",
"TabTrailers": "\u05d8\u05e8\u05d9\u05d9\u05dc\u05e8\u05d9\u05dd",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "\u05e1\u05e8\u05d8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd",
"HeaderLatestTrailers": "\u05d8\u05e8\u05d9\u05d9\u05dc\u05d9\u05e8\u05d9\u05dd \u05d0\u05d7\u05e8\u05d5\u05e0\u05d9\u05dd",
"OptionHasSpecialFeatures": "\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05d9\u05d5\u05d7\u05d3\u05d9\u05dd",
@@ -290,32 +173,24 @@
"OptionFriday": "\u05e9\u05d9\u05e9\u05d9",
"OptionSaturday": "\u05e9\u05d1\u05ea",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "\u05d7\u05e1\u05e8 \u05de\u05d6\u05d4\u05d4 IMBb",
"OptionMissingTvdbId": "\u05d7\u05e1\u05e8 \u05de\u05d6\u05d4\u05d4 TheTVDB",
"OptionMissingOverview": "\u05d7\u05e1\u05e8\u05d4 \u05e1\u05e7\u05d9\u05e8\u05d4",
"OptionFileMetadataYearMismatch": "\u05d4\u05e9\u05e0\u05d4 \u05dc\u05d0 \u05de\u05ea\u05d0\u05d9\u05de\u05d4 \u05d1\u05d9\u05df \u05d4\u05de\u05d9\u05d3\u05e2 \u05dc\u05e7\u05d5\u05d1\u05e5",
"TabGeneral": "\u05db\u05dc\u05dc\u05d9",
"TitleSupport": "\u05ea\u05de\u05d9\u05db\u05d4",
- "LabelSeasonNumber": "Season number",
"TabLog": "\u05dc\u05d5\u05d2",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "\u05d0\u05d5\u05d3\u05d5\u05ea",
"TabSupporterKey": "\u05de\u05e4\u05ea\u05d7 \u05ea\u05d5\u05de\u05da",
"TabBecomeSupporter": "\u05d4\u05e4\u05d5\u05da \u05dc\u05ea\u05d5\u05de\u05da",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "\u05d7\u05e4\u05e9 \u05d1\u05de\u05d0\u05d2\u05e8 \u05d4\u05de\u05d9\u05d3\u05e2",
"VisitTheCommunity": "\u05d1\u05e7\u05e8 \u05d1\u05e7\u05d4\u05d9\u05dc\u05d4",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "\u05d4\u05e1\u05ea\u05e8 \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05d1\u05d7\u05dc\u05d5\u05df \u05d4\u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "\u05d1\u05d8\u05dc \u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4",
"OptionDisableUserHelp": "\u05d0\u05dd \u05de\u05d1\u05d5\u05d8\u05dc, \u05d4\u05e9\u05e8\u05ea \u05e9\u05dc\u05d0 \u05d9\u05d0\u05e4\u05e9\u05e8 \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05de\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4. \u05d7\u05d9\u05d1\u05d5\u05e8\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd \u05d9\u05d1\u05d5\u05d8\u05dc\u05d5 \u05de\u05d9\u05d9\u05d3.",
"HeaderAdvancedControl": "\u05e9\u05dc\u05d9\u05d8\u05d4 \u05de\u05ea\u05e7\u05d3\u05de\u05d5\u05ea",
"LabelName": "\u05e9\u05dd:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05de\u05e9\u05ea\u05de\u05e9 \u05d6\u05d4 \u05dc\u05e0\u05d4\u05dc \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea",
"HeaderFeatureAccess": "\u05d2\u05d9\u05e9\u05d4 \u05dc\u05de\u05d0\u05e4\u05d9\u05d9\u05e0\u05d9\u05dd",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "\u05d7\u05d6\u05e8 \u05de\u05d6\u05d4\u05d4 Tmdb",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "\u05d1\u05d7\u05e8",
"ButtonGroupVersions": "\u05e7\u05d1\u05d5\u05e6\u05ea \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea",
"PismoMessage": "\u05d0\u05e4\u05e9\u05e8 \u05d8\u05e2\u05d9\u05e0\u05ea \u05e7\u05d1\u05e6\u05d9 Pismo \u05d3\u05e8\u05da \u05e8\u05d9\u05e9\u05d9\u05d5\u05df \u05ea\u05e8\u05d5\u05de\u05d4.",
- "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
- "HeaderCredits": "Credits",
"PleaseSupportOtherProduces": "\u05d0\u05e0\u05d0 \u05ea\u05de\u05db\u05d5 \u05d1\u05e9\u05d9\u05e8\u05d5\u05ea\u05d9\u05dd \u05d7\u05d9\u05e0\u05de\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd \u05e9\u05d1\u05d4\u05dd \u05d0\u05e0\u05d5 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd:",
"VersionNumber": "\u05d2\u05d9\u05e8\u05e1\u05d0 {0}",
"TabPaths": "\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd",
"TabServer": "\u05e9\u05e8\u05ea",
"TabTranscoding": "\u05e7\u05d9\u05d3\u05d5\u05d3",
"TitleAdvanced": "\u05de\u05ea\u05e7\u05d3\u05dd",
- "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)",
"LabelAllowServerAutoRestart": "\u05d0\u05e4\u05e9\u05e8 \u05dc\u05e9\u05e8\u05ea \u05dc\u05d4\u05ea\u05d7\u05d9\u05dc \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05db\u05d3\u05d9 \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d0\u05ea \u05d4\u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd",
"LabelAllowServerAutoRestartHelp": "\u05d4\u05e9\u05e8\u05ea \u05d9\u05ea\u05d7\u05d9\u05dc \u05de\u05d7\u05d3\u05e9 \u05e8\u05e7 \u05db\u05e9\u05d0\u05e8 \u05d0\u05d9\u05df \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd",
"LabelEnableDebugLogging": "\u05d0\u05e4\u05e9\u05e8 \u05ea\u05d9\u05e2\u05d5\u05d3 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05dc\u05d0\u05d9\u05ea\u05d5\u05e8 \u05ea\u05e7\u05dc\u05d5\u05ea",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "\u05d4\u05d2\u05d3\u05e8 \u05d0\u05ea \u05d4\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d4\u05e8\u05e6\u05d5\u05d9\u05d9\u05dd. \u05d4\u05e9\u05d0\u05e8 \u05e9\u05d3\u05d5\u05ea \u05e8\u05d9\u05e7\u05d9\u05dd \u05dc\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc.",
"LabelCachePath": "\u05e0\u05ea\u05d9\u05d1 cache:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "\u05e0\u05ea\u05d9\u05d1 \u05ea\u05d9\u05e7\u05d9\u05d9\u05ea Images by name:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "\u05e0\u05ea\u05d9\u05d1 Metadata:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "\u05e4\u05e8\u05e7\u05d9\u05dd",
"OptionOtherVideos": "\u05e7\u05d8\u05e2\u05d9 \u05d5\u05d5\u05d9\u05d3\u05d9\u05d0\u05d5 \u05d0\u05d7\u05e8\u05d9\u05dd",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "\u05d0\u05e4\u05e9\u05e8 \u05e2\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd \u05de- TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "\u05d0\u05e4\u05e9\u05e8 \u05e2\u05d9\u05d3\u05db\u05d5\u05e0\u05d9\u05dd \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05dd \u05de- TVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "\u05e9\u05e4\u05ea \u05d4\u05d5\u05e8\u05d3\u05d4 \u05de\u05d5\u05e2\u05d3\u05e4\u05ea:",
"ButtonAutoScroll": "\u05d2\u05dc\u05d9\u05dc\u05d4 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "\u05d0\u05d9\u05df \u05e6\u05d5\u05e8\u05da \u05d1\u05e1\u05d9\u05e1\u05de\u05d0 \u05db\u05d0\u05e9\u05e8 \u05de\u05ea\u05d7\u05d1\u05e8\u05d9\u05dd \u05de\u05d4\u05e9\u05e8\u05ea \u05d4\u05de\u05e7\u05d5\u05de\u05d9.",
"TabGuide": "\u05de\u05d3\u05e8\u05d9\u05da",
"TabChannels": "\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd",
- "TabCollections": "Collections",
"HeaderChannels": "\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd",
"TabRecordings": "\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea",
"TabScheduled": "\u05dc\u05d5\u05d7 \u05d6\u05de\u05e0\u05d9\u05dd",
"TabSeries": "\u05e1\u05d3\u05e8\u05d5\u05ea",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "\u05d1\u05d8\u05dc \u05d4\u05e7\u05dc\u05d8\u05d4",
"HeaderPrePostPadding": "\u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd\/\u05de\u05d0\u05d5\u05d7\u05e8",
"LabelPrePaddingMinutes": "\u05d3\u05e7\u05d5\u05ea \u05e9\u05dc \u05de\u05e8\u05d5\u05d5\u05d7 \u05de\u05e7\u05d3\u05d9\u05dd:",
@@ -416,13 +272,10 @@
"TabStatus": "\u05de\u05e6\u05d1",
"TabSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea",
"ButtonRefreshGuideData": "\u05e8\u05e2\u05e0\u05df \u05d0\u05ea \u05de\u05d3\u05e8\u05d9\u05da \u05d4\u05e9\u05d9\u05d3\u05d5\u05e8",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "\u05e2\u05d3\u05d9\u05e4\u05d5\u05ea",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "\u05d4\u05e7\u05dc\u05d8 \u05e8\u05e7 \u05e4\u05e8\u05e7\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "\u05d9\u05de\u05d9\u05dd",
"HeaderActiveRecordings": "\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea",
"HeaderLatestRecordings": "\u05d4\u05e7\u05dc\u05d8\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea",
@@ -431,17 +284,16 @@
"ButtonEdit": "\u05e2\u05e8\u05d5\u05da",
"ButtonRecord": "\u05d4\u05e7\u05dc\u05d8",
"ButtonDelete": "\u05de\u05d7\u05e7",
- "ButtonRemove": "\u05d4\u05e1\u05e8",
"OptionRecordSeries": "\u05d4\u05dc\u05e7\u05d8 \u05e1\u05d3\u05e8\u05d5\u05ea",
"HeaderDetails": "\u05e4\u05e8\u05d8\u05d9\u05dd",
+ "OptionFolderSort": "\u05ea\u05d9\u05e7\u05d9\u05d5\u05ea",
+ "OptionBackdrop": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2",
"TitleLiveTV": "\u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d9\u05d4",
"LabelNumberOfGuideDays": "\u05de\u05e1\u05e4\u05e8 \u05d9\u05de\u05d9 \u05dc\u05d5\u05d7 \u05e9\u05d9\u05d3\u05d5\u05e8\u05d9\u05dd \u05dc\u05d4\u05d5\u05e8\u05d3\u05d4",
"LabelNumberOfGuideDaysHelp": "\u05d4\u05d5\u05e8\u05d3\u05ea \u05d9\u05d5\u05ea\u05e8 \u05d9\u05de\u05d9 \u05dc\u05d5\u05d7 \u05e9\u05d9\u05d3\u05d5\u05e8\u05d9\u05dd \u05de\u05d0\u05e4\u05e9\u05e8\u05ea \u05d9\u05db\u05d5\u05dc\u05ea \u05dc\u05ea\u05db\u05e0\u05df \u05d5\u05dc\u05e8\u05d0\u05d5\u05ea \u05d9\u05d5\u05ea\u05e8 \u05ea\u05d5\u05db\u05e0\u05d9\u05d5\u05ea \u05e7\u05d3\u05d9\u05de\u05d4, \u05d0\u05d1\u05dc \u05d2\u05dd \u05d6\u05de\u05df \u05d4\u05d4\u05d5\u05e8\u05d3\u05d4 \u05d9\u05e2\u05dc\u05d4. \u05de\u05e6\u05d1 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9 \u05d9\u05d9\u05e7\u05d1\u05e2 \u05dc\u05e4\u05e0\u05d9 \u05de\u05e1\u05e4\u05e8 \u05d4\u05e2\u05e8\u05d5\u05e6\u05d9\u05dd.",
"OptionAutomatic": "\u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "\u05d9\u05e9 \u05e6\u05d5\u05e8\u05da \u05d1\u05ea\u05d5\u05e1\u05e3 \u05e1\u05e4\u05e7 \u05d8\u05dc\u05d5\u05d5\u05d9\u05d6\u05d9\u05d4 \u05d7\u05d9\u05d9\u05d4 \u05e2\u05dc \u05de\u05e0\u05ea \u05dc\u05d4\u05de\u05e9\u05d9\u05da.",
"LiveTvPluginRequiredHelp": "\u05d0\u05e0\u05d0 \u05d4\u05ea\u05e7\u05df \u05d0\u05ea \u05d0\u05d7\u05d3 \u05de\u05d4\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05d4\u05d0\u05e4\u05e9\u05e8\u05d9\u05d9\u05dd \u05e9\u05dc\u05e0\u05d5\u05ea \u05db\u05de\u05d5 Next Pvr \u05d0\u05d5 ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "\u05ea\u05e4\u05e8\u05d9\u05d8",
"OptionDownloadLogoImage": "\u05dc\u05d5\u05d2\u05d5",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "\u05e8\u05d0\u05e9\u05d9",
"HeaderFetchImages": "\u05d4\u05d1\u05d0 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea:",
"HeaderImageSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05ea\u05de\u05d5\u05e0\u05d4",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "\u05de\u05e1\u05e4\u05e8 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05e8\u05e7\u05e2 \u05de\u05e7\u05e1\u05d9\u05de\u05d0\u05dc\u05d9 \u05dc\u05e4\u05e8\u05d9\u05d8:",
"LabelMaxScreenshotsPerItem": "\u05de\u05e1\u05e4\u05e8 \u05ea\u05de\u05d5\u05e0\u05d5\u05ea \u05de\u05e1\u05da \u05de\u05e7\u05e1\u05d9\u05de\u05d0\u05dc\u05d9 \u05dc\u05e4\u05e8\u05d9\u05d8:",
"LabelMinBackdropDownloadWidth": "\u05e8\u05d5\u05d7\u05d1 \u05ea\u05de\u05d5\u05e0\u05ea \u05e8\u05e7\u05e2 \u05de\u05d9\u05e0\u05d9\u05de\u05d0\u05dc\u05d9 \u05dc\u05d4\u05d5\u05e8\u05d3\u05d4:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u05e9\u05d7\u05e7\u05e0\u05d9\u05dd \u05d5\u05e6\u05d5\u05d5\u05ea",
"HeaderAdditionalParts": "\u05d7\u05dc\u05e7\u05d9\u05dd \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd",
"ButtonSplitVersionsApart": "\u05e4\u05e6\u05dc \u05d2\u05e8\u05e1\u05d0\u05d5\u05ea \u05d1\u05e0\u05e4\u05e8\u05d3",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "\u05d7\u05e1\u05e8",
"LabelOffline": "\u05dc\u05d0 \u05de\u05e7\u05d5\u05d5\u05df",
"PathSubstitutionHelp": "\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d7\u05dc\u05d5\u05e4\u05d9\u05d9\u05dd \u05d4\u05dd \u05dc\u05e6\u05d5\u05e8\u05da \u05de\u05d9\u05e4\u05d5\u05d9 \u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05d1\u05e9\u05e8\u05ea \u05dc\u05e0\u05ea\u05d9\u05d1\u05d9\u05dd \u05e9\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05d2\u05e9\u05ea \u05d0\u05dc\u05d9\u05d4\u05dd. \u05e2\u05dc \u05d9\u05d3\u05d9 \u05d4\u05e8\u05e9\u05d0\u05d4 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05d2\u05d9\u05e9\u05d4 \u05d9\u05e9\u05d9\u05e8\u05d4 \u05dc\u05de\u05d3\u05d9\u05d4 \u05d1\u05e9\u05e8\u05ea \u05d0\u05dd \u05d9\u05db\u05d5\u05dc\u05d9\u05dd \u05dc\u05e0\u05d2\u05df \u05d0\u05ea \u05d4\u05e7\u05d1\u05e6\u05d9\u05dd \u05d9\u05e9\u05d9\u05e8\u05d5\u05ea \u05e2\u05dc \u05d2\u05d1\u05d9 \u05d4\u05e8\u05e9\u05ea \u05d5\u05dc\u05d4\u05d9\u05de\u05e0\u05e2 \u05de\u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05de\u05e9\u05d0\u05d1\u05d9 \u05d4\u05e9\u05e8\u05ea \u05dc\u05e6\u05d5\u05e8\u05da \u05e7\u05d9\u05d3\u05d5\u05d3 \u05d5\u05e9\u05d9\u05d3\u05d5\u05e8.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "\u05d0\u05d9\u05db\u05d5\u05ea \u05de\u05e7\u05e1\u05d9\u05de\u05d0\u05dc\u05d9\u05ea",
"OptionEnableDebugTranscodingLogging": "\u05d0\u05e4\u05e9\u05e8 \u05e8\u05d9\u05e9\u05d5\u05dd \u05d1\u05d0\u05d2\u05d9\u05dd \u05d1\u05e7\u05d9\u05d3\u05d5\u05d3",
"OptionEnableDebugTranscodingLoggingHelp": "\u05d3\u05d1\u05e8 \u05d6\u05d4 \u05d9\u05d9\u05e6\u05d5\u05e8 \u05e7\u05d5\u05e5 \u05dc\u05d5\u05d2 \u05de\u05d0\u05d5\u05d3 \u05d2\u05d3\u05d5\u05dc \u05d5\u05de\u05de\u05d5\u05dc\u05e5 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05db\u05da \u05e8\u05e7 \u05dc\u05e6\u05d5\u05e8\u05da \u05e4\u05d9\u05ea\u05e8\u05d5\u05df \u05d1\u05e2\u05d9\u05d5\u05ea.",
+ "ButtonNew": "\u05d7\u05d3\u05e9",
+ "TabMetadata": "Metadata",
+ "TabImages": "\u05ea\u05de\u05d5\u05e0\u05d5\u05ea",
+ "TabCollectionTitles": "\u05db\u05d5\u05ea\u05e8\u05d9\u05dd",
+ "ButtonSearch": "\u05d7\u05d9\u05e4\u05d5\u05e9",
+ "ButtonRemove": "\u05d4\u05e1\u05e8",
"EditCollectionItemsHelp": "\u05d4\u05d5\u05e1\u05e3 \u05d0\u05d5 \u05d4\u05e1\u05e8 \u05db\u05dc \u05e1\u05e8\u05d8, \u05e1\u05d3\u05e8\u05d4, \u05d0\u05dc\u05d1\u05d5\u05dd, \u05e1\u05e4\u05e8 \u05d0\u05d5 \u05de\u05e9\u05d7\u05e7 \u05e9\u05d0\u05ea\u05d4 \u05de\u05e2\u05d5\u05e0\u05d9\u05d9\u05df \u05dc\u05e7\u05d1\u05e5 \u05dc\u05d0\u05d5\u05e1\u05e3 \u05d4\u05d6\u05d4.",
"HeaderAddTitles": "\u05d4\u05d5\u05e1\u05e3 \u05db\u05d5\u05ea\u05e8",
"LabelEnableDlnaPlayTo": "\u05de\u05d0\u05e4\u05e9\u05e8 \u05e0\u05d9\u05d2\u05d5\u05df DLNA \u05dc",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "\u05e0\u05ea\u05d9\u05d1\u05d9 \u05de\u05e2\u05e8\u05db\u05ea",
"LinkCommunity": "\u05e7\u05d4\u05d9\u05dc\u05d4",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "\u05de\u05e1\u05de\u05db\u05d9 \u05e2\u05e8\u05db\u05ea \u05e4\u05d9\u05ea\u05d5\u05d7",
"LabelFriendlyServerName": "\u05e9\u05dd \u05e9\u05e8\u05ea \u05d9\u05d3\u05d9\u05d3\u05d5\u05ea\u05d9:",
"LabelFriendlyServerNameHelp": "\u05d4\u05e9\u05dd \u05d9\u05ea\u05df \u05dc\u05d6\u05d9\u05d4\u05d5\u05d9 \u05d4\u05e9\u05e8\u05ea. \u05d0\u05dd \u05de\u05d5\u05e9\u05d0\u05e8 \u05e8\u05d9\u05e7, \u05e9\u05dd \u05d4\u05e9\u05e8\u05ea \u05d9\u05d4\u05d9\u05d4 \u05e9\u05dd \u05d4\u05de\u05d7\u05e9\u05d1.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "\u05d0\u05d5\u05e4\u05e1\u05d9\u05dd \u05d7\u05d3\u05e9\u05d9\u05dd",
- "ButtonSubmit": "Submit",
"ButtonCreate": "\u05e6\u05d5\u05e8",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "\u05e4\u05d5\u05e8\u05d8 Web socket:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "\u05d4\u05de\u05e9\u05da",
@@ -591,8 +433,12 @@
"HeaderProgram": "\u05ea\u05d5\u05db\u05e0\u05d4",
"HeaderClients": "\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
"LabelCompleted": "\u05d4\u05d5\u05e9\u05dc\u05dd",
+ "LabelFailed": "Failed",
"LabelSkipped": "\u05d3\u05d5\u05dc\u05d2",
"HeaderEpisodeOrganization": "\u05d0\u05d9\u05e8\u05d2\u05d5\u05df \u05e4\u05e8\u05e7\u05d9\u05dd",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "\u05de\u05e1\u05e4\u05e8 \u05e1\u05d9\u05d5\u05dd \u05e4\u05e8\u05e7:",
"LabelEndingEpisodeNumberHelp": "\u05d4\u05db\u05e8\u05d7\u05d9 \u05e8\u05e7 \u05e2\u05d1\u05d5\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd \u05e9\u05dc \u05e4\u05e8\u05e7\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "\u05d4\u05e2\u05d1\u05e8",
"LabelTransferMethodHelp": "\u05d4\u05e2\u05ea\u05e7 \u05d0\u05d5 \u05d4\u05e2\u05d1\u05e8 \u05e7\u05d1\u05e6\u05d9\u05dd \u05de\u05ea\u05e7\u05d9\u05d9\u05ea \u05d4\u05de\u05e2\u05e7\u05d1",
"HeaderLatestNews": "\u05d7\u05d3\u05e9\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05e0\u05d5\u05ea",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "\u05de\u05e9\u05d9\u05de\u05d5\u05ea \u05e8\u05e6\u05d5\u05ea",
"HeaderActiveDevices": "\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05e4\u05e2\u05d9\u05dc\u05d9\u05dd",
"HeaderPendingInstallations": "\u05d4\u05ea\u05e7\u05e0\u05d5\u05ea \u05d1\u05d4\u05de\u05ea\u05e0\u05d4",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "\u05d4\u05ea\u05d7\u05dc \u05de\u05d7\u05d3\u05e9 \u05db\u05e2\u05d8",
"ButtonRestart": "\u05d4\u05ea\u05d7\u05e8 \u05de\u05d7\u05d3\u05e9",
"ButtonShutdown": "\u05db\u05d1\u05d4",
"ButtonUpdateNow": "\u05e2\u05d3\u05db\u05df \u05e2\u05db\u05e9\u05d9\u05d5",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "\u05d0\u05e0\u05d0, \u05db\u05d1\u05d4 \u05d0\u05ea \u05d4\u05e9\u05e8\u05ea \u05d5\u05e2\u05d3\u05db\u05df \u05d9\u05d3\u05e0\u05d9\u05ea.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "\u05de\u05d2\u05d3\u05d9\u05e8 \u05d0\u05ea \u05de\u05e9\u05da \u05d4\u05d6\u05de\u05df \u05d1\u05e9\u05e0\u05d9\u05d5\u05ea \u05d1\u05d9\u05df \u05d4\u05d5\u05d3\u05e2\u05d5\u05ea \u05d3\u05d7\u05d9\u05e4\u05d4 \u05e9\u05dc \u05d4\u05e9\u05e8\u05ea.",
"LabelDefaultUser": "\u05de\u05e9\u05ea\u05de\u05e9 \u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05e9:",
"LabelDefaultUserHelp": "\u05de\u05d2\u05d3\u05d9\u05e8 \u05d0\u05d9\u05dc\u05d5 \u05e1\u05e4\u05e8\u05d9\u05d5\u05ea \u05de\u05e9\u05ea\u05de\u05e9 \u05d9\u05d5\u05e6\u05d2\u05d5 \u05d1\u05de\u05db\u05e9\u05d9\u05e8\u05d9\u05dd \u05de\u05d7\u05d5\u05d1\u05e8\u05d9\u05dd. \u05e0\u05d9\u05ea\u05df \u05dc\u05e2\u05e7\u05d5\u05e3 \u05d6\u05d0\u05ea \u05dc\u05db\u05dc \u05de\u05db\u05e9\u05d9\u05e8 \u05e2\u05dc \u05d9\u05d3\u05d9 \u05e9\u05d9\u05de\u05d5\u05e9 \u05d1\u05e4\u05e8\u05d5\u05e4\u05d9\u05dc\u05d9\u05dd.",
+ "HeaderPlaybackSettings": "\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05e0\u05d9\u05d2\u05d5\u05df",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05e9\u05e8\u05ea",
"LabelWeatherDisplayLocation": "\u05de\u05e7\u05d5\u05dd \u05d4\u05e6\u05d2\u05ea \u05de\u05d6\u05d2 \u05d4\u05d0\u05d5\u05d5\u05d9\u05e8:",
"LabelWeatherDisplayLocationHelp": "\u05de\u05d9\u05e7\u05d5\u05d3 \u05d0\u05e8\u05d4\"\u05d1 \/ \u05e2\u05d9\u05e8, \u05de\u05d3\u05d9\u05e0\u05d4, \u05d0\u05e8\u05e5 \/ \u05e2\u05d9\u05e8, \u05d0\u05e8\u05e5",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "\u05db\u05d0\u05e9\u05e8 \u05de\u05d1\u05d5\u05d8\u05dc, \u05d9\u05d5\u05e6\u05d2 \u05dc\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd \u05dc\u05d5\u05d7 \u05d4\u05ea\u05d7\u05d1\u05e8\u05d5\u05ea \u05e2\u05dd \u05d1\u05d7\u05d9\u05e8\u05ea \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd.",
"OptionOtherApps": "\u05ea\u05d5\u05db\u05e0\u05d5\u05ea \u05d0\u05d7\u05e8\u05d5\u05ea",
"OptionMobileApps": "\u05d0\u05e4\u05dc\u05d9\u05e7\u05e6\u05d9\u05d5\u05ea \u05dc\u05e0\u05d9\u05d9\u05d3",
+ "TabNotifications": "\u05d4\u05ea\u05e8\u05d0\u05d5\u05ea",
"HeaderNotificationList": "\u05dc\u05d7\u05e5 \u05e2\u05dc \u05d4\u05ea\u05e8\u05d0\u05d4 \u05dc\u05d4\u05d2\u05d3\u05e8\u05ea \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d4\u05e9\u05dc\u05d9\u05d7\u05d4 \u05e9\u05dc\u05d4",
+ "LabelNotificationEnabled": "\u05d0\u05e4\u05e9\u05e8 \u05d4\u05ea\u05e8\u05d0\u05d4 \u05d6\u05d5",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "\u05ea\u05d5\u05db\u05df \u05d7\u05d3\u05e9 \u05e0\u05d5\u05e1\u05e3",
+ "NotificationOptionServerRestartRequired": "\u05e0\u05d3\u05e8\u05e9\u05ea \u05d4\u05e4\u05e2\u05dc\u05d4 \u05de\u05d7\u05d3\u05e9 \u05e9\u05dc \u05d4\u05e9\u05e8\u05ea",
+ "LabelMonitorUsers": "\u05e2\u05e7\u05d5\u05d1 \u05d0\u05d7\u05e8 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05de:",
+ "LabelSendNotificationToUsers": "\u05e9\u05dc\u05d7 \u05d0\u05ea \u05d4\u05d4\u05ea\u05e8\u05d0\u05d4 \u05dc:",
+ "LabelUseNotificationServices": "\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e9\u05d9\u05e8\u05d5\u05ea\u05d9\u05dd \u05d4\u05d1\u05d0\u05d9\u05dd:",
"NotificationOptionApplicationUpdateAvailable": "\u05e2\u05d3\u05db\u05d5\u05df \u05ea\u05d5\u05db\u05de\u05d4 \u05e7\u05d9\u05d9\u05dd",
"NotificationOptionApplicationUpdateInstalled": "\u05e2\u05d3\u05db\u05d5\u05df \u05ea\u05d5\u05db\u05e0\u05d4 \u05d4\u05d5\u05ea\u05e7\u05df",
"NotificationOptionPluginUpdateInstalled": "\u05e2\u05d3\u05db\u05d5\u05df \u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05ea\u05e7\u05df",
"NotificationOptionPluginInstalled": "\u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05ea\u05e7\u05df",
"NotificationOptionPluginUninstalled": "\u05ea\u05d5\u05e1\u05e3 \u05d4\u05d5\u05e1\u05e8",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "\u05de\u05e9\u05d9\u05de\u05d4 \u05de\u05ea\u05d5\u05d6\u05de\u05e0\u05ea \u05e0\u05db\u05e9\u05dc\u05d4",
"NotificationOptionInstallationFailed": "\u05d4\u05ea\u05e7\u05e0\u05d4 \u05e0\u05db\u05e9\u05dc\u05d4",
- "NotificationOptionNewLibraryContent": "\u05ea\u05d5\u05db\u05df \u05d7\u05d3\u05e9 \u05e0\u05d5\u05e1\u05e3",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "\u05e0\u05d3\u05e8\u05e9\u05ea \u05d4\u05e4\u05e2\u05dc\u05d4 \u05de\u05d7\u05d3\u05e9 \u05e9\u05dc \u05d4\u05e9\u05e8\u05ea",
- "LabelNotificationEnabled": "\u05d0\u05e4\u05e9\u05e8 \u05d4\u05ea\u05e8\u05d0\u05d4 \u05d6\u05d5",
- "LabelMonitorUsers": "\u05e2\u05e7\u05d5\u05d1 \u05d0\u05d7\u05e8 \u05e4\u05e2\u05d9\u05dc\u05d5\u05ea \u05de:",
- "LabelSendNotificationToUsers": "\u05e9\u05dc\u05d7 \u05d0\u05ea \u05d4\u05d4\u05ea\u05e8\u05d0\u05d4 \u05dc:",
- "LabelUseNotificationServices": "\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05e9\u05d9\u05e8\u05d5\u05ea\u05d9\u05dd \u05d4\u05d1\u05d0\u05d9\u05dd:",
"CategoryUser": "\u05de\u05e9\u05ea\u05de\u05e9",
"CategorySystem": "\u05de\u05e2\u05e8\u05db\u05ea",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "\u05db\u05d5\u05ea\u05e8\u05ea \u05d4\u05d5\u05d3\u05e2\u05d4:",
"LabelAvailableTokens": "\u05d0\u05e1\u05d9\u05de\u05d5\u05e0\u05d9\u05dd \u05e7\u05d9\u05d9\u05de\u05d9\u05dd",
"AdditionalNotificationServices": "\u05e2\u05d9\u05d9\u05df \u05d1\u05e7\u05d8\u05dc\u05d5\u05d2 \u05d4\u05ea\u05d5\u05e1\u05e4\u05d9\u05dd \u05dc\u05d4\u05ea\u05e7\u05e0\u05ea \u05e9\u05e8\u05d5\u05ea\u05d9 \u05d4\u05ea\u05e8\u05d0\u05d5\u05ea \u05e0\u05d5\u05e1\u05e4\u05d9\u05dd",
+ "LabelSelectUsers": "\u05d1\u05d7\u05e8 \u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd:",
"OptionAllUsers": "\u05db\u05dc \u05d4\u05de\u05e9\u05ea\u05de\u05e9\u05d9\u05dd",
"OptionAdminUsers": "\u05de\u05e0\u05d4\u05dc\u05d9\u05dd",
"OptionCustomUsers": "\u05de\u05d5\u05ea\u05d0\u05dd \u05d0\u05d9\u05e9\u05d9\u05ea",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "\u05d7\u05d9\u05e4\u05d5\u05e9",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/hr.json b/dashboard-ui/strings/html/hr.json
index f6bc35dc9f..a64c76b967 100644
--- a/dashboard-ui/strings/html/hr.json
+++ b/dashboard-ui/strings/html/hr.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Izlaz",
"LabelVisitCommunity": "Posjeti zajednicu",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Pregledaj biblioteku",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Otvori preglednik bibilioteke",
"LabelRestartServer": "Restartiraj Server",
"LabelShowLogWindow": "Prika\u017ei Log Zapis",
"LabelPrevious": "Prethodni",
"LabelFinish": "Kraj",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Sljede\u0107i",
"LabelYoureDone": "Zavr\u0161eno!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Slu\u017ebeno izdanje",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (nestabilno)",
"ThisWizardWillGuideYou": "Ovaj pomo\u0107nik \u0107e Vas voditi kroz proces pode\u0161avanja. Za po\u010detak, odaberite \u017eeljeni jezik.",
"TellUsAboutYourself": "Recite nam ne\u0161to o sebi",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Ime:",
"MoreUsersCanBeAddedLater": "Vi\u0161e korisnika mo\u017eete dodati naknadno preko nadzorne plo\u010de.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Omogu\u0107i automatsko mapiranje porta",
"LabelEnableAutomaticPortMappingHelp": "UPnP omogu\u0107uje automatsku konfiguraciju usmjeriva\u010da (router \/ modem) za lak\u0161i pristup na daljinu. Ovo mo\u017eda ne\u0107e raditi sa nekim modelima usmjeriva\u010da.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Odustani",
- "ButtonExit": "Exit",
- "ButtonNew": "Novo",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Postavi svoju medijsku biblioteku",
"ButtonAddMediaFolder": "Dodaj mapu sa medijem",
"LabelFolderType": "Tip mape:",
"ReferToMediaLibraryWiki": "Informirajte se o medijskoj bibilioteci wiki",
"LabelCountry": "Zemlja:",
"LabelLanguage": "Jezik:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "\u017deljeni metadata jezik:",
"LabelSaveLocalMetadata": "Snimi ilustracije i metadata u medijske mape",
"LabelSaveLocalMetadataHelp": "Snimljene ilustracije i metadata u medijskim mapama \u0107e biti postavljene na lokaciju gdje \u0107e se mo\u0107i jednostavno mjenjati.",
@@ -130,37 +47,16 @@
"TabPreferences": "Postavke",
"TabPassword": "Lozinka",
"TabLibraryAccess": "Pristup biblioteci",
- "TabAccess": "Access",
"TabImage": "Slika",
"TabProfile": "Profil",
- "TabMetadata": "Metadata",
- "TabImages": "Slike",
- "TabNotifications": "Obavijesti",
- "TabCollectionTitles": "Naslovi",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Prika\u017ei epizode koje nedostaju unutar sezone",
"LabelUnairedMissingEpisodesWithinSeasons": "Prika\u017ei epizode koje nisu emitirane unutar sezone",
"HeaderVideoPlaybackSettings": "Postavke video reprodukcije",
- "HeaderPlaybackSettings": "Postavke reprodukcije",
"LabelAudioLanguagePreference": "Postavke audio jezika:",
"LabelSubtitleLanguagePreference": "Jezik prijevoda:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "Nema titlova",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profili",
"TabSecurity": "Sigurnost",
"ButtonAddUser": "Dodaj korisnika",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Snimi",
"ButtonResetPassword": "Resetiraj lozinku",
"LabelNewPassword": "Nova lozinka:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Najve\u0107a dopu\u0161tena roditeljska ocjena:",
"MaxParentalRatingHelp": "Sadr\u017eaj sa vi\u0161om ocjenom \u0107e biti skriven od ovog korisnika.",
"LibraryAccessHelp": "Odaberite medijske mape za djeljenje sa ovim korisnikom. Administratori \u0107e mo\u0107i mjenjati sve mape preko Metadata menad\u017eera.",
- "ChannelAccessHelp": "Odaberite kanale za dijeljenje sa ovim korisnikom. Administratori \u0107e mo\u0107i mijenjati sve kanale koriste\u0107i metadata menad\u017eer.",
"ButtonDeleteImage": "Izbri\u0161i sliku",
- "LabelSelectUsers": "Odaberite korisnika:",
"ButtonUpload": "Dostavi",
"HeaderUploadNewImage": "Dostavi novu sliku",
"LabelDropImageHere": "Ubaci sliku ovdje",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Ni\u0161ta ovdje.",
"MessagePleaseEnsureInternetMetadata": "Molimo provjerite da je preuzimanje metadata sa interneta omogu\u0107eno.",
"TabSuggested": "Preporu\u010deno",
- "TabSuggestions": "Suggestions",
"TabLatest": "Zadnje",
"TabUpcoming": "Uskoro",
"TabShows": "Emisije",
@@ -217,6 +110,7 @@
"OptionAscending": "Uzlazno",
"OptionDescending": "Silazno",
"OptionRuntime": "Trajanje",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Broju izvo\u0111enja",
"OptionDatePlayed": "Datumu izvo\u0111enja",
"OptionDateAdded": "Datumu dodavanja",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nazivu pjesme",
"OptionCommunityRating": "Ocjeni zajednice",
"OptionNameSort": "Nazivu",
- "OptionFolderSort": "Mape",
"OptionBudget": "Bud\u017eet",
"OptionRevenue": "Prihod",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Pozadina",
"OptionTimeline": "Vremenska linija",
- "OptionThumb": "Sli\u010dica",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Zaglavlje",
"OptionCriticRating": "Ocjeni kritike",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Nastavi",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Raspored zadataka",
"TabMyPlugins": "Moji dodaci",
"TabCatalog": "Katalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatske nadogradnje",
"HeaderNowPlaying": "Sad se izvodi",
"HeaderLatestAlbums": "Zadnji albumi",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Zadnje izvo\u0111eno",
"HeaderFrequentlyPlayed": "\u010cesto izvo\u0111eno",
"DevBuildWarning": "Dev distribucije su klimave. \u010cesto se izbacuju, a nisu ni testirane. Aplikacija se mo\u017ee sru\u0161iti i mogu otkazati sve funkcije.",
+ "OptionThumb": "Sli\u010dica",
+ "OptionBanner": "Zaglavlje",
"LabelVideoType": "Tip Videa:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Mogu\u0107nosti:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Prijevodi",
"OptionHasTrailer": "Kratki video",
"OptionHasThemeSong": "Pjesma teme",
@@ -268,8 +153,6 @@
"TabMovies": "Filmovi",
"TabStudios": "Studio",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Zadnji Filmovi",
"HeaderLatestTrailers": "Zadnji trailersi",
"OptionHasSpecialFeatures": "Specijalne opcije",
@@ -290,32 +173,24 @@
"OptionFriday": "Petak",
"OptionSaturday": "Subota",
"HeaderManagement": "Upravljanje",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Nedostaje IMDb Id",
"OptionMissingTvdbId": "Nedostaje TheTVDB Id",
"OptionMissingOverview": "Nedostaje pregled",
"OptionFileMetadataYearMismatch": "Nepravilna godina, Datoteke\/Metadata",
"TabGeneral": "Op\u0107e",
"TitleSupport": "Podr\u0161ka",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "O ovome...",
"TabSupporterKey": "Klju\u010d pobornika",
"TabBecomeSupporter": "Postani pobornik",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Pretra\u017ei bazu znanja",
"VisitTheCommunity": "Posjeti zajednicu",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Sakrij korisnika sa prozora prijave",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Onemogu\u0107i ovog korisnika",
"OptionDisableUserHelp": "Ako je onemogu\u0107en server ne\u0107e dopustiti nikakve veze od ovog korisnika. Postoje\u0107e veze \u0107e odmah biti prekinute.",
"HeaderAdvancedControl": "Napredna kontrola",
"LabelName": "Ime:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Dopusti ovom korisniku da upravlja serverom",
"HeaderFeatureAccess": "Pristup opcijama",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Nedostaje Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Odaberi",
"ButtonGroupVersions": "Verzija grupe",
"PismoMessage": "Utilizing Pismo File Mount through a donated license.",
- "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
- "HeaderCredits": "Credits",
"PleaseSupportOtherProduces": "Molimo podr\u017eite i druge proizvode koje koristimo:",
"VersionNumber": "Verzija {0}",
"TabPaths": "Putanja",
"TabServer": "Server",
"TabTranscoding": "Konvertiranje",
"TitleAdvanced": "Napredno",
- "OptionRelease": "Slu\u017ebeno izdanje",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (nestabilno)",
"LabelAllowServerAutoRestart": "Dopusti serveru da se automatski resetira kako bi proveo nadogradnje",
"LabelAllowServerAutoRestartHelp": "Server \u0107e se resetirati dok je u statusu mirovanja, odnosno kada nema aktivnih korisnika.",
"LabelEnableDebugLogging": "Omogu\u0107i logiranje gre\u0161aka",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Postavke",
"ButtonRefreshGuideData": "Osvje\u017ei TV vodi\u010d",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Prioritet",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Snimi samo nove epizode",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Dani",
"HeaderActiveRecordings": "Aktivna snimanja",
"HeaderLatestRecordings": "Zadnje snimke",
@@ -431,17 +284,16 @@
"ButtonEdit": "Izmjeni",
"ButtonRecord": "Snimi",
"ButtonDelete": "Izbri\u0161i",
- "ButtonRemove": "Ukloni",
"OptionRecordSeries": "Snimi serije",
"HeaderDetails": "Detalji",
+ "OptionFolderSort": "Mape",
+ "OptionBackdrop": "Pozadina",
"TitleLiveTV": "TV",
"LabelNumberOfGuideDays": "Broj dana TV vodi\u010da za preuzet:",
"LabelNumberOfGuideDaysHelp": "Preuzimanje vi\u0161e dana TV vodi\u010da, omogu\u0107iti \u0107e vam zakazivanje snimanja dalje u budu\u0107nost , ali \u0107e i preuzimanje du\u017ee trajati. Automaski - odabir \u0107e se prilagoditi broju kanala.",
"OptionAutomatic": "Automatski",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "TV u\u017eivo usluga je obavezna ako \u017eelite nastaviti.",
"LiveTvPluginRequiredHelp": "Molimo instalirajte jedan od dostupnih dodataka, kaoo \u0161to su Next Pvr ili ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Sli\u010dica",
"OptionDownloadMenuImage": "Meni",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primarno",
"HeaderFetchImages": "Dohvati slike:",
"HeaderImageSettings": "Postavke slike",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maksimalni broj pozadina po stavci:",
"LabelMaxScreenshotsPerItem": "Maksimalni broj isje\u010daka po stavci:",
"LabelMinBackdropDownloadWidth": "Minimalna \u0161irina pozadine za preuzimanje:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Glumci i ekipa",
"HeaderAdditionalParts": "Dodatni djelovi",
"ButtonSplitVersionsApart": "Razdvoji verzije",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Nedostaje",
"LabelOffline": "Nedostupno",
"PathSubstitutionHelp": "Zamjenske putanje se koriste za mapiranje putanja na serveru na putanje kojima \u0107e kljenti mo\u0107i pristupiti. Dupu\u0161taju\u0107i kljentima direktan pristup medijima na serveru imaju mogu\u0107nost izvoditi sadr\u017eaj direktno preko mre\u017ee i tako ne iskori\u0161tavati resurse servera za koverziju i reprodukciju istih.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Maksimalna kvaliteta",
"OptionEnableDebugTranscodingLogging": "Omogu\u0107i logiranje pogre\u0161aka prilikom konverzije",
"OptionEnableDebugTranscodingLoggingHelp": "Ovo \u0107e kreirati iznimno velike log datoteke i jedino se preporu\u010da koristiti u slu\u010daju problema sa konverzijom.",
+ "ButtonNew": "Novo",
+ "TabMetadata": "Metadata",
+ "TabImages": "Slike",
+ "TabCollectionTitles": "Naslovi",
+ "ButtonSearch": "Tra\u017ei",
+ "ButtonRemove": "Ukloni",
"EditCollectionItemsHelp": "Dodaj ili ukloni bilo koje filmove, serije, albume, knjige ili igrice koje \u017eeli\u0161 grupirati u ovu kolekciju.",
"HeaderAddTitles": "Dodaj naslove",
"LabelEnableDlnaPlayTo": "Omogu\u0107i DLNA izvo\u0111enje na",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Sistemska putanja",
"LinkCommunity": "Zajednica",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api dokumentacija",
"LabelFriendlyServerName": "Prijateljsko ime servera:",
"LabelFriendlyServerNameHelp": "Ovo ime \u0107e se koristiti za identifikaciju servera. Ako ostavite prazno, ime ra\u010dunala \u0107e se koristi kao identifikator.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "Nova kolekcija",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Kreiraj",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Port Web priklju\u010dka:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Nastavi",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Kljenti",
"LabelCompleted": "Zavr\u0161eno",
+ "LabelFailed": "Failed",
"LabelSkipped": "Presko\u010deno",
"HeaderEpisodeOrganization": "Organizacija epizoda",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Broj kraja epizode:",
"LabelEndingEpisodeNumberHelp": "Potrebno samo za datoteke sa vi\u0161e epizoda",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Premjesti",
"LabelTransferMethodHelp": "Kopiraj ili premjesti datoteke iz mape koju ste postavili da se nadzire",
"HeaderLatestNews": "Zadnje vijesti",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Zadatci koji se izvode",
"HeaderActiveDevices": "Aktivni ure\u0111aji",
"HeaderPendingInstallations": "Instalacije u toku",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Ponovo pokreni sad",
"ButtonRestart": "Ponovo pokreni",
"ButtonShutdown": "Ugasi",
"ButtonUpdateNow": "A\u017euriraj sad",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Molimo ugasite server i a\u017eurirati ru\u010dno",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Odre\u0111uje trajanje u sekundama izme\u0111u svake poruke dostupnosti servera.",
"LabelDefaultUser": "Zadani korisnik:",
"LabelDefaultUserHelp": "Odre\u0111uje koja \u0107e biblioteka biti prikazana na spojenim ure\u0111ajima. Ovo se mo\u017ee zaobi\u0107i za svaki ure\u0111aj koriste\u0107i profile.",
+ "HeaderPlaybackSettings": "Postavke reprodukcije",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Postavke Servera",
"LabelWeatherDisplayLocation": "Lokacija prikaza vremena:",
"LabelWeatherDisplayLocationHelp": "Po\u0161tanski broj \/ Grad, Dr\u017eava",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Kada onemogu\u0107eni korisnici otvore prozor za prijavu sa vizualnim odabirom korisnika.",
"OptionOtherApps": "Druge aplikacije",
"OptionMobileApps": "Mobilne aplikacije",
+ "TabNotifications": "Obavijesti",
"HeaderNotificationList": "Kliknite na obavijesti kako bi postavili opcije slanja.",
+ "LabelNotificationEnabled": "Omogu\u0107i ovu obavijest",
+ "NotificationOptionVideoPlayback": "Reprodukcija videa zapo\u010deta",
+ "NotificationOptionAudioPlayback": "Reprodukcija glazbe zapo\u010deta",
+ "NotificationOptionGamePlayback": "Igrica pokrenuta",
+ "NotificationOptionNewLibraryContent": "Novi sadr\u017eaj dodan",
+ "NotificationOptionServerRestartRequired": "Potrebno ponovo pokretanje servera",
+ "LabelMonitorUsers": "Obrazac nadzora aktivnosti:",
+ "LabelSendNotificationToUsers": "Po\u0161aljite obavijesti na:",
+ "LabelUseNotificationServices": "Koristite sljede\u0107e servise:",
"NotificationOptionApplicationUpdateAvailable": "Dostupno a\u017euriranje aplikacije",
"NotificationOptionApplicationUpdateInstalled": "Instalirano a\u017euriranje aplikacije",
"NotificationOptionPluginUpdateInstalled": "Instalirano a\u017euriranje za dodatak",
"NotificationOptionPluginInstalled": "Dodatak instaliran",
"NotificationOptionPluginUninstalled": "Dodatak uklonjen",
- "NotificationOptionVideoPlayback": "Reprodukcija videa zapo\u010deta",
- "NotificationOptionAudioPlayback": "Reprodukcija glazbe zapo\u010deta",
- "NotificationOptionGamePlayback": "Igrica pokrenuta",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Zakazan zadatak nije izvr\u0161en",
"NotificationOptionInstallationFailed": "Instalacija nije izvr\u0161ena",
- "NotificationOptionNewLibraryContent": "Novi sadr\u017eaj dodan",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Potrebno ponovo pokretanje servera",
- "LabelNotificationEnabled": "Omogu\u0107i ovu obavijest",
- "LabelMonitorUsers": "Obrazac nadzora aktivnosti:",
- "LabelSendNotificationToUsers": "Po\u0161aljite obavijesti na:",
- "LabelUseNotificationServices": "Koristite sljede\u0107e servise:",
"CategoryUser": "Korisnik",
"CategorySystem": "Sistem",
- "CategoryApplication": "Aplikacija",
- "CategoryPlugin": "Dodatak",
"LabelMessageTitle": "Naslov poruke:",
"LabelAvailableTokens": "Dostupne varijable:",
"AdditionalNotificationServices": "Pretra\u017eite katalog dodataka kako bi instalirali dodatne servise za obavijesti.",
+ "LabelSelectUsers": "Odaberite korisnika:",
"OptionAllUsers": "Svi korisnici",
"OptionAdminUsers": "Administratori",
"OptionCustomUsers": "Prilago\u0111eno",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Desno",
"ButtonBack": "Nazad",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Stranica gore",
"ButtonPageDown": "Stranica dolje",
"PageAbbreviation": "PG",
"ButtonHome": "Po\u010detna",
- "ButtonSearch": "Tra\u017ei",
"ButtonSettings": "Postavke",
"ButtonTakeScreenshot": "Dohvati zaslon",
"ButtonLetterUp": "Slovo gore",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Sad se izvodi",
"TabNavigation": "Navigacija",
- "TabControls": "Kontrole",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scene",
"ButtonSubtitles": "Titlovi",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pauza",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Grupiraj filmove u kolekciju",
"LabelGroupMoviesIntoCollectionsHelp": "Kada se prikazuje lista filmova, filmovi koji pripadaju kolekciji biti \u0107e prikazani kao jedna stavka.",
+ "CategoryApplication": "Aplikacija",
+ "CategoryPlugin": "Dodatak",
"NotificationOptionPluginError": "Dodatak otkazao",
+ "TabControls": "Kontrole",
"ButtonVolumeUp": "Glasno\u0107a gore",
"ButtonVolumeDown": "Glasno\u0107a dolje",
"ButtonMute": "Bez zvuka",
"HeaderLatestMedia": "Lista medija",
+ "OptionNoSubtitles": "Nema titlova",
"OptionSpecialFeatures": "Specijalne opcije",
+ "ChannelAccessHelp": "Odaberite kanale za dijeljenje sa ovim korisnikom. Administratori \u0107e mo\u0107i mijenjati sve kanale koriste\u0107i metadata menad\u017eer.",
"HeaderCollections": "Kolekcije",
"LabelProfileCodecsHelp": "Odvojeno sa to\u010dka-zrezom. Ovo mo\u017ee ostaviti prazno kao bi bilo postavljeno za sve codecs.",
"LabelProfileContainersHelp": "Odvojeno sa to\u010dka-zrezom. Ovo mo\u017ee ostaviti prazno kao bi bilo postavljeno za sve spremnike.",
"HeaderResponseProfile": "Profil odziva",
"LabelType": "Tip:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Spremnik:",
"LabelProfileVideoCodecs": "Video kodek:",
"LabelProfileAudioCodecs": "Audio kodek:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Ako je omogu\u0107eno, sav video se prezentira u DIDL-u kao \"objekt.stavka.videoStavka\" umjesto vi\u0161e specijaliziranog tipa kao \"objekt.stavka.videoStavka.film\".",
"LabelSupportedMediaTypes": "Podr\u017eani tipovi medija:",
"TabIdentification": "Identifikacija",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direktna reprodukcija",
"TabContainers": "Spremnik",
"TabCodecs": "Kodek",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/it.json b/dashboard-ui/strings/html/it.json
index a8c5a6ca64..aa644e5816 100644
--- a/dashboard-ui/strings/html/it.json
+++ b/dashboard-ui/strings/html/it.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Esci",
"LabelVisitCommunity": "Visita la Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Documentazione Api",
- "LabelDeveloperResources": "Risorse programmatori",
"LabelBrowseLibrary": "Esplora la libreria",
- "LabelConfigureServer": "Configura Emby",
"LabelOpenLibraryViewer": "Apri visualizzatore libreria",
"LabelRestartServer": "Riavvia Server",
"LabelShowLogWindow": "Mostra Finestra log",
"LabelPrevious": "Precedente",
"LabelFinish": "Finito",
- "FolderTypeMixed": "contenuto misto",
"LabelNext": "Prossimo",
"LabelYoureDone": "Hai Finito!",
- "ButtonAddToCollection": "Aggiungi alla collezione",
- "ButtonMoreItems": "Dettagli",
- "WelcomeToProject": "Benvenuto in Emby!",
+ "OptionRelease": "Versione Ufficiale",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (instabile)",
"ThisWizardWillGuideYou": "Questa procedura ti guider\u00e0 durante il processo di installazione. Per iniziare, per favore seleziona la tua lingua preferita",
"TellUsAboutYourself": "Parlaci di te",
- "ButtonQuickStartGuide": "Guida rapida",
"LabelYourFirstName": "Nome",
"MoreUsersCanBeAddedLater": "Puoi aggiungere altri utenti in un secondo momento all'interno del pannello di configurazione",
"UserProfilesIntro": "Emby include il supporto integrato per i profili utente, che permette ad ogni utente di avere le proprie impostazioni di visualizzazione, stato di riproduzione e parental control.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "L'estrazione delle immagini dai capitoli permetter\u00e0 ai client di avere un men\u00f9 grafico per la selezione delle scene. Il processo potrebbe essere lento, con uso intensivo della CPU e potrebbe richiedere diversi gigabyte di spazio. Viene avviato durante la notte, ad ogni modo \u00e8 configurabile nella sezione azioni pianificate. Non \u00e8 raccomandato l'avvio di questo processo durante le ore di massimo utilizzo.",
"LabelEnableAutomaticPortMapping": "Abilita mappatura automatica delle porte",
"LabelEnableAutomaticPortMappingHelp": "UPnP consente la configurazione automatica del router per facilitare l'accesso remoto. Questa opzione potrebbe non funzionare con alcuni modelli di router.",
- "HeaderTermsOfService": "Termini di servizio di Emby",
- "MessagePleaseAcceptTermsOfService": "Per favore accetta i termini di servizio e l'informativa sulla privacy prima di continuare.",
- "OptionIAcceptTermsOfService": "Accetto i termini di servizio",
- "ButtonPrivacyPolicy": "Informativa sulla privacy",
- "ButtonTermsOfService": "Termini di Servizio",
- "HeaderDeveloperOptions": "Opzioni per il programmatore",
- "OptionEnableWebClientResponseCache": "Abilita il caching delle risposte del client",
- "OptionDisableForDevelopmentHelp": "Configura questi parametri per sviluppatori del client web",
- "OptionEnableWebClientResourceMinification": "Abilita la minimizzazione delle risorse del client web",
- "LabelDashboardSourcePath": "Percorso del codice sorgente del client web:",
- "LabelDashboardSourcePathHelp": "se si sta eseguendo il server da una sorgente, specifica il percorso dell'interfaccia. Tutti i file per i client saranno presi da questo percorso",
- "ButtonConvertMedia": "Converti media",
- "ButtonOrganize": "Organizza",
- "LinkedToEmbyConnect": "Collegato a Emby Connect",
- "HeaderSupporterBenefits": "Benefici per il Supporter",
- "HeaderAddUser": "Aggiungi utente",
- "LabelAddConnectSupporterHelp": "Per aggiungere un utente non in lista, dovrai prima collegare il suo account a Emby Connect dalla pagina del suo profilo",
- "LabelPinCode": "Codice Pin",
- "OptionHideWatchedContentFromLatestMedia": "Nasconde i contenuti visti dagli Ultimi Media",
- "HeaderSync": "Sincronizza",
"ButtonOk": "OK",
"ButtonCancel": "Annulla",
- "ButtonExit": "Esci",
- "ButtonNew": "Nuovo",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Percorsi",
- "CategorySync": "Sincronizza",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Codice pin semplificato",
- "HeaderGrownupsOnly": "Solo adulti",
- "DividerOr": "-- o --",
- "HeaderInstalledServices": "Servizi installati",
- "HeaderAvailableServices": "Servizi disponibili",
- "MessageNoServicesInstalled": "Nessun servizio attualmente installato",
- "HeaderToAccessPleaseEnterEasyPinCode": "Per accedere per favore inserisci il tuo codice pin semplificato",
- "KidsModeAdultInstruction": "Clicca sull'icona del lucchetto nell'angolo in basso a destra per configurare o abbandonare la modalit\u00e0 bambini. Verr\u00e0 richiesto il tuo codice pin",
- "ButtonConfigurePinCode": "Configura codice pin",
- "HeaderAdultsReadHere": "Adulti leggete qui!",
- "RegisterWithPayPal": "Registrati con PayPal",
- "HeaderSyncRequiresSupporterMembership": "La sincronizzazione richiede un'iscrizione come supporter",
- "HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni",
- "LabelSyncTempPath": "Percorso file temporanei:",
- "LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I file multimediali convertiti durante la sincronizzazione verranno memorizzati qui.",
- "LabelCustomCertificatePath": "Percorso certificati personalizzato:",
- "LabelCustomCertificatePathHelp": "Fornisci il tuo file .pfx certificato SSL. Se omesso, il server creer\u00e0 un certificato auto-firmato.",
- "TitleNotifications": "Notifiche",
- "ButtonDonateWithPayPal": "Effettua una donazione con PayPal",
- "OptionDetectArchiveFilesAsMedia": "Considera gli archivi come file multimediali",
- "OptionDetectArchiveFilesAsMediaHelp": "se attivato, i file con estensione .rar e .zip saranno considerati come file multimediali.",
- "LabelEnterConnectUserName": "Username di Emby o indirizzo email:",
- "LabelEnterConnectUserNameHelp": "Questo \u00e8 lo username o indirizzo email che il tuo amico utilizza per accedere a Emby.",
- "LabelEnableEnhancedMovies": "Abilita le visuali film migliorate",
- "LabelEnableEnhancedMoviesHelp": "Quando abilitato, i film verranno mostrati come cartelle che includono i trailer, gli extra, il cast & crew, e altri contenuti correlati.",
- "HeaderSyncJobInfo": "Attiv. di Sinc.",
- "OptionReleaseDate": "Data di rilascio",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Fallito",
- "LabelSeries": "Serie:",
- "ButtonFullscreen": "Tutto Schermo",
- "ButtonAudioTracks": "Tracce audio",
- "ButtonPreviousTrack": "Traccia Precedente",
- "ButtonNextTrack": "Traccia Successiva",
- "HeaderEpisodes": "Episodi:",
- "FolderTypeMovies": "Film",
- "FolderTypeMusic": "Musica",
- "FolderTypeAdultVideos": "Video per adulti",
- "FolderTypePhotos": "Foto",
- "FolderTypeMusicVideos": "Video musicali",
- "FolderTypeHomeVideos": "Video personali",
- "FolderTypeGames": "Giochi",
- "FolderTypeBooks": "Libri",
- "FolderTypeTvShows": "Tv",
- "FolderTypeInherit": "ereditare",
- "LabelContentType": "Tipo di contenuto:",
- "TitleScheduledTasks": "Task pianificati",
"HeaderSetupLibrary": "Configura la tua libreria di contenuti multimediali",
"ButtonAddMediaFolder": "Aggiungi cartella",
"LabelFolderType": "Tipo cartella",
"ReferToMediaLibraryWiki": "Fare riferimento alla wiki libreria multimediale.",
"LabelCountry": "Nazione:",
"LabelLanguage": "Lingua:",
- "LabelTimeLimitHours": "Tempo limite (ore):",
- "ButtonJoinTheDevelopmentTeam": "Unisciti al Team di Sviluppo",
"HeaderPreferredMetadataLanguage": "Lingua preferita per i metadati:",
"LabelSaveLocalMetadata": "Salva immagini e metadati nelle cartelle multimediali",
"LabelSaveLocalMetadataHelp": "Il salvataggio di immagini e metadati direttamente nelle cartelle multimediali consentir\u00e0 di tenerli in un posto dove possono essere facilmente modificati.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferenze",
"TabPassword": "Password",
"TabLibraryAccess": "Accesso alla libreria",
- "TabAccess": "Accesso",
"TabImage": "Immagine",
"TabProfile": "Profilo",
- "TabMetadata": "Metadati",
- "TabImages": "Immagini",
- "TabNotifications": "Notifiche",
- "TabCollectionTitles": "Titolo",
- "HeaderDeviceAccess": "Accesso al dispositivo",
- "OptionEnableAccessFromAllDevices": "Abilitare l'accesso da tutti i dispositivi",
- "OptionEnableAccessToAllChannels": "Abilita l'accesso a tutti i canali",
- "OptionEnableAccessToAllLibraries": "Abilita l'accesso a tutte le librerie",
- "DeviceAccessHelp": "Questo vale solo per i dispositivi che possono essere identificati in modo univoco e non impedire l'accesso del browser. Filtraggio di accesso al dispositivo dell'utente impedir\u00e0 loro di usare nuovi dispositivi fino a quando non sono state approvate qui.",
"LabelDisplayMissingEpisodesWithinSeasons": "Visualizza gli episodi mancanti nelle stagioni",
"LabelUnairedMissingEpisodesWithinSeasons": "Visualizzare episodi mai andati in onda all'interno stagioni",
"HeaderVideoPlaybackSettings": "Impostazioni per la riproduzione di video",
- "HeaderPlaybackSettings": "Impostazioni per la riproduzione",
"LabelAudioLanguagePreference": "Preferenza per la lingua dell'audio:",
"LabelSubtitleLanguagePreference": "Preferenza per la lingua dei sottotitoli:",
- "OptionDefaultSubtitles": "Predefinito",
- "OptionOnlyForcedSubtitles": "Solo i sottotitoli forzati",
- "OptionAlwaysPlaySubtitles": "Visualizza sempre i sottotitoli",
- "OptionNoSubtitles": "Nessun Sottotitolo",
- "OptionDefaultSubtitlesHelp": "I sottotitoli corrispondenti alla lingua preferita saranno caricati quando l'audio \u00e8 in una lingua straniera.",
- "OptionOnlyForcedSubtitlesHelp": "Solo i sottotitoli contrassegnati come forzati saranno caricati.",
- "OptionAlwaysPlaySubtitlesHelp": "I sottotitoli corrispondenti alla lingua preferita saranno caricati a prescindere dalla lingua dell'audio.",
- "OptionNoSubtitlesHelp": "I sottotitoli non verranno caricati di default.",
"TabProfiles": "Profili",
"TabSecurity": "Sicurezza",
"ButtonAddUser": "Aggiungi Utente",
- "ButtonAddLocalUser": "Aggiungi Utente locale",
- "ButtonInviteUser": "Invita un utente",
"ButtonSave": "Salva",
"ButtonResetPassword": "Ripristina Password",
"LabelNewPassword": "Nuova Password:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Massima valutazione dei genitori consentita:",
"MaxParentalRatingHelp": "Contenuto con un punteggio pi\u00f9 elevato sar\u00e0 nascosto per questo utente.",
"LibraryAccessHelp": "Selezionare le cartelle multimediali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutte le cartelle utilizzando il gestore dei metadati.",
- "ChannelAccessHelp": "Selezionare i canali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutti i canali usando il gestore dei metadati",
"ButtonDeleteImage": "Elimina immagine",
- "LabelSelectUsers": "Seleziona Utenti:",
"ButtonUpload": "Carica",
"HeaderUploadNewImage": "Carica nuova immagine",
"LabelDropImageHere": "Rilasciare l'immagine qui",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Niente qui.",
"MessagePleaseEnsureInternetMetadata": "Assicurarsi che il download dei metadati internet sia abilitato.",
"TabSuggested": "Suggeriti",
- "TabSuggestions": "Suggerimenti",
"TabLatest": "Novit\u00e0",
"TabUpcoming": "In Arrivo",
"TabShows": "Spettacoli",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascendente",
"OptionDescending": "Discentente",
"OptionRuntime": "Durata",
+ "OptionReleaseDate": "Data di rilascio",
"OptionPlayCount": "Visto N\u00b0",
"OptionDatePlayed": "Visto il",
"OptionDateAdded": "Aggiunto il",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nome Brano",
"OptionCommunityRating": "Voto del pubblico",
"OptionNameSort": "Nome",
- "OptionFolderSort": "Cartelle",
"OptionBudget": "Budget",
"OptionRevenue": "Recensione",
"OptionPoster": "Locandina",
- "OptionPosterCard": "Scheda locandina",
- "OptionBackdrop": "Sfondo",
"OptionTimeline": "Cronologia",
- "OptionThumb": "Pollice",
- "OptionThumbCard": "carta Thumb",
- "OptionBanner": "Banner",
"OptionCriticRating": "Voto della critica",
"OptionVideoBitrate": "Bitrate Video",
"OptionResumable": "Interrotti",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Operazioni Pianificate",
"TabMyPlugins": "Plugin installati",
"TabCatalog": "Catalogo",
- "TitlePlugins": "Plugin",
"HeaderAutomaticUpdates": "Aggiornamenti Automatici",
"HeaderNowPlaying": "In Riproduzione",
"HeaderLatestAlbums": "Ultimi Album",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Visti di recente",
"HeaderFrequentlyPlayed": "Visti di frequente",
"DevBuildWarning": "Le versioni Dev sono sperimentali. Rilasciate di frequente, queste versioni non sono state testate. L'applicazione potrebbe chiudersi in modo imprevisto e alcune intere funzionalit\u00e0 potrebbero non funzionare affatto",
+ "OptionThumb": "Pollice",
+ "OptionBanner": "Banner",
"LabelVideoType": "Tipo video:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Caratteristiche:",
- "LabelService": "Servizio:",
- "LabelStatus": "Stato:",
- "LabelVersion": "Versione:",
- "LabelLastResult": "Ultimo risultato:",
"OptionHasSubtitles": "Sottotitoli",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Tema Canzone",
@@ -268,8 +153,6 @@
"TabMovies": "Film",
"TabStudios": "Studios",
"TabTrailers": "Trailer",
- "LabelArtists": "Cantanti",
- "LabelArtistsHelp": "Separazione multipla utilizzando ;",
"HeaderLatestMovies": "Ultimi Film Aggiunti",
"HeaderLatestTrailers": "Ultimi Trailers Aggiunti",
"OptionHasSpecialFeatures": "Contenuti speciali",
@@ -290,32 +173,24 @@
"OptionFriday": "Venerd\u00ec",
"OptionSaturday": "Sabato",
"HeaderManagement": "Gestione:",
- "LabelManagement": "Gestione:",
"OptionMissingImdbId": "IMDB id mancante",
"OptionMissingTvdbId": "TheTVDB Id mancante",
"OptionMissingOverview": "Trama mancante",
"OptionFileMetadataYearMismatch": "File\/Metadata anni errati",
"TabGeneral": "Generale",
"TitleSupport": "Supporto",
- "LabelSeasonNumber": "Numero Stagione",
"TabLog": "Eventi",
- "LabelEpisodeNumber": "Episodio numero",
"TabAbout": "Info",
"TabSupporterKey": "Chiave del Supporter",
"TabBecomeSupporter": "Diventa un Supporter",
- "ProjectHasCommunity": "Emby ha una ricca community di utilizzatori e collaboratori",
"CheckoutKnowledgeBase": "Scopri la nostra Knoledge Base per ottenere il massimo da Emby",
"SearchKnowledgeBase": "Cerca nella guida online",
"VisitTheCommunity": "Visita la nostra Community",
- "VisitProjectWebsite": "Visita il sito di Emby",
- "VisitProjectWebsiteLong": "Visita il sito web di Emby per tenerti aggiornato con le ultime novit\u00e0 e le notizie dal blog degli sviluppatori.",
"OptionHideUser": "Nascondi questo utente dalla schermata di Accesso",
- "OptionHideUserFromLoginHelp": "Utile per account nascosti o amministratore. L'utente avr\u00e0 bisogno di accedere manualmente utilizzando la propria username e password",
"OptionDisableUser": "Disabilita questo utente",
"OptionDisableUserHelp": "Se disabilitato, il server non sar\u00e0 disponibile per questo utente. La connessione corrente verr\u00e0 TERMINATA",
"HeaderAdvancedControl": "Controlli avanzati",
"LabelName": "Nome:",
- "ButtonHelp": "Aiuto",
"OptionAllowUserToManageServer": "Consenti a questo utente di accedere alla configurazione del SERVER",
"HeaderFeatureAccess": "Accesso alle funzionalit\u00e0",
"OptionAllowMediaPlayback": "Consentire la riproduzione multimediale",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Consenti l'eliminazione dei media",
"OptionAllowManageLiveTv": "Consenti la gestione di registrazione Live TV",
"OptionAllowRemoteControlOthers": "Consenti controllo remoto di altri utenti",
- "OptionAllowRemoteSharedDevices": "Consenti controllo remoto di dispositivi condivisi",
- "OptionAllowRemoteSharedDevicesHelp": "Dispositivi DLNA sono considerati condivisi fino a quando un utente non inizia a controllarli.",
- "OptionAllowLinkSharing": "Consentire la riproduzione multimediale",
- "OptionAllowLinkSharingHelp": "Solo le pagine web contenenti informazioni multimediali sono condivise. I file multimediali vengono mai condivisi pubblicamente. Le azioni sono limitate nel tempo e scadr\u00e0 in base alle vostre impostazioni di condivisione del server.",
- "HeaderSharing": "Condividendo",
- "HeaderRemoteControl": "telecomando",
"OptionMissingTmdbId": "Tmdb Id mancante",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Seleziona",
"ButtonGroupVersions": "Versione Gruppo",
"PismoMessage": "Dona per avere una licenza di Pismo",
- "TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.",
- "HeaderCredits": "Crediti",
"PleaseSupportOtherProduces": "Per favore supporta gli altri prodotti gratuiti che utilizziamo",
"VersionNumber": "Versione {0}",
"TabPaths": "Percorsi",
"TabServer": "Server",
"TabTranscoding": "Trascodifica",
"TitleAdvanced": "Avanzato",
- "OptionRelease": "Versione Ufficiale",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (instabile)",
"LabelAllowServerAutoRestart": "Consenti al server di Riavviarsi automaticamente per applicare gli aggiornamenti",
"LabelAllowServerAutoRestartHelp": "Il server si Riavvier\u00e0 solamente quando nessun utente \u00e8 collegato",
"LabelEnableDebugLogging": "Attiva la registrazione degli eventi",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specifica un percorso personalizzato.Lasciare vuoto per usare quello predefinito",
"LabelCachePath": "Percorso Cache:",
"LabelCachePathHelp": "Specificare un percorso personalizzato per i file della cache del server, ad esempio immagini. Lasciare vuoto per usare il server predefinito.",
- "LabelRecordingPath": "Percorso di registrazione:",
- "LabelRecordingPathHelp": "Specificare un percorso personalizzato per salvare le registrazioni. Lasciare vuoto per usare il server predefinito.",
"LabelImagesByNamePath": "Percorso immagini per nome:",
"LabelImagesByNamePathHelp": "Specificare un percorso personalizzato per le immagini di attori, artisti, generi e case cinematografiche scaricate.",
"LabelMetadataPath": "Percorso dei file con i metadati:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodi",
"OptionOtherVideos": "Altri Video",
"TitleMetadata": "Metadati",
- "LabelAutomaticUpdates": "Abilita gli aggiornamenti automatici",
"LabelAutomaticUpdatesTmdb": "Abilita gli aggiornamenti automatici da TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Abilita gli aggiornamenti automatici da TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "Se abilitata, le nuove immagini vengono scaricate automaticamente man mano che vengono aggiunti al fanart.tv. Non verranno sostituiti immagini esistenti. Questo far\u00e0 s\u00ec che le scansioni di libreria a richiedere pi\u00f9 tempo e si tradurr\u00e0 in una maggiore attivit\u00e0 del disco.",
"LabelAutomaticUpdatesTmdbHelp": "Se abilitata, le nuove immagini vengono scaricate automaticamente man mano che vengono aggiunti al TheMovieDB.org. Non verranno sostituiti immagini esistenti. Questo far\u00e0 s\u00ec che le scansioni di libreria a richiedere pi\u00f9 tempo e si tradurr\u00e0 in una maggiore attivit\u00e0 del disco.",
"LabelAutomaticUpdatesTvdbHelp": "Se abilitata, le nuove immagini vengono scaricate automaticamente man mano che vengono aggiunti al TheTVDB.com. Non verranno sostituiti immagini esistenti. Questo far\u00e0 s\u00ec che le scansioni di libreria a richiedere pi\u00f9 tempo e si tradurr\u00e0 in una maggiore attivit\u00e0 del disco.",
- "LabelFanartApiKey": "Chiavi API personali",
- "LabelFanartApiKeyHelp": "Le richieste di fanart effettuate senza una chiave API personale restituiranno risultati approvati pi\u00f9 di 7 giorni fa. Con una chiave API personale questo tempo scende a 48 ore, e se sei un membro VIP questo tempo scender\u00e0 ulteriormente a circa 10 minuti.",
"ExtractChapterImagesHelp": "L'estrazione delle immagini dai capitoli permetter\u00e0 ai client di avere un men\u00f9 grafico per la selezione delle scene. Il processo potrebbe essere lento, con uso intensivo della CPU e potrebbe richiedere diversi gigabyte di spazio. Viene avviato quando vengono trovati nuovi video, e anche durante la notte, ad ogni modo \u00e8 configurabile nella sezione azioni pianificate. Non \u00e8 raccomandato l'avvio di questo processo durante le ore di massimo utilizzo.",
"LabelMetadataDownloadLanguage": "Lingua preferita per il download:",
"ButtonAutoScroll": "Scorrimento automatico",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Le password non sono richieste quando viene eseguito l'accesso da questo pc.",
"TabGuide": "Guida",
"TabChannels": "Canali",
- "TabCollections": "Collezioni",
"HeaderChannels": "Canali",
"TabRecordings": "Registrazioni",
"TabScheduled": "Pianificato",
"TabSeries": "Serie TV",
- "TabFavorites": "Preferiti",
- "TabMyLibrary": "Mia Libreria",
"ButtonCancelRecording": "Annulla la registrazione",
"HeaderPrePostPadding": "Pre\/Post Registrazione",
"LabelPrePaddingMinutes": "Minuti di pre-registrazione:",
@@ -416,13 +272,10 @@
"TabStatus": "Stato",
"TabSettings": "Impostazioni",
"ButtonRefreshGuideData": "Aggiorna la guida",
- "ButtonRefresh": "Aggiorna",
- "ButtonAdvancedRefresh": "Aggiornamento (avanzato)",
"OptionPriority": "Priorit\u00e0",
"OptionRecordOnAllChannels": "Registra su tutti i canali",
"OptionRecordAnytime": "Registra a qualsiasi ora",
"OptionRecordOnlyNewEpisodes": "Registra solo i nuovi episodi",
- "HeaderRepeatingOptions": "Opzioni di ripetizione",
"HeaderDays": "Giorni",
"HeaderActiveRecordings": "Registrazioni Attive",
"HeaderLatestRecordings": "Ultime registrazioni",
@@ -431,17 +284,16 @@
"ButtonEdit": "Modifica",
"ButtonRecord": "Registra",
"ButtonDelete": "Elimina",
- "ButtonRemove": "Rimuovi",
"OptionRecordSeries": "Registra Serie",
"HeaderDetails": "Dettagli",
+ "OptionFolderSort": "Cartelle",
+ "OptionBackdrop": "Sfondo",
"TitleLiveTV": "Tv in diretta",
"LabelNumberOfGuideDays": "Numero di giorni per i quali scaricare i dati della guida:",
"LabelNumberOfGuideDaysHelp": "Scaricando pi\u00f9 giorni si avr\u00e0 la possibilit\u00e0 di pianificare in anticipo pi\u00f9 programmi e vedere pi\u00f9 liste, ma il tempo di download si allungher\u00e0. 'Auto': MB sceglier\u00e0 automaticamente in base al numero di canali.",
"OptionAutomatic": "Automatico",
- "HeaderServices": "Servizi",
"LiveTvPluginRequired": "E' richiesto il servizio LIVE TV per continuare.",
"LiveTvPluginRequiredHelp": "Installa un plugin tra quelli disponibili, come Next Pvr o ServerWMC.",
- "LabelCustomizeOptionsPerMediaType": "Personalizza per il tipo di supporto:",
"OptionDownloadThumbImage": "Foto",
"OptionDownloadMenuImage": "Men\u00f9",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Locandina",
"HeaderFetchImages": "Identifica Immagini:",
"HeaderImageSettings": "Impostazioni Immagini",
- "TabOther": "Altro",
"LabelMaxBackdropsPerItem": "Massimo numero di sfondi per oggetto:",
"LabelMaxScreenshotsPerItem": "Massimo numero di foto per oggetto:",
"LabelMinBackdropDownloadWidth": "Massima larghezza sfondo:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Parti addizionali",
"ButtonSplitVersionsApart": "Separa Versioni",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Mancante",
"LabelOffline": "Spento",
"PathSubstitutionHelp": "La sostituzione percorsi viene utilizzata per mappare un percorso sul server, su uno a cui i client sono in grado di accedere. Consentendo ai client l'accesso diretto ai media sul server possono essere in grado di riprodurli direttamente attraverso la rete ed evitare di utilizzare le risorse del server per lo streaming e la transcodifica.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Massima qualit\u00e0",
"OptionEnableDebugTranscodingLogging": "Abilita la registrazione transcodifica di debug",
"OptionEnableDebugTranscodingLoggingHelp": "Questo creer\u00e0 file di log molto grandi ed \u00e8 consigliato solo se necessario per la risoluzione dei problemi.",
+ "ButtonNew": "Nuovo",
+ "TabMetadata": "Metadati",
+ "TabImages": "Immagini",
+ "TabCollectionTitles": "Titolo",
+ "ButtonSearch": "Cerca",
+ "ButtonRemove": "Rimuovi",
"EditCollectionItemsHelp": "Aggiungi o rimuovi film, serie, album, libri o giochi che desideri raggruppare in questa collezione.",
"HeaderAddTitles": "Aggiungi titoli",
"LabelEnableDlnaPlayTo": "Abilita DLNA su",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Percorsi di sistema",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "API",
"LinkApiDocumentation": "Documentazione Api",
"LabelFriendlyServerName": "Nome condiviso del server:",
"LabelFriendlyServerNameHelp": "Questo nome \u00e8 usato per identificare il server sulla rete.Se lasciato vuoto verra usato il nome del pc",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Tradurre EMBY\u00e8 un progetto in corso.",
"LabelReadHowYouCanContribute": "Scopri come puoi contribuire.",
"HeaderNewCollection": "Nuova collezione",
- "ButtonSubmit": "Invia",
"ButtonCreate": "Crea",
- "LabelCustomCss": "CSS Personalizzato",
- "LabelCustomCssHelp": "Applica il tuo CSS personale all'interfaccia web",
- "LabelLocalHttpServerPortNumber": "Porta HTTP locale",
- "LabelLocalHttpServerPortNumberHelp": "Numero di porta TCP da associare al server http di Emby",
- "LabelPublicHttpPort": "Porta HTTP pubblica",
- "LabelPublicHttpPortHelp": "Numero di porta pubblica che dovrebbe essere mappato sulla porta HTTP locale.",
- "LabelPublicHttpsPort": "Numero porta HTTP pubblica",
- "LabelPublicHttpsPortHelp": "Numero della porta pubblica che dovrebbe essere mappato sulla porta HTTPS locale.",
- "LabelEnableHttps": "Riporta HTTPS come indirizzo esterno",
- "LabelEnableHttpsHelp": "se abilitato, il server riporter\u00e0 un url HTTPS ai client come il proprio indirizzo esterno.",
- "LabelHttpsPort": "Porta HTTPS locale",
- "LabelHttpsPortHelp": "Numero di porta TCP da associare al server https di Emby",
"LabelWebSocketPortNumber": "Numero porta web socket:",
- "LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte",
- "LabelEnableAutomaticPortMapHelp": "Tenta di mappare automaticamente la porta pubblica sulla porta locale tramite UPnP. Questo potrebbe non funzionare con alcuni modelli di router.",
"LabelExternalDDNS": "Indirizzo WAN esterno",
"LabelExternalDDNSHelp": "Se hai un DNS dinamico inserisci l'indirizzo qui. Le app di Emby lo utilizzeranno nelle connessioni remote. Lascia il campo vuoto per sfruttare la rilevazione automatica",
"TabResume": "Riprendi",
@@ -591,8 +433,12 @@
"HeaderProgram": "Programma",
"HeaderClients": "Dispositivi",
"LabelCompleted": "Completato",
+ "LabelFailed": "Fallito",
"LabelSkipped": "Saltato",
"HeaderEpisodeOrganization": "Organizzazione Episodi",
+ "LabelSeries": "Serie:",
+ "LabelSeasonNumber": "Numero Stagione",
+ "LabelEpisodeNumber": "Episodio numero",
"LabelEndingEpisodeNumber": "Numero ultimo episodio:",
"LabelEndingEpisodeNumberHelp": "Richiesto solo se ci sono pi\u00f9 file per espisodio",
"HeaderSupportTheTeam": "Supporta il Team di Emby",
@@ -627,16 +473,13 @@
"OptionMove": "Sposta",
"LabelTransferMethodHelp": "Copiare o spostare i file dalla cartella da monitorizzare",
"HeaderLatestNews": "Ultime Novit\u00e0",
- "HeaderHelpImproveProject": "Aiuta a migliorare Emby",
"HeaderRunningTasks": "Operazioni in corso",
"HeaderActiveDevices": "Dispositivi Connessi",
"HeaderPendingInstallations": "installazioni in coda",
- "HeaderServerInformation": "Informazioni Server",
"ButtonRestartNow": "Riavvia Adesso",
"ButtonRestart": "Riavvia",
"ButtonShutdown": "Arresta Server",
"ButtonUpdateNow": "Aggiorna Adesso",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Per favore Arresta il server ed aggiorna manualmente",
"NewServerVersionAvailable": "E' disponibile una nuova versione del Server Emby!",
"ServerUpToDate": "Il Server Emby \u00e8 aggiornato",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determina la durata in secondi tra i messaggi di presenza del server.",
"LabelDefaultUser": "Utente Predefinito:",
"LabelDefaultUserHelp": "Determina quale libreria utente deve essere visualizzato sui dispositivi collegati. Questo pu\u00f2 essere disattivata tramite un profilo di dispositivo.",
+ "HeaderPlaybackSettings": "Impostazioni per la riproduzione",
"TitleDlna": "DLNA",
- "TitleChannels": "Canali",
"HeaderServerSettings": "Impostazioni server",
"LabelWeatherDisplayLocation": "Localit\u00e0 previsioni meteo",
"LabelWeatherDisplayLocationHelp": "Citt\u00e0, Stato",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Quando i client disabilitati possono presentare una schermata di login con una selezione visuale di utenti.",
"OptionOtherApps": "Altre apps",
"OptionMobileApps": "App dispositivi mobili",
+ "TabNotifications": "Notifiche",
"HeaderNotificationList": "Fare clic su una notifica per configurarne le opzioni.",
+ "LabelNotificationEnabled": "Abilita questa notifica",
+ "NotificationOptionVideoPlayback": "La riproduzione video \u00e8 iniziata",
+ "NotificationOptionAudioPlayback": "Riproduzione audio iniziata",
+ "NotificationOptionGamePlayback": "Gioco avviato",
+ "NotificationOptionNewLibraryContent": "Nuovo contenuto aggiunto",
+ "NotificationOptionServerRestartRequired": "Riavvio del server necessario",
+ "LabelMonitorUsers": "Monitorare l'attivit\u00e0 da:",
+ "LabelSendNotificationToUsers": "Invia notifiche a:",
+ "LabelUseNotificationServices": "Utilizzare i seguenti servizi:",
"NotificationOptionApplicationUpdateAvailable": "Aggiornamento dell'applicazione disponibile",
"NotificationOptionApplicationUpdateInstalled": "Aggiornamento dell'applicazione installato",
"NotificationOptionPluginUpdateInstalled": "Aggiornamento del plugin installato",
"NotificationOptionPluginInstalled": "Plugin installato",
"NotificationOptionPluginUninstalled": "Plugin disinstallato",
- "NotificationOptionVideoPlayback": "La riproduzione video \u00e8 iniziata",
- "NotificationOptionAudioPlayback": "Riproduzione audio iniziata",
- "NotificationOptionGamePlayback": "Gioco avviato",
- "NotificationOptionVideoPlaybackStopped": "Riproduzione video interrotta",
- "NotificationOptionAudioPlaybackStopped": "Audio Fermato",
- "NotificationOptionGamePlaybackStopped": "Gioco Fermato",
"NotificationOptionTaskFailed": "Operazione pianificata fallita",
"NotificationOptionInstallationFailed": "Installazione fallita",
- "NotificationOptionNewLibraryContent": "Nuovo contenuto aggiunto",
- "NotificationOptionNewLibraryContentMultiple": "Nuovi contenuti aggiunti (multipli)",
- "NotificationOptionCameraImageUploaded": "Immagine fotocamera caricata",
- "NotificationOptionUserLockedOut": "Utente bloccato",
- "HeaderSendNotificationHelp": "Le notifiche vengono consegnati alla tua casella di posta ricamato. Ulteriori opzioni possono essere installati dalla scheda Servizi.",
- "NotificationOptionServerRestartRequired": "Riavvio del server necessario",
- "LabelNotificationEnabled": "Abilita questa notifica",
- "LabelMonitorUsers": "Monitorare l'attivit\u00e0 da:",
- "LabelSendNotificationToUsers": "Invia notifiche a:",
- "LabelUseNotificationServices": "Utilizzare i seguenti servizi:",
"CategoryUser": "Utente",
"CategorySystem": "Sistema",
- "CategoryApplication": "Applicazione",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Titolo messaggio:",
"LabelAvailableTokens": "Gettoni disponibili:",
"AdditionalNotificationServices": "Sfoglia il catalogo plugin per installare i servizi di notifica aggiuntivi.",
+ "LabelSelectUsers": "Seleziona Utenti:",
"OptionAllUsers": "Tutti gli utenti",
"OptionAdminUsers": "Amministratori",
"OptionCustomUsers": "Personalizza",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Destra",
"ButtonBack": "Indietro",
"ButtonInfo": "Info",
- "ButtonOsd": "Su Schermo",
"ButtonPageUp": "Pagina Su",
"ButtonPageDown": "Pagina Gi\u00f9",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Cerca",
"ButtonSettings": "Impostazioni",
"ButtonTakeScreenshot": "Cattura schermata",
"ButtonLetterUp": "Lettera Su",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "e",
"TabNowPlaying": "In esecuzione",
"TabNavigation": "Navigazione",
- "TabControls": "Controlli",
+ "ButtonFullscreen": "Tutto Schermo",
"ButtonScenes": "Scene",
"ButtonSubtitles": "Sottotitoli",
+ "ButtonAudioTracks": "Tracce audio",
+ "ButtonPreviousTrack": "Traccia Precedente",
+ "ButtonNextTrack": "Traccia Successiva",
"ButtonStop": "Stop",
"ButtonPause": "Pausa",
- "ButtonNext": "Prossimo",
- "ButtonPrevious": "Precedente",
"LabelGroupMoviesIntoCollections": "Raggruppa i film nelle collezioni",
"LabelGroupMoviesIntoCollectionsHelp": "Quando si visualizzano le liste di film, quelli appartenenti ad una collezione saranno visualizzati come un elemento raggruppato.",
+ "CategoryApplication": "Applicazione",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin fallito",
+ "TabControls": "Controlli",
"ButtonVolumeUp": "Aumenta Volume",
"ButtonVolumeDown": "Diminuisci volume",
"ButtonMute": "Muto",
"HeaderLatestMedia": "Ultimi Media",
+ "OptionNoSubtitles": "Nessun Sottotitolo",
"OptionSpecialFeatures": "Contenuti Speciali",
+ "ChannelAccessHelp": "Selezionare i canali da condividere con questo utente. Gli amministratori saranno in grado di modificare tutti i canali usando il gestore dei metadati",
"HeaderCollections": "Collezioni",
"LabelProfileCodecsHelp": "Separati da virgola. Questo pu\u00f2 essere lasciato vuoto da applicare a tutti i codec.",
"LabelProfileContainersHelp": "Separati da virgola. Questo pu\u00f2 essere lasciato vuoto da applicare a tutti i contenitori.",
"HeaderResponseProfile": "Risposta Profilo",
"LabelType": "Tipo:",
- "LabelPersonRole": "Ruolo:",
- "LabelPersonRoleHelp": "Ruolo \u00e8 generalmente applicabile solo agli attori.",
"LabelProfileContainer": "Contenitore:",
"LabelProfileVideoCodecs": "Codec Video:",
"LabelProfileAudioCodecs": "Codec Audio:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Se attivato, tutti i video sono rappresentati in DIDL come \"object.item.videoItem\" invece che di tipo pi\u00f9 specifico, come \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Tipi di media supportati:",
"TabIdentification": "Identificazione",
- "HeaderIdentification": "Identificazione",
"TabDirectPlay": "Riproduzione Diretta",
"TabContainers": "Contenitori",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "Questi valori controllano come il Server Emby si presenter\u00e0 ad un dispositivo.",
"LabelMaxBitrate": "Bitrate Massimo:",
"LabelMaxBitrateHelp": "Specificare un bitrate massimo in presenza di larghezza di banda limitata, o se il dispositivo impone il proprio limite.",
- "LabelMaxStreamingBitrate": "Massimo Bitrate streaming",
- "LabelMaxStreamingBitrateHelp": "Specifica il bitrate massimo per lo streaming",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Massimo sinc. Bitrate",
- "LabelMaxStaticBitrateHelp": "Specifica il bitrate massimo quando sincronizzi ad alta qualit\u00e0",
- "LabelMusicStaticBitrate": "Musica sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specifica il max Bitrate quando sincronizzi la musica",
- "LabelMusicStreamingTranscodingBitrate": "Musica trascodifica bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specifica il max Bitrate per lo streaming musica",
"OptionIgnoreTranscodeByteRangeRequests": "Ignorare le richieste di intervallo di byte di trascodifica",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Se abilitata, queste richieste saranno onorate, ma ignorano l'intervallo di byte.",
"LabelFriendlyName": "Nome Condiviso",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Questo \u00e8 necessario per alcuni dispositivi che non hanno l'avanzamento rapido che funziona bene.",
"HeaderSubtitleDownloadingHelp": "Quando Emby fa la scansione dei tuoi file video pu\u00f2 cercare i sottotitoli mancanti e scaricarli usando un provider come OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Scarica sottotitoli per:",
- "MessageNoChapterProviders": "Installare un plugin provider capitoli come ChapterDb per attivare le opzioni capitolo aggiuntive.",
- "LabelSkipIfGraphicalSubsPresent": "Salta se il video contiene gi\u00e0 i sottotitoli grafici",
- "LabelSkipIfGraphicalSubsPresentHelp": "Mantenere le versioni testuali dei sottotitoli si tradurr\u00e0 in una riproduzione pi\u00f9 efficiente e diminuir\u00e0 la probabilit\u00e0 che sia necessaria la transcodifica video",
"TabSubtitles": "Sottotitoli",
- "TabChapters": "capitoli",
- "HeaderDownloadChaptersFor": "Scarica i nomi dei capitoli per:",
"LabelOpenSubtitlesUsername": "Nome utente Open Subtitles:",
"LabelOpenSubtitlesPassword": "Password Open Subtitles:",
- "HeaderChapterDownloadingHelp": "Quando Emby esegue la scansione dei file video pu\u00f2 scaricare i nomi dei capitoli in modo semplice da internet utilizzando plugin di ricerca capitoli come ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Riprodurre la traccia audio di default indipendentemente dalla lingua",
- "LabelSubtitlePlaybackMode": "Modalit\u00e0 Sottotitolo:",
"LabelDownloadLanguages": "Scarica lingue:",
"ButtonRegister": "Registro",
+ "LabelSkipIfGraphicalSubsPresent": "Salta se il video contiene gi\u00e0 i sottotitoli grafici",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Mantenere le versioni testuali dei sottotitoli si tradurr\u00e0 in una riproduzione pi\u00f9 efficiente e diminuir\u00e0 la probabilit\u00e0 che sia necessaria la transcodifica video",
"LabelSkipIfAudioTrackPresent": "Ignora se la traccia audio di default corrisponde alla lingua di download",
"LabelSkipIfAudioTrackPresentHelp": "Deselezionare questa opzione per assicurare che tutti i video hanno i sottotitoli, a prescindere dalla lingua audio.",
+ "NotificationOptionNewLibraryContentMultiple": "Nuovi contenuti aggiunti (multipli)",
"HeaderSendMessage": "Invia un messaggio",
"ButtonSend": "Invia",
"LabelMessageText": "Testo del messaggio:",
+ "LabelService": "Servizio:",
+ "LabelStatus": "Stato:",
+ "LabelVersion": "Versione:",
+ "LabelLastResult": "Ultimo risultato:",
+ "ButtonOsd": "Su Schermo",
"MessageNoAvailablePlugins": "Nessun plugin disponibile.",
"LabelDisplayPluginsFor": "Mostra plugin per:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Nome Episodio",
- "LabelSeriesNamePlain": "Nome Serie",
"ValueSeriesNamePeriod": "Nome Serie",
"ValueSeriesNameUnderscore": "Nome Serie",
"ValueEpisodeNamePeriod": "Titolo Episodio",
"ValueEpisodeNameUnderscore": "Titolo Episodio",
- "LabelSeasonNumberPlain": "Stagione numero",
- "LabelEpisodeNumberPlain": "Episodio numero",
- "LabelEndingEpisodeNumberPlain": "Numero ultimo episodio",
"HeaderTypeText": "Inserisci il testo",
"LabelTypeText": "Testo",
+ "OptionDefaultSubtitles": "Predefinito",
+ "OptionOnlyForcedSubtitles": "Solo i sottotitoli forzati",
+ "OptionAlwaysPlaySubtitles": "Visualizza sempre i sottotitoli",
+ "OptionDefaultSubtitlesHelp": "I sottotitoli corrispondenti alla lingua preferita saranno caricati quando l'audio \u00e8 in una lingua straniera.",
+ "OptionOnlyForcedSubtitlesHelp": "Solo i sottotitoli contrassegnati come forzati saranno caricati.",
+ "OptionAlwaysPlaySubtitlesHelp": "I sottotitoli corrispondenti alla lingua preferita saranno caricati a prescindere dalla lingua dell'audio.",
+ "OptionNoSubtitlesHelp": "I sottotitoli non verranno caricati di default.",
+ "TangibleSoftwareMessage": "Utilizza Tangible Solutions Java\/C# con una licenza su donazione.",
+ "HeaderCredits": "Crediti",
+ "TabCollections": "Collezioni",
+ "TabFavorites": "Preferiti",
+ "TabMyLibrary": "Mia Libreria",
+ "LabelCustomizeOptionsPerMediaType": "Personalizza per il tipo di supporto:",
+ "LabelPlayDefaultAudioTrack": "Riprodurre la traccia audio di default indipendentemente dalla lingua",
+ "LabelSubtitlePlaybackMode": "Modalit\u00e0 Sottotitolo:",
+ "TabOther": "Altro",
+ "NotificationOptionVideoPlaybackStopped": "Riproduzione video interrotta",
+ "NotificationOptionAudioPlaybackStopped": "Audio Fermato",
+ "NotificationOptionGamePlaybackStopped": "Gioco Fermato",
"HeaderSearchForSubtitles": "Ricerca per sottotitoli",
- "ButtonMore": "Piu",
"MessageNoSubtitleSearchResultsFound": "Nessun elemento trovato",
"TabDisplay": "Schermo",
"TabLanguages": "Lingue",
- "TabAppSettings": "Impostazioni app",
"LabelEnableThemeSongs": "Abilita tema canzoni",
"LabelEnableBackdrops": "Abilita gli sfondi",
"LabelEnableThemeSongsHelp": "Se abiltato le canzoni a tema saranno riprodotte mentre visualizzi la tua libreria",
"LabelEnableBackdropsHelp": "Se abilitato gli sfondi verranno riprodotti mentre visualizzi la tua libreria",
- "HeaderHomePage": "Pagina Iniziale",
- "HeaderSettingsForThisDevice": "Configurazione per questo dispositivo",
"OptionAuto": "Automatico",
"OptionYes": "Si",
"OptionNo": "No",
- "HeaderOptions": "Opzioni",
- "HeaderIdentificationResult": "Risultati Identificazione",
"LabelHomePageSection1": "Pagina Iniziale Sezione 1:",
"LabelHomePageSection2": "Pagina Iniziale Sezione 2:",
"LabelHomePageSection3": "Pagina Iniziale Sezione 3:",
- "LabelHomePageSection4": "Pagina Iniziale Sezione 4:",
- "OptionMyMediaButtons": "I miei media (pulsanti)",
- "OptionMyMedia": "I miei media",
- "OptionMyMediaSmall": "I miei media (piccolo)",
"OptionResumablemedia": "Riprendi",
"OptionLatestMedia": "Ultimi media",
- "OptionLatestChannelMedia": "Ultime voci del canale",
- "HeaderLatestChannelItems": "Ultime Canale Articoli",
"OptionNone": "Nessuno",
"HeaderLiveTv": "Diretta TV",
"HeaderReports": "Rapporti",
"HeaderMetadataManager": "Manager Metadati",
- "HeaderSettings": "Configurazione",
"MessageLoadingChannels": "Sto caricando il contenuto del canale",
- "MessageLoadingContent": "Caricamento contenuto....",
"ButtonMarkRead": "Segna come letto",
"OptionDefaultSort": "Predefinito",
"OptionCommunityMostWatchedSort": "Pi\u00f9 visti",
"TabNextUp": "Da vedere",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Diventa un Supporter di Emby",
"MessageNoMovieSuggestionsAvailable": "Nessun suggerimento di film attualmente disponibile. Iniziare a guardare e valutare i vostri film, e poi tornare per i suggerimenti.",
"MessageNoCollectionsAvailable": "Le collezioni ti permettono di goderti raccolte personalizzate di Film, Serie TV, Album, Libri e Giochi. Clicca sul + per iniziare a creare le tue Collezioni",
- "MessageNoPlaylistsAvailable": "Playlist ti permettere di mettere in coda gli elementi da riprodurre.Usa il tasto destro o tap e tieni premuto quindi seleziona elemento da aggiungere",
- "MessageNoPlaylistItemsAvailable": "Questa playlist al momento \u00e8 vuota",
+ "ButtonClose": "Chiudi",
+ "HeaderConfirmDeletion": "Conferma Cancellazione",
+ "HeaderHomePage": "Pagina Iniziale",
+ "HeaderSettingsForThisDevice": "Configurazione per questo dispositivo",
"ButtonDismiss": "Cancella",
+ "ButtonMore": "Piu",
"ButtonEditOtherUserPreferences": "Modifica questo utente di profilo, l'immagine e le preferenze personali.",
+ "TitleChannels": "Canali",
"LabelChannelStreamQuality": "Preferenziale qualit\u00e0 del flusso internet:",
"LabelChannelStreamQualityHelp": "In un ambiente a bassa larghezza di banda, limitando la qualit\u00e0 pu\u00f2 contribuire a garantire un'esperienza di streaming continuo.",
"OptionBestAvailableStreamQuality": "Migliore disponibile",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Elimina contenuto dopo: (giorni)",
"LabelChannelDownloadAgeHelp": "Contenuti scaricati pi\u00f9 vecchi di questo limite sarnno cancellati. Rimarranno riproducibili via internet in streaming.",
"ChannelSettingsFormHelp": "Installare canali come Trailer e Vimeo nel catalogo plugin.",
- "ButtonOptions": "Opzioni",
- "ViewTypePlaylists": "Playlist",
+ "ButtonAddToCollection": "Aggiungi alla collezione",
+ "ButtonSubmit": "Invia",
"ViewTypeMovies": "Film",
"ViewTypeTvShows": "Serie Tv",
"ViewTypeGames": "Giochi",
"ViewTypeMusic": "Musica",
- "ViewTypeMusicGenres": "Generi",
- "ViewTypeMusicArtists": "Artisti",
"ViewTypeBoxSets": "Collezioni",
- "ViewTypeChannels": "Canali",
- "ViewTypeLiveTV": "TV in diretta",
- "ViewTypeLiveTvNowPlaying": "Ora in onda",
- "ViewTypeLatestGames": "Ultimi Giorchi",
- "ViewTypeRecentlyPlayedGames": "Guardato di recente",
- "ViewTypeGameFavorites": "Preferiti",
- "ViewTypeGameSystems": "Configurazione gioco",
- "ViewTypeGameGenres": "Generi",
- "ViewTypeTvResume": "Riprendi",
- "ViewTypeTvNextUp": "Prossimi",
- "ViewTypeTvLatest": "Ultimi",
- "ViewTypeTvShowSeries": "Serie",
- "ViewTypeTvGenres": "Generi",
- "ViewTypeTvFavoriteSeries": "Serie Preferite",
- "ViewTypeTvFavoriteEpisodes": "Episodi Preferiti",
- "ViewTypeMovieResume": "Riprendi",
- "ViewTypeMovieLatest": "Ultimi",
- "ViewTypeMovieMovies": "Film",
- "ViewTypeMovieCollections": "Collezioni",
- "ViewTypeMovieFavorites": "Preferiti",
- "ViewTypeMovieGenres": "Generi",
- "ViewTypeMusicLatest": "Ultimi",
- "ViewTypeMusicPlaylists": "Playlist",
- "ViewTypeMusicAlbums": "Album",
- "ViewTypeMusicAlbumArtists": "Album Artisti",
"HeaderOtherDisplaySettings": "Impostazioni Video",
- "ViewTypeMusicSongs": "Canzoni",
- "ViewTypeMusicFavorites": "Preferiti",
- "ViewTypeMusicFavoriteAlbums": "Album preferiti",
- "ViewTypeMusicFavoriteArtists": "Artisti preferiti",
- "ViewTypeMusicFavoriteSongs": "Canzoni Preferite",
- "HeaderMyViews": "Mie viste",
"LabelSelectFolderGroups": "Raggruppa i contenuti delle seguenti cartelle in viste come Film, Musica e Serie TV",
"LabelSelectFolderGroupsHelp": "Le cartelle che sono deselezionate verranno visualizzate ognuna con la propria vista",
+ "ViewTypeChannels": "Canali",
+ "ViewTypeLiveTV": "TV in diretta",
"OptionDisplayAdultContent": "Visualizza contenuti per adulti",
+ "MessageNoChapterProviders": "Installare un plugin provider capitoli come ChapterDb per attivare le opzioni capitolo aggiuntive.",
+ "TabChapters": "capitoli",
+ "HeaderDownloadChaptersFor": "Scarica i nomi dei capitoli per:",
+ "HeaderChapterDownloadingHelp": "Quando Emby esegue la scansione dei file video pu\u00f2 scaricare i nomi dei capitoli in modo semplice da internet utilizzando plugin di ricerca capitoli come ChapterDb.",
"OptionLibraryFolders": "Cartelle dei media",
+ "LabelHomePageSection4": "Pagina Iniziale Sezione 4:",
+ "OptionLatestChannelMedia": "Ultime voci del canale",
+ "HeaderLatestChannelItems": "Ultime Canale Articoli",
"TitleRemoteControl": "Telecomando",
+ "HeaderMyViews": "Mie viste",
"OptionLatestTvRecordings": "Ultime registrazioni",
+ "ButtonRefresh": "Aggiorna",
"LabelProtocolInfo": "Info protocollo:",
"LabelProtocolInfoHelp": "Il valore che verr\u00e0 utilizzato quando si risponde a richieste GetProtocolInfo dal dispositivo.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby include il supporto nativo per i file di metadati di tipo NFO. Per attivare o disattivare i metadati NFO, utilizza la scheda Avanzate per configurare le opzioni per i tuoi tipi di file multimediali.",
- "LabelKodiMetadataUser": "Sincronizza i dati utente a nfo di per:",
- "LabelKodiMetadataUserHelp": "Abilita questa opzione per mantenere i dati di orologio sincronizzati tra il Server Emby e i file NFO.",
- "LabelKodiMetadataDateFormat": "Data di uscita Formato:",
- "LabelKodiMetadataDateFormatHelp": "Tutte le date all'interno del nfo verranno letti e scritti utilizzando questo formato.",
- "LabelKodiMetadataSaveImagePaths": "Salva percorsi delle immagini all'interno dei file NFO",
- "LabelKodiMetadataSaveImagePathsHelp": "Questo \u00e8 consigliato se si dispone di nomi di file immagine che non sono conformi alle linee guida Kodi.",
- "LabelKodiMetadataEnablePathSubstitution": "Abilita sostituzione di percorso",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Consente percorso sostituzione dei percorsi delle immagini utilizzando le impostazioni di sostituzione percorso del server.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Vedere la sostituzione percorso.",
- "OptionDisplayChannelsInline": "Canali di visualizzazione in linea all'interno le mie opinioni",
- "OptionDisplayChannelsInlineHelp": "Se abilitata, i canali verranno visualizzati direttamente accanto ad altri punti di vista. Se disattivato, saranno esposti all'interno di una vista canali separati.",
"LabelDisplayCollectionsView": "Mostra le Collezioni di film",
- "LabelDisplayCollectionsViewHelp": "Questo creer\u00e0 una vista separata per le collezioni che si ha creato o alle quali si ha accesso. Per creare una collezione, cliccare con il tasto destro o effettuare un tocco prolungato su un film e selezionare \"Aggiungi alla collezione\" .",
- "LabelKodiMetadataEnableExtraThumbs": "Copia extrafanart in extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "Copia extrafanart in extrathumbs",
+ "HeaderSubtitles": "Sottotitoli",
"TabServices": "Servizi",
"TabLogs": "Logs",
"HeaderServerLogFiles": "File log del Server:",
@@ -1029,6 +820,8 @@
"LabelAppName": "Nome app",
"LabelAppNameExample": "Esempio: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Concedere un permesso per applicazione al fine di comunicare con il Server Emby.",
+ "TabUsers": "Utenti",
+ "TabScheduledTasks": "Operazioni pianificate",
"HeaderHttpHeaders": "Intestazioni Http",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "valore:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filtra",
"ButtonView": "Vista",
"LabelPageSize": "Limite articolo:",
- "LabelPath": "Percorso:",
"LabelView": "Vista:",
- "TabUsers": "Utenti",
- "LabelSortName": "Nome ordinato:",
- "LabelDateAdded": "Aggiunto il",
+ "LabelManagement": "Gestione:",
"HeaderFeatures": "Caratteristiche",
"HeaderAdvanced": "Avanzato",
"ButtonSync": "Sinc.",
- "TabScheduledTasks": "Operazioni pianificate",
"HeaderChapters": "Capitoli",
"HeaderResumeSettings": "Recupera impostazioni",
"TabSync": "Sinc",
"TitleUsers": "Utenti",
+ "LabelMaxStreamingBitrate": "Massimo Bitrate streaming",
+ "LabelMaxStreamingBitrateHelp": "Specifica il bitrate massimo per lo streaming",
+ "LabelMaxStaticBitrate": "Massimo sinc. Bitrate",
+ "LabelMaxStaticBitrateHelp": "Specifica il bitrate massimo quando sincronizzi ad alta qualit\u00e0",
"LabelProtocol": "Protocollo:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sinc",
"ButtonAddToPlaylist": "Aggiungi alla playlist",
+ "MessageNoPlaylistsAvailable": "Playlist ti permettere di mettere in coda gli elementi da riprodurre.Usa il tasto destro o tap e tieni premuto quindi seleziona elemento da aggiungere",
+ "MessageNoPlaylistItemsAvailable": "Questa playlist al momento \u00e8 vuota",
"TabPlaylists": "Playlists",
- "ButtonClose": "Chiudi",
"LabelAllLanguages": "Tutte le lingue",
"HeaderBrowseOnlineImages": "Sfoglia le immagini sul web",
"LabelSource": "Origine:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disco",
- "OptionIcon": "Icona",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Immagine",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Non identificata",
"OptionMissingParentalRating": "Voto genitori mancante",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodi:",
"OptionSeason0": "Stagione 0",
"LabelReport": "Report:",
"OptionReportSongs": "Canzoni",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Cantanti",
"OptionReportAlbums": "Album",
"OptionReportAdultVideos": "Video x adulti",
+ "ButtonMoreItems": "Dettagli",
"HeaderActivity": "Attivit\u00e0",
"ScheduledTaskStartedWithName": "{0} Avviati",
"ScheduledTaskCancelledWithName": "{0} cancellati",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Sottotitoli non scaricati per {0}",
"LabelRunningTimeValue": "Durata: {0}",
"LabelIpAddressValue": "Indirizzo IP: {0}",
- "UserLockedOutWithName": "L'utente {0} \u00e8 stato bloccato",
"UserConfigurationUpdatedWithName": "Configurazione utente \u00e8 stata aggiornata per {0}",
"UserCreatedWithName": "Utente {0} \u00e8 stato creato",
"UserPasswordChangedWithName": "Password utente cambiata per {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Il Server Emby \u00e8 stato aggiornato",
"AuthenticationSucceededWithUserName": "{0} Autenticati con successo",
"FailedLoginAttemptWithUserName": "Login fallito da {0}",
- "UserDownloadingItemWithValues": "{0} sta scaricando {1}",
"UserStartedPlayingItemWithValues": "{0} \u00e8 partito da {1}",
"UserStoppedPlayingItemWithValues": "{0} stoppato {1}",
"AppDeviceValues": "App: {0}, Dispositivo: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Caricamento contenuto....",
"LabelChannelDownloadSizeLimit": "Dimensione massima Download (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limitare la dimensione della cartella canale di download.",
+ "LabelMusicStaticBitrate": "Musica sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specifica il max Bitrate quando sincronizzi la musica",
+ "LabelMusicStreamingTranscodingBitrate": "Musica trascodifica bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specifica il max Bitrate per lo streaming musica",
"HeaderRecentActivity": "Attivit\u00e0 recenti",
"HeaderPeople": "Persone",
"HeaderDownloadPeopleMetadataFor": "Scarica biografia e immagini per:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Visualizza cartelle come normali cartelle dei media",
"ViewTypeLiveTvRecordingGroups": "Registrazioni",
"ViewTypeLiveTvChannels": "canali",
- "LabelEasyPinCode": "Codice Pin",
- "EasyPasswordHelp": "Il codice pin facile viene utilizzato per l'accesso offline con le app Emby supportate, e pu\u00f2 essere utilizzato anche per una facile accesso in rete.",
- "LabelInNetworkSignInWithEasyPassword": "Abilita l'accesso da rete locale tramite codice PIN.",
- "LabelInNetworkSignInWithEasyPasswordHelp": "Se attivata, sarai in grado di utilizzare il tuo codice pin facile per accedere alle app di Emby all'interno della tua rete domestica. La tua password usuale sar\u00e0 necessaria solo per accedere alle app quando sei fuori casa. Se il codice PIN viene lasciato vuoto, non avrai bisogno di una password quando sei all'interno della tua rete domestica.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Accesso locale",
"HeaderViewOrder": "Visualizza ordine",
- "ButtonResetEasyPassword": "Resetta codice PIN",
"LabelSelectUserViewOrder": "Scegli l'ordine in cui le tue viste saranno mostrate all'interno della app di Emby",
+ "LabelReleaseDate": "Data di rilascio:",
+ "LabelEndDate": "Fine data:",
+ "LabelYear": "Anno:",
+ "FolderTypeMixed": "contenuto misto",
+ "FolderTypeMovies": "Film",
+ "FolderTypeMusic": "Musica",
+ "FolderTypeAdultVideos": "Video per adulti",
+ "FolderTypePhotos": "Foto",
+ "FolderTypeMusicVideos": "Video musicali",
+ "FolderTypeHomeVideos": "Video personali",
+ "FolderTypeGames": "Giochi",
+ "FolderTypeBooks": "Libri",
+ "FolderTypeTvShows": "Tv",
+ "LabelArtists": "Cantanti",
+ "LabelArtistsHelp": "Separazione multipla utilizzando ;",
+ "ButtonAdvancedRefresh": "Aggiornamento (avanzato)",
+ "LabelPersonRole": "Ruolo:",
+ "LabelPersonRoleHelp": "Ruolo \u00e8 generalmente applicabile solo agli attori.",
+ "LabelPath": "Percorso:",
+ "LabelSortName": "Nome ordinato:",
+ "LabelDateAdded": "Aggiunto il",
"LabelMetadataRefreshMode": "Metadata (modo Aggiornamento)",
"LabelImageRefreshMode": "Immagine (modo Aggiornamento)",
"OptionDownloadMissingImages": "Immagini mancanti",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Persona Info",
"HeaderIdentifyItem": "Identifica elemento",
"HeaderIdentifyItemHelp": "Inserisci uno o pi\u00f9 criteri di ricerca. Rimuovi criteri di aumentare i risultati di ricerca.",
- "HeaderConfirmDeletion": "Conferma Cancellazione",
"LabelFollowingFileWillBeDeleted": "Il seguente file verr\u00e0 eliminato:",
"LabelIfYouWishToContinueWithDeletion": "Se si desidera continuare, si prega di confermare inserendo il valore di:",
"ButtonIdentify": "Identifica",
"LabelAlbumArtist": "Artista Album",
- "LabelAlbumArtists": "Artisti:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Voto Comunit\u00e0:",
"LabelVoteCount": "Totale Voti:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Messaggio pers:",
"LabelOverview": "Trama:",
"LabelShortOverview": "Trama breve:",
- "LabelReleaseDate": "Data di rilascio:",
- "LabelYear": "Anno:",
"LabelPlaceOfBirth": "Luogo di nascita:",
- "LabelEndDate": "Fine data:",
"LabelAirDate": "In onda da (gg):",
"LabelAirTime:": "In onda da:",
"LabelRuntimeMinutes": "Durata ( minuti):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Impostazioni metadati",
"LabelLockItemToPreventChanges": "Bloccare questa voce per impedire modifiche future",
"MessageLeaveEmptyToInherit": "Lasciare vuoto per ereditare le impostazioni da un elemento principale, o il valore predefinito globale.",
- "TabDonate": "Dona",
"HeaderDonationType": "Tipo di donazione:",
"OptionMakeOneTimeDonation": "Fai una donazione separata",
- "OptionOneTimeDescription": "Si tratta di una donazione aggiuntiva alla squadra per mostrare il vostro sostegno. Non ha alcun beneficio e non produrr\u00e0 una chiave sostenitore.",
- "OptionLifeTimeSupporterMembership": "Appartenenza supporter Lifetime",
- "OptionYearlySupporterMembership": "Appartenenza supporter annuale",
- "OptionMonthlySupporterMembership": "Appartenenza supporter mensile",
"OptionNoTrailer": "Nessun Trailer",
"OptionNoThemeSong": "No Temi canzone",
"OptionNoThemeVideo": "No tema video",
"LabelOneTimeDonationAmount": "Importo della donazione:",
- "ButtonDonate": "Donazione",
- "ButtonPurchase": "Acquista",
"OptionActor": "Attore",
"OptionComposer": "Compositore",
"OptionDirector": "Regista",
"OptionGuestStar": "Personaggi famosi",
"OptionProducer": "Produttore",
"OptionWriter": "Scrittore",
+ "LabelEpisodeNamePlain": "Nome Episodio",
+ "LabelSeriesNamePlain": "Nome Serie",
+ "LabelSeasonNumberPlain": "Stagione numero",
+ "LabelEpisodeNumberPlain": "Episodio numero",
+ "LabelEndingEpisodeNumberPlain": "Numero ultimo episodio",
+ "OptionOneTimeDescription": "Si tratta di una donazione aggiuntiva alla squadra per mostrare il vostro sostegno. Non ha alcun beneficio e non produrr\u00e0 una chiave sostenitore.",
"LabelAirDays": "In onda da (gg):",
"LabelAirTime": "In onda da:",
"HeaderMediaInfo": "Informazioni Media",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Info sviluppatore",
"HeaderRevisionHistory": "Cronologia delle revisioni",
"ButtonViewWebsite": "Visualizza sito web",
+ "ViewTypeLiveTvNowPlaying": "Ora in onda",
+ "ViewTypeLatestGames": "Ultimi Giorchi",
+ "ViewTypeRecentlyPlayedGames": "Guardato di recente",
+ "ViewTypeGameFavorites": "Preferiti",
+ "ViewTypeGameSystems": "Configurazione gioco",
+ "ViewTypeGameGenres": "Generi",
+ "ViewTypeTvResume": "Riprendi",
+ "ViewTypeTvNextUp": "Prossimi",
+ "ViewTypeTvLatest": "Ultimi",
+ "ViewTypeTvGenres": "Generi",
+ "ViewTypeMovieResume": "Riprendi",
+ "ViewTypeMovieLatest": "Ultimi",
+ "ViewTypeMovieMovies": "Film",
+ "ViewTypeMovieCollections": "Collezioni",
+ "ViewTypeMovieFavorites": "Preferiti",
+ "ViewTypeMovieGenres": "Generi",
+ "ViewTypeMusicLatest": "Ultimi",
+ "ViewTypeMusicAlbums": "Album",
+ "ViewTypeMusicAlbumArtists": "Album Artisti",
+ "TabDonate": "Dona",
+ "OptionLifeTimeSupporterMembership": "Appartenenza supporter Lifetime",
+ "OptionYearlySupporterMembership": "Appartenenza supporter annuale",
+ "OptionMonthlySupporterMembership": "Appartenenza supporter mensile",
+ "ViewTypeTvShowSeries": "Serie",
+ "ViewTypeTvFavoriteSeries": "Serie Preferite",
+ "ViewTypeTvFavoriteEpisodes": "Episodi Preferiti",
"HeaderXmlSettings": "Impostazioni Xml",
"HeaderXmlDocumentAttributes": "Attributi Documento Xml",
"HeaderXmlDocumentAttribute": "Attributo Documento Xml",
"XmlDocumentAttributeListHelp": "Questi attributi vengono applicati all'elemento radice di ogni risposta XML.",
"OptionSaveMetadataAsHidden": "Salvare i metadati e le immagini come file nascosti",
+ "ViewTypeMusicSongs": "Canzoni",
"LabelExtractChaptersDuringLibraryScan": "Estrarre immagini capitolo durante la scansione biblioteca",
"LabelExtractChaptersDuringLibraryScanHelp": "Se abilitata, le immagini capitolo verranno estratti quando i video vengono importati durante la scansione della libreria. Se disabilitata verranno estratti durante le immagini dei capitoli programmati compito, permettendo la scansione biblioteca regolare per completare pi\u00f9 velocemente.",
- "LabelConnectGuestUserName": "Username di Emby o indirizzo email:",
+ "ViewTypeMusicFavorites": "Preferiti",
+ "ViewTypeMusicFavoriteAlbums": "Album preferiti",
+ "ViewTypeMusicFavoriteArtists": "Artisti preferiti",
+ "ViewTypeMusicFavoriteSongs": "Canzoni Preferite",
+ "ButtonAddLocalUser": "Aggiungi Utente locale",
+ "HeaderIdentification": "Identificazione",
"LabelConnectUserName": "Username\/email di Emby:",
- "LabelConnectUserNameHelp": "Collegare questo utente a un account Emby per consentire un facile accesso da qualsiasi app Emby senza dover conoscere l'indirizzo IP del server.",
- "ButtonLearnMoreAboutEmbyConnect": "Scopri di pi\u00f9 su Emby Connect",
+ "LabelConnectUserNameHelp": "Collegare questo utente locale a un account online ricamato per consentire un facile segno-in di accesso da qualsiasi applicazione ricamato senza dover conoscere l'indirizzo IP del server",
+ "ButtonNext": "Prossimo",
+ "ButtonPrevious": "Precedente",
"LabelExternalPlayers": "Player esterni:",
"LabelExternalPlayersHelp": "Pulsanti di visualizzazione di riprodurre contenuti in lettori esterni. Questo \u00e8 disponibile solo su dispositivi che supportano schemi URL, generalmente Android e iOS. Con i giocatori esterni vi \u00e8 generalmente alcun supporto per il controllo remoto o ripresa.",
- "LabelNativeExternalPlayersHelp": "Mostra il bottone Riproduci su ",
- "LabelEnableItemPreviews": "Abilita anteprime voce",
- "LabelEnableItemPreviewsHelp": "se abilitato, anteprime scorrevoli appariranno quando si fa clic voci alcune schermate.",
+ "ValueSpecialEpisodeName": "Speciali - {0}",
"HeaderSubtitleProfile": "Profilo sottotitolo",
"HeaderSubtitleProfiles": "Profili sottotitoli",
"HeaderSubtitleProfilesHelp": "Profili sottotitoli descrivono i formati di sottotitoli supportati dal dispositivo.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmentato sottotitoli",
"LabelSubtitleFormatHelp": "Esempio: srt",
"ButtonLearnMore": "saperne di pi\u00f9",
+ "HeaderKodiMetadataHelp": "Emby include il supporto nativo per i file di metadati di tipo NFO. Per attivare o disattivare i metadati NFO, utilizza la scheda Avanzate per configurare le opzioni per i tuoi tipi di file multimediali.",
+ "LabelKodiMetadataUser": "Sincronizza i dati utente a nfo di per:",
+ "LabelKodiMetadataUserHelp": "Abilita questa opzione per mantenere i dati di orologio sincronizzati tra il Server Emby e i file NFO.",
+ "LabelKodiMetadataDateFormat": "Data di uscita Formato:",
+ "LabelKodiMetadataDateFormatHelp": "Tutte le date all'interno del nfo verranno letti e scritti utilizzando questo formato.",
+ "LabelKodiMetadataSaveImagePaths": "Salva percorsi delle immagini all'interno dei file NFO",
+ "LabelKodiMetadataSaveImagePathsHelp": "Questo \u00e8 consigliato se si dispone di nomi di file immagine che non sono conformi alle linee guida Kodi.",
+ "LabelKodiMetadataEnablePathSubstitution": "Abilita sostituzione di percorso",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Consente percorso sostituzione dei percorsi delle immagini utilizzando le impostazioni di sostituzione percorso del server.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Vedere la sostituzione percorso.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copia extrafanart in extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Copia extrafanart in extrathumbs",
"TabPlayback": "Riproduzione",
"HeaderLanguagePreferences": "Lingua preferita",
"TabCinemaMode": "Modalit\u00e0 Cinema",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Solo i trailer da contenuti non visti",
"LabelEnableIntroParentalControl": "Abilita controllo parentale intelligente",
"LabelEnableIntroParentalControlHelp": "Trailer: verr\u00e0 selezionata solo con un rating genitori uguale o inferiore al contenuto di essere osservato.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Queste caratteristiche richiedono un abbonamento attivo sostenitore e l'installazione del plugin canale Trailer.",
"OptionTrailersFromMyMoviesHelp": "Richiede l'installazione di trailer locali.",
"LabelCustomIntrosPath": "Intro personalizzate percorso:",
"LabelCustomIntrosPathHelp": "Una cartella contenente i file video. Un video sar\u00e0 scelto a caso e riprodotto dopo i traler.",
- "ValueSpecialEpisodeName": "Speciali - {0}",
+ "ButtonOptions": "Opzioni",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Queste caratteristiche richiedono un abbonamento attivo sostenitore e l'installazione del plugin canale Trailer.",
"LabelSelectInternetTrailersForCinemaMode": "Trailer Internet:",
"OptionUpcomingDvdMovies": "includi trailer nuovi e imminenti film su Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Includi trailer nuovi e imminenti film su Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "I singoli utenti avranno la possibilit\u00e0 di disabilitare la modalit\u00e0 cinema all'interno delle proprie preferenze.",
"LabelEnableCinemaMode": "Attiva modalit\u00e0 cinema",
"HeaderCinemaMode": "Modalit\u00e0 cinema",
+ "TabDevices": "Dispositivi",
+ "LabelLocalHttpServerPortNumber": "Porta HTTP locale",
+ "LabelLocalHttpServerPortNumberHelp": "Numero di porta TCP da associare al server http di Emby",
+ "LabelEnableAutomaticPortMap": "Abilita mappatura automatica delle porte",
+ "LabelEnableAutomaticPortMapHelp": "Tenta di mappare automaticamente la porta pubblica sulla porta locale tramite UPnP. Questo potrebbe non funzionare con alcuni modelli di router.",
"LabelDateAddedBehavior": "Data di comportamento per i nuovi contenuti:",
"OptionDateAddedImportTime": "Utilizza la data scansionato in biblioteca",
"OptionDateAddedFileTime": "Utilizzare file di data di creazione",
"LabelDateAddedBehaviorHelp": "Se un valore di metadati \u00e8 presente sar\u00e0 sempre utilizzato prima una di queste opzioni.",
"LabelNumberTrailerToPlay": "Numero di Trailer da riprodurre:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limitare la dimensione della cartella canale di download.",
"TitleDevices": "Dispositivi",
"TabCameraUpload": "Caricamenti Fotocamera",
- "TabDevices": "Dispositivi",
"HeaderCameraUploadHelp": "Fa automaticamente l'upload su Emby delle foto e dei video residenti sul tuo telefonino",
"MessageNoDevicesSupportCameraUpload": "Al momento non si dispone di dispositivi che supportano il caricamento della fotocamera.",
"LabelCameraUploadPath": "Fotocamera percorso di upload:",
"LabelCameraUploadPathHelp": "Selezionare un percorso di caricamento personalizzato, se lo si desidera. Se non specificato verr\u00e0 utilizzata una cartella predefinita. Se si utilizza un percorso personalizzato che dovr\u00e0 anche essere aggiunti nella zona di installazione della libreria.",
"LabelCreateCameraUploadSubfolder": "Creare una sottocartella per ogni dispositivo",
"LabelCreateCameraUploadSubfolderHelp": "Cartelle specifici possono essere assegnati a un dispositivo facendo clic su di esso dalla pagina Dispositivi.",
+ "ButtonInviteUser": "Invita un utente",
"LabelCustomDeviceDisplayName": "Nome da visualizzare:",
"LabelCustomDeviceDisplayNameHelp": "Fornire un nome di visualizzazione personalizzato o lasciare vuoto per utilizzare il nome riportato dal dispositivo.",
"HeaderInviteUser": "Invita utente",
- "LabelConnectGuestUserNameHelp": "Questo \u00e8 lo username che il tuo amico utilizza per accedere al sito web Emby, o il suo indirizzo email.",
"HeaderInviteUserHelp": "Condividere i tuo file multimediali con gli amici \u00e8 pi\u00f9 facile che mai con Emby Connect.",
"ButtonSendInvitation": "Invia Invito",
- "HeaderSignInWithConnect": "Accedi con Emby Connect",
"HeaderGuests": "ospiti",
"HeaderLocalUsers": "Utenti locale",
"HeaderPendingInvitations": "Inviti in sospeso",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Feriali",
"OptionWeekends": "Il Weekend",
"MessageProfileInfoSynced": "Informazioni sul profilo utente sincronizzate con Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Opzionale: collega il tuo account Emby",
"ButtonTrailerReel": "Trailer b.",
"HeaderTrailerReel": "Trailer b.",
"OptionPlayUnwatchedTrailersOnly": "Riproduci solo i trailer non visti",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "Nessun Trailer trovato.Installa Il plug in dei trailer per importare la libreria dei trailer da internet",
"HeaderNewUsers": "Nuovo Utente",
"ButtonSignUp": "Iscriviti",
+ "LabelConnectGuestUserName": "Username di Emby o indirizzo email:",
+ "LabelConnectGuestUserNameHelp": "Questo \u00e8 lo username che il tuo amico utilizza per accedere al sito web Emby, o il suo indirizzo email.",
"ButtonForgotPassword": "Password Dimenticata",
"OptionDisableUserPreferences": "Disabilitare l'accesso alle preferenze dell'utente",
"OptionDisableUserPreferencesHelp": "Se abilitato, solo gli amministratori saranno in grado di configurare le immagini del profilo utente, password e preferenze di lingua.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Condividi Cartelle dei media",
"MessageGuestSharingPermissionsHelp": "a maggior parte delle caratteristiche sono inizialmente disponibili per gli ospiti, ma possono essere attivate in base alle esigenze.",
"HeaderInvitations": "Inviti",
- "LabelForgotPasswordUsernameHelp": "Inserisci il tuo nome utente, se te lo ricordi.",
"HeaderForgotPassword": "Password dimenticata",
+ "LabelForgotPasswordUsernameHelp": "Inserisci il tuo nome utente, se te lo ricordi.",
"TitleForgotPassword": "Password Dimenticata",
"TitlePasswordReset": "Password dimenticata",
"LabelPasswordRecoveryPinCode": "Codice Pin:",
@@ -1374,63 +1231,195 @@
"HeaderParentalRatings": "Valutazioni genitori",
"HeaderVideoTypes": "Tipi Video",
"HeaderYears": "Anni",
+ "OptionPosterCard": "Scheda locandina",
+ "OptionThumbCard": "carta Thumb",
+ "OptionAllowRemoteSharedDevices": "Consenti controllo remoto di dispositivi condivisi",
+ "OptionAllowRemoteSharedDevicesHelp": "Dispositivi DLNA sono considerati condivisi fino a quando un utente non inizia a controllarli.",
+ "HeaderRemoteControl": "telecomando",
+ "ViewTypeMusicGenres": "Generi",
+ "ViewTypeMusicArtists": "Artisti",
+ "HeaderSignInWithConnect": "Accedi con Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Documentazione Api",
+ "LabelDeveloperResources": "Risorse programmatori",
"HeaderAddTag": "Aggiungi Tag",
- "HeaderBlockItemsWithNoRating": "Blocca contenuti sconosciuti o senza informazione",
- "LabelBlockContentWithTags": "Blocco dei contenuti con le etichette:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Informazioni Server",
"LabelEnableSingleImageInDidlLimit": "Limitato a singola immagine incorporata",
"LabelEnableSingleImageInDidlLimitHelp": "Alcuni dispositivi non renderanno correttamente se pi\u00f9 immagini sono incorporati all'interno didl.",
"TabActivity": "Attivit\u00e0",
"TitleSync": "Sincronizza",
+ "HeaderSettings": "Configurazione",
"OptionAllowSyncContent": "Consenti Sync",
- "OptionAllowContentDownloading": "Consenti media download",
+ "FolderTypeInherit": "ereditare",
+ "LabelContentType": "Tipo di contenuto:",
"NameSeasonUnknown": "Stagione sconosciuto",
"NameSeasonNumber": "Stagione {0}",
"LabelNewUserNameHelp": "I nomi utente possono contenere lettere (az), numeri (0-9), trattini (-), underscore (_), apostrofi ('), e periodi (.)",
+ "ButtonHelp": "Aiuto",
+ "TabAccess": "Accesso",
+ "HeaderDeviceAccess": "Accesso al dispositivo",
+ "OptionEnableAccessFromAllDevices": "Abilitare l'accesso da tutti i dispositivi",
+ "DeviceAccessHelp": "Questo vale solo per i dispositivi che possono essere identificati in modo univoco e non impedire l'accesso del browser. Filtraggio di accesso al dispositivo dell'utente impedir\u00e0 loro di usare nuovi dispositivi fino a quando non sono state approvate qui.",
+ "ButtonQuickStartGuide": "Guida rapida",
+ "HeaderSyncJobInfo": "Attiv. di Sinc.",
"TabJobs": "Attivit\u00e0",
"TabSyncJobs": "Attiv. di Sinc.",
+ "HeaderTermsOfService": "Termini di servizio di Emby",
+ "MessagePleaseAcceptTermsOfService": "Per favore accetta i termini di servizio e l'informativa sulla privacy prima di continuare.",
+ "OptionIAcceptTermsOfService": "Accetto i termini di servizio",
+ "ButtonPrivacyPolicy": "Informativa sulla privacy",
+ "ButtonTermsOfService": "Termini di Servizio",
+ "OptionHideUserFromLoginHelp": "Utile per account nascosti o amministratore. L'utente avr\u00e0 bisogno di accedere manualmente utilizzando la propria username e password",
+ "LabelEnterConnectUserName": "Username di Emby o indirizzo email:",
+ "LabelEnterConnectUserNameHelp": "Questo \u00e8 lo username o indirizzo email che il tuo amico utilizza per accedere a Emby.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Considera gli archivi come file multimediali",
+ "OptionDetectArchiveFilesAsMediaHelp": "se attivato, i file con estensione .rar e .zip saranno considerati come file multimediali.",
+ "ButtonDonate": "Donazione",
+ "HeaderOptions": "Opzioni",
+ "HeaderIdentificationResult": "Risultati Identificazione",
+ "OptionEnableAccessToAllChannels": "Abilita l'accesso a tutti i canali",
+ "LabelAutomaticUpdates": "Abilita gli aggiornamenti automatici",
+ "LabelFanartApiKey": "Chiavi API personali",
+ "LabelFanartApiKeyHelp": "Le richieste di fanart effettuate senza una chiave API personale restituiranno risultati approvati pi\u00f9 di 7 giorni fa. Con una chiave API personale questo tempo scende a 48 ore, e se sei un membro VIP questo tempo scender\u00e0 ulteriormente a circa 10 minuti.",
+ "HeaderDeveloperOptions": "Opzioni per il programmatore",
+ "OptionEnableWebClientResponseCache": "Abilita il caching delle risposte del client",
+ "OptionDisableForDevelopmentHelp": "Configura questi parametri per sviluppatori del client web",
+ "OptionEnableWebClientResourceMinification": "Abilita la minimizzazione delle risorse del client web",
+ "LabelDashboardSourcePath": "Percorso del codice sorgente del client web:",
+ "LabelDashboardSourcePathHelp": "se si sta eseguendo il server da una sorgente, specifica il percorso dell'interfaccia. Tutti i file per i client saranno presi da questo percorso",
+ "HeaderPaths": "Percorsi",
+ "TitleNotifications": "Notifiche",
+ "ButtonDonateWithPayPal": "Effettua una donazione con PayPal",
+ "TitleScheduledTasks": "Task pianificati",
+ "LinkApi": "API",
+ "LabelPublicHttpPort": "Porta HTTP pubblica",
+ "LabelPublicHttpPortHelp": "Numero di porta pubblica che dovrebbe essere mappato sulla porta HTTP locale.",
+ "LabelPublicHttpsPort": "Numero porta HTTP pubblica",
+ "LabelPublicHttpsPortHelp": "Numero della porta pubblica che dovrebbe essere mappato sulla porta HTTPS locale.",
+ "LabelEnableHttps": "Riporta HTTPS come indirizzo esterno",
+ "LabelEnableHttpsHelp": "se abilitato, il server riporter\u00e0 un url HTTPS ai client come il proprio indirizzo esterno.",
+ "LabelHttpsPort": "Porta HTTPS locale",
+ "LabelHttpsPortHelp": "Numero di porta TCP da associare al server https di Emby",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "CSS Personalizzato",
+ "LabelCustomCssHelp": "Applica il tuo CSS personale all'interfaccia web",
+ "ButtonConvertMedia": "Converti media",
+ "ButtonOrganize": "Organizza",
+ "ButtonJoinTheDevelopmentTeam": "Unisciti al Team di Sviluppo",
+ "OptionEnableAccessToAllLibraries": "Abilita l'accesso a tutte le librerie",
+ "LabelSyncTempPath": "Percorso file temporanei:",
+ "LabelSyncTempPathHelp": "Specifica una cartella per la sincronizzazione. I file multimediali convertiti durante la sincronizzazione verranno memorizzati qui.",
+ "LabelCustomCertificatePath": "Percorso certificati personalizzato:",
+ "LabelCustomCertificatePathHelp": "Fornisci il tuo file .pfx certificato SSL. Se omesso, il server creer\u00e0 un certificato auto-firmato.",
+ "LabelDisplayCollectionsViewHelp": "Questo creer\u00e0 una vista separata per le collezioni che si ha creato o alle quali si ha accesso. Per creare una collezione, cliccare con il tasto destro o effettuare un tocco prolungato su un film e selezionare \"Aggiungi alla collezione\" .",
+ "HeaderSyncRequiresSupporterMembership": "Sync richiede un abbonamento Supporter",
+ "HeaderEnjoyDayTrial": "Goditi una prova gratuita per 14 giorni",
+ "CategorySync": "Sincronizza",
+ "RegisterWithPayPal": "Registrati con PayPal",
+ "NotificationOptionCameraImageUploaded": "Immagine fotocamera caricata",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Codice pin semplificato",
+ "LabelEasyPinCode": "Codice Pin",
+ "EasyPasswordHelp": "Il codice pin facile viene utilizzato per l'accesso offline con le app Emby supportate, e pu\u00f2 essere utilizzato anche per una facile accesso in rete.",
+ "LabelInNetworkSignInWithEasyPassword": "Abilita l'accesso da rete locale tramite codice PIN.",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "Se attivata, sarai in grado di utilizzare il tuo codice pin facile per accedere alle app di Emby all'interno della tua rete domestica. La tua password usuale sar\u00e0 necessaria solo per accedere alle app quando sei fuori casa. Se il codice PIN viene lasciato vuoto, non avrai bisogno di una password quando sei all'interno della tua rete domestica.",
+ "ButtonResetEasyPassword": "Resetta codice PIN",
+ "OptionAllowContentDownloading": "Consenti media download",
+ "LabelBlockContentWithTags": "Blocco dei contenuti con le etichette:",
"LabelTagFilterMode": "Modalit\u00e0:",
"LabelTagFilterAllowModeHelp": "Se i tag permessi vengono utilizzati come parte di una struttura di cartelle profondamente nidificate, il contenuto che viene etichettato richieder\u00e0 cartelle principali di essere etichettato come bene.",
+ "UserDownloadingItemWithValues": "{0} sta scaricando {1}",
+ "LabelPinCode": "Codice Pin",
+ "ButtonExit": "Esci",
+ "HeaderGrownupsOnly": "Solo adulti",
+ "DividerOr": "-- o --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Per accedere per favore inserisci il tuo codice pin semplificato",
+ "KidsModeAdultInstruction": "Clicca sull'icona del lucchetto nell'angolo in basso a destra per configurare o abbandonare la modalit\u00e0 bambini. Verr\u00e0 richiesto il tuo codice pin",
+ "ButtonConfigurePinCode": "Configura codice pin",
+ "HeaderAdultsReadHere": "Adulti leggete qui!",
+ "LabelEnableEnhancedMovies": "Abilita le visuali film migliorate",
+ "LabelEnableEnhancedMoviesHelp": "Quando abilitato, i film verranno mostrati come cartelle che includono i trailer, gli extra, il cast & crew, e altri contenuti correlati.",
+ "NotificationOptionUserLockedOut": "Utente bloccato",
+ "OptionIcon": "Icona",
+ "UserLockedOutWithName": "L'utente {0} \u00e8 stato bloccato",
"HeaderThisUserIsCurrentlyDisabled": "Questo utente \u00e8 al momento disabilitato",
"MessageReenableUser": "Guarda in basso per ri-abilitare",
+ "LabelTimeLimitHours": "Tempo limite (ore):",
+ "HeaderSendNotificationHelp": "Le notifiche vengono consegnati alla tua casella di posta ricamato. Ulteriori opzioni possono essere installati dalla scheda Servizi.",
+ "HeaderInstalledServices": "Servizi installati",
+ "HeaderAvailableServices": "Servizi disponibili",
+ "MessageNoServicesInstalled": "Nessun servizio attualmente installato",
+ "TitlePlugins": "Plugin",
+ "HeaderServices": "Servizi",
+ "ViewTypePlaylists": "Playlist",
+ "LabelAlbumArtists": "Artisti:",
"LabelEnableInternetMetadataForTvPrograms": "Fa il download da Internet dei metadati per:",
"OptionTVMovies": "Film TV",
"HeaderUpcomingMovies": "Film in arrivo",
- "HeaderUpcomingSports": "Sport in arrivo",
"HeaderUpcomingPrograms": "Programmi in arrivo",
"LabelShowLibraryTileNames": "Mostra i nomi di file di libreria",
"LabelShowLibraryTileNamesHelp": "Determina se le etichette vengono visualizzate sotto le locandine della libreria sulla home page",
+ "HeaderSupporterBenefits": "Benefici per il Supporter",
+ "HeaderAddUser": "Aggiungi utente",
+ "LabelAddConnectSupporterHelp": "Per aggiungere un utente non in lista, dovrai prima collegare il suo account a Emby Connect dalla pagina del suo profilo",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configura Emby",
+ "WelcomeToProject": "Benvenuto in Emby!",
+ "LinkedToEmbyConnect": "Collegato a Emby Connect",
+ "ProjectHasCommunity": "Emby ha una ricca community di utilizzatori e collaboratori",
+ "VisitProjectWebsite": "Visita il sito di Emby",
+ "VisitProjectWebsiteLong": "Visita il sito web di Emby per tenerti aggiornato con le ultime novit\u00e0 e le notizie dal blog degli sviluppatori.",
+ "HeaderHelpImproveProject": "Aiuta a migliorare Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Diventa un Supporter di Emby",
+ "ButtonLearnMoreAboutEmbyConnect": "Scopri di pi\u00f9 su Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Opzionale: collega il tuo account Emby",
"OptionEnableTranscodingThrottle": "Abilita il throttling",
"OptionEnableTranscodingThrottleHelp": "Il Throttling regola automaticamente la velocit\u00e0 di transcodifica per ridurre al minimo l'utilizzo della CPU del server durante la riproduzione.",
+ "OptionHideWatchedContentFromLatestMedia": "Nasconde i contenuti visti dagli Ultimi Media",
+ "TabSuggestions": "Suggerimenti",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sincronizza",
+ "HeaderUpcomingSports": "Sport in arrivo",
"LabelUploadSpeedLimit": "Velocit\u00e0 limite di upload (Mbps)",
"OptionAllowSyncTranscoding": "Abilita la sincronizzazione che necessita di transcodifica",
"HeaderPlayback": "Riproduzione",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Gli utenti riceveranno messaggi esplicativi quando il contenuto non \u00e8 riproducibile a causa della policy.",
"OptionAllowAudioPlaybackTranscoding": "Abilita la riproduzione di audio che necessita di transcodifica",
"OptionAllowVideoPlaybackTranscoding": "Abilita la riproduzione di video che necessita di transcodifica",
- "OptionAllowMediaPlaybackTranscodingHelp": "Gli utenti riceveranno messaggi esplicativi quando il contenuto non \u00e8 riproducibile a causa della policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Bitrate limite per lo streaming via internet (Mbps):",
- "LabelRemoteClientBitrateLimitHelp": "Limite opzionale al bitrate dello streaming per tutti i client remoti. E' utile per evitare che i client richiedano un bitrate superiore a quello che la tua connessione \u00e8 in grado di gestire.",
+ "LabelRemoteClientBitrateLimitHelp": "Un limite di streaming bitrate opzionale per tutti fuori di client di rete. Ci\u00f2 \u00e8 utile per evitare che i clienti di richiedere un bitrate pi\u00f9 alto grado di gestire la connessione a Internet.",
"LabelConversionCpuCoreLimit": "Limite della CPU:",
"LabelConversionCpuCoreLimitHelp": "Limiita il numero di CPU da utilizzare durante l'operazione di sincronizzazione.",
"OptionEnableFullSpeedConversion": "Abilita conversione a velocit\u00e0 piena",
"OptionEnableFullSpeedConversionHelp": "Per default, la sincronizzazione viene eseguita a bassa velocit\u00e0 per minimizzare il consumo di risorse",
+ "HeaderRepeatingOptions": "Opzioni di ripetizione",
+ "OptionMyMediaButtons": "I miei media (pulsanti)",
+ "OptionMyMedia": "I miei media",
+ "OptionMyMediaSmall": "I miei media (piccolo)",
"HeaderPlaylists": "Playlist",
+ "ViewTypeMusicPlaylists": "Playlist",
"HeaderViewStyles": "Stili Viste",
"LabelSelectViewStyles": "Abilita presentazioni avanzate per:",
"LabelSelectViewStylesHelp": "Se abilitato, le viste verranno create con i metadati per offrire categorie come Suggeriti, Recenti, Generi e altro. Se disabilitato, verranno mostrate come semplici cartelle.",
+ "ButtonSignInWithConnect": "Accedi con Emby Connect",
+ "HeaderNewServer": "Nuovo Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "Impostazioni app",
"TabPhotos": "Foto",
"TabVideos": "Video",
"HeaderWelcomeToEmby": "Benvenuto in Emby",
"EmbyIntroMessage": "Con Emby si pu\u00f2 facilmente lo streaming di video, musica e foto da smartphone, tablet e altri dispositivi dal vostro ricamato Server.",
"ButtonSkip": "Salta",
"TextConnectToServerManually": "Connetti al mio server manualmente",
- "ButtonSignInWithConnect": "Accedi con Emby Connect",
"ButtonConnect": "Connetti",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Porta:",
- "HeaderNewServer": "Nuovo Server",
"ButtonChangeServer": "Cambia Server",
"HeaderConnectToServer": "Connettersi al Server",
"OptionReportList": "Lista",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Esporta",
"HeaderColumns": "Colonne",
"ButtonReset": "Ripristina",
+ "ButtonPurchase": "Acquista",
"OptionEnableExternalVideoPlayers": "Abilita lettori video esterne",
+ "LabelNativeExternalPlayersHelp": "Mostra il bottone Riproduci su ",
+ "LabelEnableItemPreviews": "Abilita anteprime voce",
+ "LabelEnableItemPreviewsHelp": "se abilitato, anteprime scorrevoli appariranno quando si fa clic voci alcune schermate.",
"ButtonUnlockGuide": "Sblocca Guida",
+ "ButtonManageServer": "Gestisci Server",
"LabelEnableFullScreen": "Abilita modalit\u00e0 a schermo intero",
"LabelEnableChromecastAc3Passthrough": "Abilita Chromecast AC3 passthrough",
- "OptionSyncToSDCard": "Sincronizzato su scheda SD esterna",
+ "LabelSyncPath": "Sincronizzato percorso del contenuto:",
"LabelEmail": "Email:",
"LabelUsername": "Nome utente",
"HeaderSignUp": "Iscriviti",
"LabelPasswordConfirm": "Conferma la password:",
"ButtonAddServer": "Aggiungi server",
+ "ButtonShare": "Condividi",
+ "OptionAllowLinkSharing": "Consentire la riproduzione multimediale",
+ "OptionAllowLinkSharingHelp": "Solo le pagine web contenenti informazioni multimediali sono condivise. I file multimediali vengono mai condivisi pubblicamente. Le azioni sono limitate nel tempo e scadr\u00e0 in base alle vostre impostazioni di condivisione del server.",
+ "HeaderSharing": "Condividendo",
"TabHomeScreen": "Schermata iniziale",
"HeaderDisplay": "Schermo",
"HeaderNavigation": "Navigazione",
"LegendTheseSettingsShared": "Queste impostazioni sono condivise su tutti i dispositivi",
+ "LabelRecordingPath": "Percorso di registrazione:",
+ "LabelRecordingPathHelp": "Specificare un percorso personalizzato per salvare le registrazioni. Lasciare vuoto per usare il server predefinito.",
"OptionEnableAutomaticServerUpdates": "Attiva aggiornamenti automatici del server",
"OptionOtherTrailers": "Includi trailer dei film pi\u00f9 vecchi",
"HeaderOverview": "Panoramica",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Agg. dispositivo",
"HeaderAddDevice": "Agg. dispositivo",
"HeaderExternalServices": "Servizi Esterni",
- "LabelTunerIpAddress": "Tuner Indirizzo IP:",
"TabExternalServices": "Servizi Esterni",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Provider Guida",
"AddGuideProviderHelp": "Aggiungere una fonte di informazioni Guida TV",
"LabelZipCode": "Cap:",
- "GuideProviderSelectListings": "selezionare Annunci",
- "GuideProviderLogin": "Accedi",
"LabelLineup": "Allineare:",
"MessageTunerDeviceNotListed": "\u00c8 il vostro dispositivo di sintonizzazione non quotate? Provare a installare un fornitore esterno di servizi per ulteriori opzioni TV in diretta.",
+ "OptionSyncToSDCard": "Sincronizzato su scheda SD esterna",
+ "LabelTunerIpAddress": "Tuner Indirizzo IP:",
+ "GuideProviderSelectListings": "selezionare Annunci",
+ "GuideProviderLogin": "Accedi",
"LabelImportOnlyFavoriteChannels": "Limitare ai canali segnato come",
"ImportFavoriteChannelsHelp": "Se abilitata, solo i canali che sono contrassegnati come preferiti sul dispositivo di sintonizzazione verranno importati.",
"ButtonRepeat": "Ripeti",
- "LabelEnableThisTuner": "Abilita questo sintonizzatore",
- "LabelEnableThisTunerHelp": "Deselezionare per impedire l'importazione di canali da questo sintonizzatore.",
- "HeaderLocked": "Bloccato",
"HeaderUnidentified": "Non identificata",
"HeaderImagePrimary": "Primaria",
"HeaderImageBackdrop": "Sfondo",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "Immagine utente",
+ "LabelEnableThisTuner": "Abilita questo sintonizzatore",
+ "LabelEnableThisTunerHelp": "Deselezionare per impedire l'importazione di canali da questo sintonizzatore.",
+ "HeaderLocked": "Bloccato",
"ButtonDisplaySettings": "Configurazione Monitor",
"ButtonHomeScreenSettings": "Schermata iniziale",
"ButtonPlaybackSettings": "Impostazioni per la riproduzione",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Selezionare il numero massimo di thread da utilizzare durante la transcodifica. Ridurre il numero di thread si abbasser\u00e0 l'utilizzo della CPU, ma non pu\u00f2 convertire abbastanza veloce per un'esperienza di riproduzione fluida.",
"OptionMax": "Max",
"HeaderEmbyGuide": "guida Emby",
- "LabelSyncPath": "Sincronizzato percorso del contenuto:",
"OptionSyncOnlyOnWifi": "Sincronizza solo su Wifi",
+ "OptionDisplayChannelsInline": "Canali di visualizzazione in linea all'interno le mie opinioni",
+ "OptionDisplayChannelsInlineHelp": "Se abilitata, i canali verranno visualizzati direttamente accanto ad altri punti di vista. Se disattivato, saranno esposti all'interno di una vista canali separati.",
"OptionSyncLosslessAudioOriginal": "Sincronizzazione audio lossless in qualit\u00e0 originale",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Opzioni di registrazione",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Prossime per i bambini",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tipo sintonizzatore:",
"HelpMoreTunersCanBeAdded": "Sintonizzatori supplementari possono essere aggiunti in seguito nella sezione Live TV.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Ulteriori fornitori di TV Live possono essere aggiunti successivamente all'interno della sezione Live TV.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Un attivo sostenitore di Emby \u00e8 necessario al fine di creare registrazioni di serie automatizzate.",
"HeaderSetupTVGuide": "Guida all'installazione TV",
"LabelDataProvider": "Fornitore di dati:",
"OptionSendRecordingsToAutoOrganize": "Attiva Auto-Organizza per nuove registrazioni",
"OptionSendRecordingsToAutoOrganizeHelp": "Le nuove registrazioni saranno inviati alla Auto-Organizzare caratteristica ed importato nella libreria multimediale.",
- "HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Sottotitoli",
+ "HeaderDefaultPadding": "Imbottitura predefinito",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Ulteriori fornitori di TV Live possono essere aggiunti successivamente all'interno della sezione Live TV.",
"HeaderVideos": "Video",
"OptionEnableVideoFrameAnalysis": "Abilita fotogramma per fotogramma analisi video",
"OptionEnableVideoFrameAnalysisHelp": "Estrarre informazioni dettagliate sui video che possono essere usati per fare la transcodifica il pi\u00f9 efficiente possibile. Questo far\u00e0 s\u00ec che le scansioni di libreria a richiedere pi\u00f9 tempo.",
"LabelVideoFrameAnalysisLimit": "Limitare fotogramma per fotogramma analisi a video inferiore a:",
- "LabelHardwareVideoDecoder": "Hardware video decoder:",
- "LabelHardwareVideoDecoderHelp": "Available on supported systems only."
+ "HeaderBlockItemsWithNoRating": "Blocca contenuti sconosciuti o senza informazione",
+ "LabelHardwareVideoDecoder": "Decoder video Hardware:",
+ "LabelHardwareVideoDecoderHelp": "Disponibile solo su sistemi supportati."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/kk.json b/dashboard-ui/strings/html/kk.json
index 85cea9136a..c16be6e8e7 100644
--- a/dashboard-ui/strings/html/kk.json
+++ b/dashboard-ui/strings/html/kk.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u0428\u044b\u0493\u0443",
"LabelVisitCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\u0443",
- "LabelGithub": "GitHub \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439\u0456",
"LabelSwagger": "Swagger \u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0456",
"LabelStandard": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u0442\u044b",
- "LabelApiDocumentation": "API \u049b\u04b1\u0436\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b",
- "LabelDeveloperResources": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u04e9\u0437\u0434\u0435\u0440\u0456",
"LabelBrowseLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0448\u043e\u043b\u0443",
- "LabelConfigureServer": "Emby \u0442\u0435\u04a3\u0448\u0435\u0443",
"LabelOpenLibraryViewer": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u049b\u0430\u0440\u0430\u0443 \u049b\u04b1\u0440\u0430\u043b\u044b",
"LabelRestartServer": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443",
"LabelShowLogWindow": "\u0416\u04b1\u0440\u043d\u0430\u043b \u0442\u0435\u0440\u0435\u0437\u0435\u0441\u0456\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443",
"LabelPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b",
"LabelFinish": "\u0410\u044f\u049b\u0442\u0430\u0443",
- "FolderTypeMixed": "\u0410\u0440\u0430\u043b\u0430\u0441 \u043c\u0430\u0437\u043c\u04b1\u043d",
"LabelNext": "\u041a\u0435\u043b\u0435\u0441\u0456",
"LabelYoureDone": "\u0411\u04d9\u0440\u0456 \u0434\u0430\u0439\u044b\u043d!",
- "ButtonAddToCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443",
- "ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
- "WelcomeToProject": "Emby \u04af\u0448\u0456\u043d \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!",
+ "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)",
"ThisWizardWillGuideYou": "\u0411\u04b1\u043b \u043a\u043e\u043c\u0435\u043a\u0448\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u0441\u0430\u0442\u044b\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u04e9\u0442\u043a\u0456\u0437\u0435\u0434\u0456. \u0411\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u04e9\u0437\u0456\u04a3\u0456\u0437\u0433\u0435 \u0442\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
"TellUsAboutYourself": "\u04e8\u0437\u0456\u04a3\u0456\u0437 \u0442\u0443\u0440\u0430\u043b\u044b \u0430\u0439\u0442\u044b\u04a3\u044b\u0437",
- "ButtonQuickStartGuide": "\u0422\u0435\u0437 \u0431\u0430\u0441\u0442\u0430\u0443 \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u0493\u044b\u043d\u0430",
"LabelYourFirstName": "\u0410\u0442\u044b\u04a3\u044b\u0437:",
"MoreUsersCanBeAddedLater": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u043a\u0435\u0439\u0456\u043d \u0411\u0430\u049b\u044b\u043b\u0430\u0443 \u0442\u0430\u049b\u0442\u0430\u0441\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
"UserProfilesIntro": "Emby \u0456\u0448\u0456\u043d\u0434\u0435 \u04d9\u0440\u049b\u0430\u0439\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u04e9\u0437\u0456\u043d\u0456\u04a3 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456 \u043e\u0439\u043d\u0430\u0442\u0443 \u043a\u04af\u0439\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u044b \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d\u044b\u04a3 \u043a\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u044b \u0431\u0430\u0440.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "\u0421\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0441\u0430\u0445\u043d\u0430 \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u0443\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u044b\u0437\u0431\u0430\u043b\u044b\u049b \u043c\u04d9\u0437\u0456\u0440\u043b\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0411\u04b1\u043b \u043f\u0440\u043e\u0446\u0435\u0441 \u0431\u0430\u044f\u0443, \u041e\u041f \u043a\u0435\u0440\u0435\u043a \u049b\u044b\u043b\u0430\u0442\u044b\u043d \u0436\u04d9\u043d\u0435 \u0431\u0456\u0440\u0430\u0437 \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d. \u0411\u04b1\u043b \u0442\u04af\u043d\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u044b\u043d\u0430 \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 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456, \u0434\u0435\u0433\u0435\u043d\u043c\u0435\u043d \u0431\u04b1\u043b \u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b \u0430\u0439\u043c\u0430\u0493\u044b\u043d\u0434\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0435\u0434\u0456. \u0411\u04b1\u043b \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043d\u044b \u049b\u0430\u0440\u0431\u0430\u043b\u0430\u0441 \u0441\u0430\u0493\u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0434\u0430 \u043e\u0440\u044b\u043d\u0434\u0430\u0443 \u04b1\u0441\u044b\u043d\u044b\u043b\u043c\u0430\u0439\u0434\u044b.",
"LabelEnableAutomaticPortMapping": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u043f\u043e\u0440\u0442 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443",
"LabelEnableAutomaticPortMappingHelp": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u044b\u043f \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d UPnP \u0436\u043e\u043b \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u044b\u0448\u0442\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u0442\u0435\u04a3\u0448\u0435\u0443\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0411\u04b1\u043b \u043a\u0435\u0439\u0431\u0456\u0440 \u0436\u043e\u043b \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u044b\u0448 \u04af\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u043c\u0435\u0439\u0442\u0456\u043d\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
- "HeaderTermsOfService": "Emby \u049b\u044b\u0437\u043c\u0435\u0442 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b",
- "MessagePleaseAcceptTermsOfService": "\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 \u0436\u04d9\u043d\u0435 \u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u04a3\u044b\u0437.",
- "OptionIAcceptTermsOfService": "\u049a\u044b\u0437\u043c\u0435\u0442 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0439\u043c\u044b\u043d",
- "ButtonPrivacyPolicy": "\u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b\u043d\u0430",
- "ButtonTermsOfService": "\u049a\u044b\u0437\u043c\u0435\u0442 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d\u0430",
- "HeaderDeveloperOptions": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
- "OptionEnableWebClientResponseCache": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u04af\u043d \u049b\u0430\u0442\u0443 \u043a\u044d\u0448\u0442\u0435\u0443\u0456\u043d \u049b\u043e\u0441\u0443",
- "OptionDisableForDevelopmentHelp": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u043c\u044b\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437.",
- "OptionEnableWebClientResourceMinification": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u049b\u043e\u0440\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
- "LabelDashboardSourcePath": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u043a\u04e9\u0437\u0456\u043d\u0456\u04a3 \u0436\u043e\u043b\u044b:",
- "LabelDashboardSourcePathHelp": "\u0415\u0433\u0435\u0440 \u0441\u0435\u0440\u0432\u0435\u0440 \u049b\u0430\u0439\u043d\u0430\u0440 \u043a\u043e\u0434\u044b\u043d\u0430\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0441\u0435, dashboard-ui \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d\u0430 \u0436\u043e\u043b\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0456\u04a3 \u0431\u0430\u0440\u043b\u044b\u049b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u043e\u0441\u044b \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u0430\u043d \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u0430\u0434\u044b.",
- "ButtonConvertMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443",
- "ButtonOrganize": "\u04b0\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443",
- "LinkedToEmbyConnect": "Emby Connect \u04af\u0448\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d",
- "HeaderSupporterBenefits": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b",
- "HeaderAddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
- "LabelAddConnectSupporterHelp": "\u0422\u0456\u0437\u0456\u043c\u0434\u0435 \u0436\u043e\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0430\u043b\u0434\u044b\u043c\u0435\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b \u0431\u0435\u0442\u0456\u043d\u0435\u043d Emby Connect \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u043e\u043d\u044b\u04a3 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u0440\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442.",
- "LabelPinCode": "PIN-\u043a\u043e\u0434:",
- "OptionHideWatchedContentFromLatestMedia": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0435\u043d \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0436\u0430\u0441\u044b\u0440\u0443",
- "HeaderSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"ButtonOk": "\u0416\u0430\u0440\u0430\u0439\u0434\u044b",
"ButtonCancel": "\u0411\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
- "ButtonExit": "\u0428\u044b\u0493\u0443",
- "ButtonNew": "\u0416\u0430\u0441\u0430\u0443",
- "HeaderTV": "\u0422\u0414",
- "HeaderAudio": "\u0414\u044b\u0431\u044b\u0441",
- "HeaderVideo": "\u0411\u0435\u0439\u043d\u0435",
- "HeaderPaths": "\u0416\u043e\u043b\u0434\u0430\u0440",
- "CategorySync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
- "TabPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456",
- "HeaderEasyPinCode": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434",
- "HeaderGrownupsOnly": "\u0422\u0435\u043a \u0435\u0440\u0435\u0441\u0435\u043a\u0442\u0435\u0440!",
- "DividerOr": "-- \u043d\u0435\u043c\u0435\u0441\u0435 --",
- "HeaderInstalledServices": "\u041e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
- "HeaderAvailableServices": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
- "MessageNoServicesInstalled": "\u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d",
- "HeaderToAccessPleaseEnterEasyPinCode": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u0442\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437",
- "KidsModeAdultInstruction": "\u0422\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043c\u0435\u0434\u0435\u0433\u0456 \u043e\u04a3 \u0436\u0430\u049b\u0442\u0430\u0493\u044b \u049b\u04b1\u043b\u044b\u043f \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0441\u0456\u043d \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0430\u043b\u0430\u043b\u044b\u049b \u0440\u0435\u0436\u0456\u043c\u0456\u043d \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437. PIN-\u043a\u043e\u0434\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
- "ButtonConfigurePinCode": "PIN-\u043a\u043e\u0434\u0442\u044b \u0442\u0435\u04a3\u0448\u0435\u0443",
- "HeaderAdultsReadHere": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0435\u0440, \u043c\u044b\u043d\u0430\u043d\u044b \u043e\u049b\u044b\u04a3\u044b\u0437!",
- "RegisterWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u0440\u043a\u0435\u043b\u0443",
- "HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u049b\u0430\u0436\u0435\u0442.",
- "HeaderEnjoyDayTrial": "\u0422\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u0443\u0434\u044b 14 \u043a\u04af\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0456\u0437",
- "LabelSyncTempPath": "\u0423\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b \u0436\u043e\u043b\u044b:",
- "LabelSyncTempPathHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u049b\u0430\u043b\u0442\u0430\u043d\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0441\u044b \u043e\u0440\u044b\u043d\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
- "LabelCustomCertificatePath": "\u041a\u0443\u04d9\u043b\u0456\u043a \u0436\u043e\u043b\u044b:",
- "LabelCustomCertificatePathHelp": "\u04e8\u0437 SSL-\u043a\u0443\u04d9\u043b\u0456\u0433\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 .pfx \u0444\u0430\u0439\u043b\u044b\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0441\u0435, \u0441\u0435\u0440\u0432\u0435\u0440 \u043c\u0435\u043d\u0448\u0456\u043a \u049b\u043e\u043b\u0442\u0430\u04a3\u0431\u0430\u0441\u044b \u0431\u0430\u0440 \u043a\u0443\u04d9\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u0441\u0430\u0439\u0434\u044b.",
- "TitleNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440",
- "ButtonDonateWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0430\u0443",
- "OptionDetectArchiveFilesAsMedia": "\u041c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u0443",
- "OptionDetectArchiveFilesAsMediaHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, .rar \u0436\u04d9\u043d\u0435 .zip \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
- "LabelEnterConnectUserName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430:",
- "LabelEnterConnectUserNameHelp": "\u0411\u04b1\u043b \u0441\u0456\u0437\u0434\u0456\u04a3 Emby \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
- "LabelEnableEnhancedMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443",
- "LabelEnableEnhancedMoviesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456, \u049b\u043e\u0441\u044b\u043c\u0448\u0430\u043b\u0430\u0440\u0434\u044b, \u0442\u04af\u0441\u0456\u0440\u0443\u0433\u0435 \u049b\u0430\u0442\u044b\u0441\u049b\u0430\u043d\u0434\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u049b\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u0430\u043c\u0442\u0443 \u04af\u0448\u0456\u043d, \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440 \u049b\u0430\u043b\u0442\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456",
- "HeaderSyncJobInfo": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b",
- "OptionReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456",
- "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0433\u0435",
- "LabelFailed": "\u0421\u04d9\u0442\u0441\u0456\u0437",
- "LabelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f:",
- "ButtonFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d\u0493\u0430",
- "ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430",
- "ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
- "ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
- "HeaderEpisodes": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0435\u0440:",
- "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",
- "FolderTypeInherit": "\u041c\u04b1\u0440\u0430\u0493\u0430 \u0438\u0435\u043b\u0435\u043d\u0443",
- "LabelContentType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456:",
- "TitleScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440",
"HeaderSetupLibrary": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443",
"ButtonAddMediaFolder": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d \u04af\u0441\u0442\u0435\u0443",
"LabelFolderType": "\u049a\u0430\u043b\u0442\u0430 \u0442\u04af\u0440\u0456:",
"ReferToMediaLibraryWiki": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0443\u0440\u0430\u043b\u044b \u0443\u0438\u043a\u0438 \u0456\u0448\u0456\u043d\u0435\u043d \u049b\u0430\u0440\u0430\u04a3\u044b\u0437.",
"LabelCountry": "\u0415\u043b:",
"LabelLanguage": "\u0422\u0456\u043b:",
- "LabelTimeLimitHours": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456 (\u0441\u0430\u0493\u0430\u0442):",
- "ButtonJoinTheDevelopmentTeam": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u0442\u043e\u0431\u044b\u043d\u0430 \u043a\u0456\u0440\u0443",
"HeaderPreferredMetadataLanguage": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:",
"LabelSaveLocalMetadata": "\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 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b \u0456\u0448\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u0443",
"LabelSaveLocalMetadataHelp": "\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 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b \u0456\u0448\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u043b\u0443\u044b \u043e\u043b\u0430\u0440\u0434\u044b \u0436\u0435\u04a3\u0456\u043b \u04e9\u04a3\u0434\u0435\u0439 \u0430\u043b\u0430\u0442\u044b\u043d \u043e\u0440\u044b\u043d\u0493\u0430 \u049b\u043e\u044f\u0434\u044b.",
@@ -130,37 +47,16 @@
"TabPreferences": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440",
"TabPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437",
"TabLibraryAccess": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443",
- "TabAccess": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443",
"TabImage": "\u0421\u0443\u0440\u0435\u0442",
"TabProfile": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b",
- "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
- "TabImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440",
- "TabNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440",
- "TabCollectionTitles": "\u0422\u0443\u044b\u043d\u0434\u044b\u043b\u0430\u0440",
- "HeaderDeviceAccess": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443",
- "OptionEnableAccessFromAllDevices": "\u0411\u0430\u0440\u043b\u044b\u049b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
- "OptionEnableAccessToAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
- "OptionEnableAccessToAllLibraries": "\u0411\u0430\u0440\u043b\u044b\u049b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043b\u0430\u0440\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
- "DeviceAccessHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u0435\u0433\u0435\u0439 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d \u049b\u0430\u043d\u0442\u044b\u043d\u0430\u0443\u0493\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u043c\u0430\u0439\u0434\u044b. \u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d\u0430\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u0441\u04af\u0437\u0433\u0456\u043b\u0435\u0443\u0456 \u0436\u0430\u04a3\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u043c\u04b1\u043d\u0434\u0430 \u0431\u0435\u043a\u0456\u0442\u0456\u043b\u0433\u0435\u043d\u0448\u0435 \u0434\u0435\u0439\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0493\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u0430\u0434\u044b.",
"LabelDisplayMissingEpisodesWithinSeasons": "\u0416\u043e\u049b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u043c\u0430\u0443\u0441\u044b\u043c \u0456\u0448\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
"LabelUnairedMissingEpisodesWithinSeasons": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u043c\u0435\u0433\u0435\u043d \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u043c\u0430\u0443\u0441\u044b\u043c \u0456\u0448\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
"HeaderVideoPlaybackSettings": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
- "HeaderPlaybackSettings": "\u041e\u0439\u043d\u0430\u0442\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"LabelAudioLanguagePreference": "\u0414\u044b\u0431\u044b\u0441 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:",
"LabelSubtitleLanguagePreference": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:",
- "OptionDefaultSubtitles": "\u04d8\u0434\u0435\u043f\u043a\u0456",
- "OptionOnlyForcedSubtitles": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u043c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
- "OptionAlwaysPlaySubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u04d9\u0440\u049b\u0430\u0448\u0430\u043d \u043e\u0439\u043d\u0430\u0442\u0443",
- "OptionNoSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u043e\u049b",
- "OptionDefaultSubtitlesHelp": "\u0422\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0434\u044b\u0431\u044b\u0441 \u0448\u0435\u0442\u0435\u043b \u0442\u0456\u043b\u0456\u043d\u0434\u0435 \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
- "OptionOnlyForcedSubtitlesHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u043c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456 \u0434\u0435\u043f \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
- "OptionAlwaysPlaySubtitlesHelp": "\u0422\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0434\u044b\u0431\u044b\u0441 \u0442\u0456\u043b\u0456\u043d\u0435 \u049b\u0430\u0442\u044b\u0441\u0441\u044b\u0437 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
- "OptionNoSubtitlesHelp": "\u04d8\u0434\u0435\u043f\u043a\u0456\u0434\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u04af\u043a\u0442\u0435\u043b\u043c\u0435\u0439\u0434\u0456.",
"TabProfiles": "\u041f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440",
"TabSecurity": "\u049a\u0430\u0443\u0456\u043f\u0441\u0456\u0437\u0434\u0456\u043a",
"ButtonAddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
- "ButtonAddLocalUser": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
- "ButtonInviteUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0448\u0430\u049b\u044b\u0440\u0443",
"ButtonSave": "\u0421\u0430\u049b\u0442\u0430\u0443",
"ButtonResetPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443",
"LabelNewPassword": "\u0416\u0430\u04a3\u0430 \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u0415\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u04b1\u0439\u0493\u0430\u0440\u044b\u043d\u0434\u044b \u0436\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b:",
"MaxParentalRatingHelp": "\u0411\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0434\u0430\u043d \u0436\u043e\u0493\u0430\u0440\u044b\u043b\u0430\u0443 \u0436\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b \u0431\u0430\u0440 \u043c\u0430\u0437\u043c\u04b1\u043d \u0436\u0430\u0441\u044b\u0440\u044b\u043b\u0430\u0434\u044b",
"LibraryAccessHelp": "\u0411\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u04af\u0448\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u044b \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u04a3\u0456\u0437. \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\u043f \u04d9\u043a\u0456\u043c\u0448\u0456\u043b\u0435\u0440 \u0431\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u044b \u04e9\u04a3\u0434\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
- "ChannelAccessHelp": "\u0411\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u04af\u0448\u0456\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u04a3\u0456\u0437. \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\u043f \u04d9\u043a\u0456\u043c\u0448\u0456\u043b\u0435\u0440 \u0431\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u04e9\u04a3\u0434\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
"ButtonDeleteImage": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u0436\u043e\u044e",
- "LabelSelectUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u0443:",
"ButtonUpload": "\u041a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443",
"HeaderUploadNewImage": "\u0416\u0430\u04a3\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0456 \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443",
"LabelDropImageHere": "\u0421\u0443\u0440\u0435\u0442\u0442\u0456 \u043c\u04b1\u043d\u0434\u0430 \u0441\u04af\u0439\u0440\u0435\u0442\u0456\u04a3\u0456\u0437",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u041e\u0441\u044b\u043d\u0434\u0430 \u0435\u0448\u0442\u0435\u043c\u0435 \u0436\u043e\u049b.",
"MessagePleaseEnsureInternetMetadata": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u044b \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u043a\u04e9\u0437 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437.",
"TabSuggested": "\u04b0\u0441\u044b\u043d\u044b\u043b\u0493\u0430\u043d",
- "TabSuggestions": "\u04b0\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440",
"TabLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456",
"TabUpcoming": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d",
"TabShows": "\u041a\u04e9\u0440\u0441\u0435\u0442\u0456\u043c\u0434\u0435\u0440",
@@ -217,6 +110,7 @@
"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",
"OptionRuntime": "\u04b0\u0437\u0430\u049b\u0442\u044b\u0493\u044b",
+ "OptionReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456",
"OptionPlayCount": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0435\u0441\u0435\u0431\u0456",
"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",
@@ -226,16 +120,10 @@
"OptionTrackName": "\u0416\u043e\u043b\u0448\u044b\u049b \u0430\u0442\u044b",
"OptionCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b",
"OptionNameSort": "\u0410\u0442\u044b",
- "OptionFolderSort": "\u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440",
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"OptionRevenue": "\u0422\u0430\u0431\u044b\u0441",
"OptionPoster": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437",
- "OptionPosterCard": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437-\u043a\u0430\u0440\u0442\u0430",
- "OptionBackdrop": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442",
"OptionTimeline": "\u0423\u0430\u049b\u044b\u0442 \u0448\u043a\u0430\u043b\u0430\u0441\u044b",
- "OptionThumb": "\u041d\u043e\u0431\u0430\u0439",
- "OptionThumbCard": "\u041d\u043e\u0431\u0430\u0439-\u043a\u0430\u0440\u0442\u0430",
- "OptionBanner": "\u0411\u0430\u043d\u043d\u0435\u0440",
"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",
"OptionResumable": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0430\u043b\u0430\u0442\u044b\u043d",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b",
"TabMyPlugins": "\u041c\u0435\u043d\u0456\u04a3 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0456\u043c",
"TabCatalog": "\u0422\u0456\u0437\u0456\u043c\u0434\u0435\u043c\u0435",
- "TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440",
"HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440",
"HeaderNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
"HeaderLatestAlbums": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u0430\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430\u0440",
"HeaderFrequentlyPlayed": "\u0416\u0438\u0456 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430\u0440",
"DevBuildWarning": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443 \u049b\u04b1\u0440\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u0430\u0440 \u0435\u04a3 \u0430\u043b\u0434\u044b\u04a3\u0493\u044b \u049b\u0430\u0442\u0430\u0440\u043b\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b. \u0416\u0438\u0456 \u0448\u044b\u0493\u0430\u0440\u043b\u044b\u043f \u043c\u044b\u043d\u0430 \u049b\u04b1\u0440\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u0430\u0440 \u0442\u043e\u043b\u044b\u049b \u0441\u044b\u043d\u0430\u049b\u0442\u0430\u043c\u0430\u043b\u0430\u0443\u0434\u0430\u043d \u04e9\u0442\u043f\u0435\u0433\u0435\u043d. \u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0431\u04b1\u0437\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0442\u04af\u0433\u0435\u043b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440 \u043c\u04af\u043b\u0434\u0435 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u043c\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
+ "OptionThumb": "\u041d\u043e\u0431\u0430\u0439",
+ "OptionBanner": "\u0411\u0430\u043d\u043d\u0435\u0440",
"LabelVideoType": "\u0411\u0435\u0439\u043d\u0435 \u0442\u04af\u0440\u0456:",
"OptionBluray": "BluRay",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "\u0415\u0440\u0435\u043a\u0448\u0435\u043b\u0456\u043a\u0442\u0435\u0440:",
- "LabelService": "\u049a\u044b\u0437\u043c\u0435\u0442:",
- "LabelStatus": "\u041a\u04af\u0439:",
- "LabelVersion": "\u041d\u04b1\u0441\u049b\u0430:",
- "LabelLastResult": "\u0421\u043e\u04a3\u0493\u044b \u043d\u04d9\u0442\u0438\u0436\u0435:",
"OptionHasSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
"OptionHasTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440",
"OptionHasThemeSong": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d",
@@ -268,8 +153,6 @@
"TabMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
"TabStudios": "\u0421\u0442\u0443\u0434\u0438\u044f\u043b\u0430\u0440",
"TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440",
- "LabelArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440:",
- "LabelArtistsHelp": "\u0411\u0456\u0440\u043d\u0435\u0448\u0443\u0456\u043d (;) \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04e9\u043b\u0456\u04a3\u0456\u0437",
"HeaderLatestMovies": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
"HeaderLatestTrailers": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440",
"OptionHasSpecialFeatures": "\u0410\u0440\u043d\u0430\u0439\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440",
@@ -290,32 +173,24 @@
"OptionFriday": "\u0436\u04b1\u043c\u0430",
"OptionSaturday": "\u0441\u0435\u043d\u0431\u0456",
"HeaderManagement": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
- "LabelManagement": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
"OptionMissingImdbId": "IMDb Id \u0436\u043e\u049b",
"OptionMissingTvdbId": "TheTVDB Id \u0436\u043e\u049b",
"OptionMissingOverview": "\u0416\u0430\u043b\u043f\u044b \u0448\u043e\u043b\u0443 \u0436\u043e\u049b",
"OptionFileMetadataYearMismatch": "\u0424\u0430\u0439\u043b\/\u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0436\u044b\u043b\u044b \u0441\u04d9\u0439\u043a\u0435\u0441 \u0435\u043c\u0435\u0441",
"TabGeneral": "\u0416\u0430\u043b\u043f\u044b",
"TitleSupport": "\u0416\u0430\u049b\u0442\u0430\u0443",
- "LabelSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
"TabLog": "\u0416\u04b1\u0440\u043d\u0430\u043b",
- "LabelEpisodeNumber": "\u042d\u043f\u0438\u0437\u043e\u0434 \u043d\u04e9\u043c\u0456\u0440\u0456",
"TabAbout": "\u0422\u0443\u0440\u0430\u043b\u044b",
"TabSupporterKey": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456",
"TabBecomeSupporter": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u043e\u043b\u0443",
- "ProjectHasCommunity": "Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u044b \u043c\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b\u04a3 \u0434\u0430\u043c\u0443\u0434\u0430\u0493\u044b \u049b\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0493\u044b \u0431\u0430\u0440.",
"CheckoutKnowledgeBase": "Emby \u0435\u04a3 \u04af\u043b\u043a\u0435\u043d \u049b\u0430\u0439\u0442\u0430\u0440\u044b\u043c\u0434\u044b\u043b\u044b\u0493\u044b\u043d \u0430\u043b\u0443 \u0436\u04e9\u043d\u0456\u043d\u0434\u0435 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0443 \u04af\u0448\u0456\u043d \u0411\u0456\u043b\u0456\u043c \u049b\u043e\u0440\u044b\u043d \u049b\u0430\u0440\u0430\u043f \u0448\u044b\u0493\u044b\u04a3\u044b\u0437.",
"SearchKnowledgeBase": "\u0411\u0456\u043b\u0456\u043c \u049b\u043e\u0440\u044b\u043d\u0430\u043d \u0456\u0437\u0434\u0435\u0443",
"VisitTheCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b\u049b\u0430 \u0431\u0430\u0440\u0443",
- "VisitProjectWebsite": "Emby \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u0431\u0430\u0440\u0443",
- "VisitProjectWebsiteLong": "\u0421\u043e\u04a3\u0493\u044b \u0436\u0430\u04a3\u0430\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0431\u0456\u043b\u0456\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u0436\u04d9\u043d\u0435 \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u0431\u043b\u043e\u0433\u0456\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u043f \u0442\u04b1\u0440\u0443 \u04af\u0448\u0456\u043d Emby \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u0431\u0430\u0440\u044b\u04a3\u044b\u0437.",
"OptionHideUser": "\u0411\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u043a\u0456\u0440\u0443 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0440\u044b\u043d\u0430\u043d \u0436\u0430\u0441\u044b\u0440\u0443",
- "OptionHideUserFromLoginHelp": "\u0416\u0435\u043a\u0435 \u043d\u0435\u043c\u0435\u0441\u0435 \u0436\u0430\u0441\u044b\u0440\u044b\u043d \u04d9\u043a\u0456\u043c\u0448\u0456 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u044b. \u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043c\u0435\u043d \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0435\u043d\u0433\u0456\u0437\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u049b\u043e\u043b\u043c\u0435\u043d \u043a\u0456\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
"OptionDisableUser": "\u0411\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u0443",
"OptionDisableUserHelp": "\u0415\u0433\u0435\u0440 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u044b\u043d\u0441\u0430, \u0441\u0435\u0440\u0432\u0435\u0440 \u0431\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0434\u0430\u043d \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u043f\u0435\u0439\u0434\u0456. \u0411\u0430\u0440 \u049b\u043e\u0441\u044b\u043b\u044b\u043c\u0434\u0430\u0440 \u043a\u0435\u043d\u0435\u0442 \u04af\u0437\u0456\u043b\u0435\u0434\u0456.",
"HeaderAdvancedControl": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443",
"LabelName": "\u0410\u0442\u044b:",
- "ButtonHelp": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u0433\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430\u0493\u0430",
"OptionAllowUserToManageServer": "\u0411\u0443\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
"HeaderFeatureAccess": "\u049a\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0434\u044b \u049b\u0430\u0442\u044b\u043d\u0430\u0443",
"OptionAllowMediaPlayback": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u043e\u044e\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
"OptionAllowManageLiveTv": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0436\u0430\u0437\u0443\u044b\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
"OptionAllowRemoteControlOthers": "\u0411\u0430\u0441\u049b\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
- "OptionAllowRemoteSharedDevices": "\u041e\u0440\u0442\u0430\u049b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
- "OptionAllowRemoteSharedDevicesHelp": "DLNA-\u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0431\u0430\u0441\u049b\u0430\u0440\u0493\u0430\u043d\u0448\u0430 \u0434\u0435\u0439\u0456\u043d \u043e\u0440\u0442\u0430\u049b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0435\u0441\u0435\u043f\u0442\u0435\u043b\u0456\u043d\u0435\u0434\u0456.",
- "OptionAllowLinkSharing": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442\u0442\u0456\u043a \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
- "OptionAllowLinkSharingHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \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\u0442\u0435\u0440\u0456 \u043e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \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. \u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u0443\u0430\u049b\u044b\u0442\u043f\u0435\u043d \u0448\u0435\u043a\u0442\u0435\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d\u0456\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0434\u0435 \u0430\u044f\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
- "HeaderSharing": "\u041e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443",
- "HeaderRemoteControl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443",
"OptionMissingTmdbId": "TMDb Id \u0436\u043e\u049b",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "\u0411\u04e9\u043b\u0435\u043a\u0442\u0435\u0443",
"ButtonGroupVersions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443",
"PismoMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Pismo File Mount \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.",
- "TangibleSoftwareMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Tangible Solutions Java\/C# \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0433\u0456\u0448\u0442\u0435\u0440\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.",
- "HeaderCredits": "\u049a\u04b1\u049b\u044b\u049b \u0438\u0435\u043b\u0435\u043d\u0443\u0448\u0456\u043b\u0435\u0440",
"PleaseSupportOtherProduces": "\u0411\u0456\u0437 \u049b\u043e\u043b\u0434\u0430\u043d\u0430\u0442\u044b\u043d \u0431\u0430\u0441\u049b\u0430 \u0442\u0435\u0433\u0456\u043d \u04e9\u043d\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u04a3\u044b\u0437:",
"VersionNumber": "\u041d\u04b1\u0441\u049b\u0430\u0441\u044b: {0}",
"TabPaths": "\u0416\u043e\u043b\u0434\u0430\u0440",
"TabServer": "\u0421\u0435\u0440\u0432\u0435\u0440",
"TabTranscoding": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443",
"TitleAdvanced": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d",
- "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)",
"LabelAllowServerAutoRestart": "\u0416\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0441\u0435\u0440\u0432\u0435\u0440\u0433\u0435 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443\u0434\u044b \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
"LabelAllowServerAutoRestartHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u043f\u0430\u0439\u0434\u0430\u043b\u0443\u043d\u0448\u044b\u043b\u0430\u0440 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0435\u043c\u0435\u0441, \u04d9\u0440\u0435\u043a\u0435\u0442\u0441\u0456\u0437 \u043c\u0435\u0437\u0433\u0456\u043b\u0434\u0435\u0440\u0434\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0430\u0434\u044b.",
"LabelEnableDebugLogging": "\u041a\u04af\u0439\u043a\u0435\u043b\u0442\u0456\u0440\u0443 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u044b\u043d \u0436\u04b1\u0440\u043d\u0430\u043b\u0434\u0430 \u049b\u043e\u0441\u0443",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "\u049a\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u043e\u043b\u0434\u0430\u0440\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04d8\u0434\u0435\u043f\u043a\u0456\u043b\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u04e9\u0440\u0456\u0441\u0442\u0435\u0440\u0434\u0456 \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
"LabelCachePath": "\u041a\u044d\u0448\u043a\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:",
"LabelCachePathHelp": "\u0421\u0443\u0440\u0435\u0442 \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u043a\u044d\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
- "LabelRecordingPath": "\u0416\u0430\u0437\u044b\u043b\u0443 \u0436\u043e\u043b\u044b:",
- "LabelRecordingPathHelp": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
"LabelImagesByNamePath": "\u0410\u0442\u044b \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0433\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:",
"LabelImagesByNamePathHelp": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d \u0430\u043a\u0442\u0435\u0440, \u0436\u0430\u043d\u0440, \u0436\u04d9\u043d\u0435 \u0441\u0442\u0443\u0434\u0438\u044f \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
"LabelMetadataPath": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u049b\u0430\u0440\u0430\u0439 \u0436\u043e\u043b:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "\u0422\u0414-\u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
"OptionOtherVideos": "\u0411\u0430\u0441\u049b\u0430 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
"TitleMetadata": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
- "LabelAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u0441\u0443",
"LabelAutomaticUpdatesTmdb": "TheMovieDB.org \u043a\u04e9\u0437\u0456\u043d\u0435\u043d \u0430\u0432\u0442\u043e\u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"LabelAutomaticUpdatesTvdb": "TheTVDB.com \u043a\u04e9\u0437\u0456\u043d\u0435\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"LabelAutomaticUpdatesFanartHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u0430\u04a3\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 fanart.tv \u0434\u0435\u0440\u0435\u049b\u043e\u0440\u044b\u043d\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0431\u043e\u0439\u0434\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0411\u0430\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u043c\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0433\u0435 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u043e\u0434\u0430\u043d \u0434\u0430 \u043a\u04e9\u043f \u0434\u0438\u0441\u043a\u0456\u043b\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456\u043d\u0435 \u04d9\u043a\u0435\u043b\u0435\u0434\u0456.",
"LabelAutomaticUpdatesTmdbHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u0430\u04a3\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 TheMovieDB.org \u0434\u0435\u0440\u0435\u049b\u043e\u0440\u044b\u043d\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0431\u043e\u0439\u0434\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0411\u0430\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u043c\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0433\u0435 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u043e\u0434\u0430\u043d \u0434\u0430 \u043a\u04e9\u043f \u0434\u0438\u0441\u043a\u0456\u043b\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456\u043d\u0435 \u04d9\u043a\u0435\u043b\u0435\u0434\u0456.",
"LabelAutomaticUpdatesTvdbHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u0430\u04a3\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 TheTVDB.com \u0434\u0435\u0440\u0435\u049b\u043e\u0440\u044b\u043d\u0430 \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u0431\u043e\u0439\u0434\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0411\u0430\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u043c\u0430\u0439\u0434\u044b. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0433\u0435 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u043e\u0434\u0430\u043d \u0434\u0430 \u043a\u04e9\u043f \u0434\u0438\u0441\u043a\u0456\u043b\u0456\u043a \u049b\u044b\u0437\u043c\u0435\u0442\u0456\u043d\u0435 \u04d9\u043a\u0435\u043b\u0435\u0434\u0456.",
- "LabelFanartApiKey": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442:",
- "LabelFanartApiKeyHelp": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u0441\u0456\u0437 Fanart \u04af\u0448\u0456\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0430\u0443\u0430\u043b\u0434\u0430\u0440\u0493\u0430 7 \u043a\u04af\u043d\u0456\u043d\u0435\u043d \u0431\u04b1\u0440\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u043b\u0493\u0430\u043d \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u049b\u0430\u0439\u0442\u0430\u0440\u044b\u043b\u0430\u0434\u044b. \u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u043c\u0435\u043d \u0431\u04b1\u043b 48 \u0441\u0430\u0493\u0430\u0442\u049b\u0430 \u0434\u0435\u0439\u0456\u043d \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b, \u0430\u043b,\u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b, Fanart VIP-\u043c\u04af\u0448\u0435\u0441\u0456 \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0431\u04b1\u043b \u0448\u0430\u043c\u0430\u043c\u0435\u043d 10 \u043c\u0438\u043d\u04e9\u0442\u043a\u0435 \u0434\u0435\u0439\u0456\u043d \u0442\u0430\u0493\u044b \u0434\u0430 \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b.",
"ExtractChapterImagesHelp": "\u0421\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0448\u044b\u0493\u0430\u0440\u044b\u043f \u0430\u043b\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0441\u0430\u0445\u043d\u0430 \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u0443\u0433\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0441\u044b\u0437\u0431\u0430\u043b\u044b\u049b \u043c\u04d9\u0437\u0456\u0440\u043b\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0411\u04b1\u043b \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u0431\u0430\u044f\u0443, \u041e\u041f \u043a\u0435\u0440\u0435\u043a \u049b\u044b\u043b\u0430\u0442\u044b\u043d \u0436\u04d9\u043d\u0435 \u0431\u0456\u0440\u0430\u0437 \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043a\u0435\u04a3\u0456\u0441\u0442\u0456\u043a\u0442\u0456 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0442\u0456\u043d \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d. \u041e\u043b \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0442\u0430\u0431\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0436\u04d9\u043d\u0435 \u0442\u04af\u043d\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u044b\u043d\u0430 \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 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0439\u0434\u0456. \u041e\u0440\u044b\u043d\u0434\u0430\u0443 \u043a\u0435\u0441\u0442\u0435\u0441\u0456 \u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b \u0430\u0439\u043c\u0430\u0493\u044b\u043d\u0434\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0435\u0434\u0456. \u0411\u04b1\u043b \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043d\u044b \u049b\u0430\u0440\u0431\u0430\u043b\u0430\u0441 \u0441\u0430\u0493\u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0434\u0430 \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0442\u043a\u0456\u0437\u0443 \u04b1\u0441\u044b\u043d\u044b\u043b\u043c\u0430\u0439\u0434\u044b.",
"LabelMetadataDownloadLanguage": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u0442\u0456\u043b\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:",
"ButtonAutoScroll": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0430\u0439\u043d\u0430\u043b\u0434\u044b\u0440\u0443",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 (localhost) \u043e\u0440\u044b\u043d\u0434\u0430\u043d \u043a\u0456\u0440\u0433\u0435\u043d\u0434\u0435 \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0435\u0440 \u049b\u0430\u0436\u0435\u0442 \u0435\u043c\u0435\u0441.",
"TabGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434",
"TabChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
- "TabCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440",
"HeaderChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
"TabRecordings": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
"TabScheduled": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d",
"TabSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440",
- "TabFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
- "TabMyLibrary": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043c",
"ButtonCancelRecording": "\u0416\u0430\u0437\u0431\u0430\u043d\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u043c\u0430\u0443",
"HeaderPrePostPadding": "\u0410\u043b\u0493\u0430\/\u0410\u0440\u0442\u049b\u0430 \u0448\u0435\u0433\u0456\u043d\u0456\u0441",
"LabelPrePaddingMinutes": "\u0410\u043b\u0493\u0430 \u0448\u0435\u0433\u0456\u043d\u0456\u0441, \u043c\u0438\u043d:",
@@ -416,13 +272,10 @@
"TabStatus": "\u041a\u04af\u0439",
"TabSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
"ButtonRefreshGuideData": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443",
- "ButtonRefresh": "\u0416\u0430\u04a3\u0493\u044b\u0440\u0442\u0443",
- "ButtonAdvancedRefresh": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443",
"OptionPriority": "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442",
"OptionRecordOnAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u0430\u043d \u0436\u0430\u0437\u044b\u043f \u0430\u043b\u0443",
"OptionRecordAnytime": "\u04d8\u0440 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0436\u0430\u0437\u044b\u043f \u0430\u043b\u0443",
"OptionRecordOnlyNewEpisodes": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u0436\u0430\u04a3\u0430 \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440\u0434\u0456 \u0436\u0430\u0437\u044b\u043f \u0430\u043b\u0443",
- "HeaderRepeatingOptions": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"HeaderDays": "\u041a\u04af\u043d\u0434\u0435\u0440",
"HeaderActiveRecordings": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u0437\u0443\u043b\u0430\u0440",
"HeaderLatestRecordings": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
@@ -431,17 +284,16 @@
"ButtonEdit": "\u04e8\u04a3\u0434\u0435\u0443",
"ButtonRecord": "\u0416\u0430\u0437\u0443",
"ButtonDelete": "\u0416\u043e\u044e",
- "ButtonRemove": "\u0410\u043b\u0430\u0441\u0442\u0430\u0443",
"OptionRecordSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043d\u044b \u0436\u0430\u0437\u0443",
"HeaderDetails": "\u0422\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0435\u0440",
+ "OptionFolderSort": "\u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440",
+ "OptionBackdrop": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442",
"TitleLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414",
"LabelNumberOfGuideDays": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u0422\u0435\u043b\u0435\u0433\u0438\u0434 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d\u0434\u0435\u0433\u0456 \u043a\u04af\u043d \u0441\u0430\u043d\u044b:",
"LabelNumberOfGuideDaysHelp": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u043a\u04af\u043d\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u0422\u0435\u043b\u0435\u0433\u0438\u0434 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d\u0456\u04a3 \u049b\u04b1\u043d\u0434\u044b\u043b\u044b\u0493\u044b\u043d \u043a\u04e9\u0442\u0435\u0440\u0435\u0434\u0456 \u0434\u0435 \u0430\u043b\u0434\u044b\u043d-\u0430\u043b\u0430 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0456\u043d \u0436\u04d9\u043d\u0435 \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u0442\u0456\u0437\u0431\u0435\u043b\u0435\u0440 \u043a\u04e9\u0440\u0443\u0434\u0456 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u0431\u04b1\u043b \u0436\u04af\u043a\u0442\u0435\u0443 \u0443\u0430\u049b\u044b\u0442\u044b\u043d \u0434\u0430 \u0441\u043e\u0437\u0434\u044b\u0440\u0430\u0434\u044b. \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u0430\u04a3\u0434\u0430\u0443 \u0430\u0440\u043d\u0430 \u0441\u0430\u043d\u044b\u043d\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0456\u043d\u0435\u0434\u0456.",
"OptionAutomatic": "\u0410\u0432\u0442\u043e\u0442\u0430\u04a3\u0434\u0430\u0443",
- "HeaderServices": "\u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
"LiveTvPluginRequired": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u049b\u044b\u0437\u043c\u0435\u0442\u0456\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
"LiveTvPluginRequiredHelp": "\u0411\u0456\u0437\u0434\u0456\u04a3 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 (Next Pvr \u043d\u0435 ServerWmc \u0441\u0438\u044f\u049b\u0442\u044b) \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456\u04a3 \u0431\u0456\u0440\u0435\u0443\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
- "LabelCustomizeOptionsPerMediaType": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u04af\u0440\u0456 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443:",
"OptionDownloadThumbImage": "\u041d\u043e\u0431\u0430\u0439",
"OptionDownloadMenuImage": "\u041c\u04d9\u0437\u0456\u0440",
"OptionDownloadLogoImage": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456",
"HeaderFetchImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0456\u0440\u0456\u043a\u0442\u0435\u0443:",
"HeaderImageSettings": "\u0421\u0443\u0440\u0435\u0442 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
- "TabOther": "\u0411\u0430\u0441\u049b\u0430\u043b\u0430\u0440",
"LabelMaxBackdropsPerItem": "\u0422\u0430\u0440\u043c\u0430\u049b \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0430\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 \u0435\u04a3 \u043a\u04e9\u043f \u0441\u0430\u043d\u044b:",
"LabelMaxScreenshotsPerItem": "\u0422\u0430\u0440\u043c\u0430\u049b \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0435\u04a3 \u043a\u04e9\u043f \u0441\u043a\u0440\u0438\u043d\u0448\u043e\u0442 \u0441\u0430\u043d\u044b:",
"LabelMinBackdropDownloadWidth": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0456\u04a3 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0430\u0442\u044b\u043d \u0435\u04a3 \u0430\u0437 \u0435\u043d\u0456:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u0422\u04af\u0441\u0456\u0440\u0443\u0433\u0435 \u049b\u0430\u0442\u044b\u0441\u049b\u0430\u043d\u0434\u0430\u0440",
"HeaderAdditionalParts": "\u0416\u0430\u043b\u0493\u0430\u0441\u0430\u0442\u044b\u043d \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
"ButtonSplitVersionsApart": "\u041d\u04af\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0439\u0442\u0430 \u0431\u04e9\u043b\u0443",
+ "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0433\u0435",
"LabelMissing": "\u0416\u043e\u049b",
"LabelOffline": "\u0414\u0435\u0440\u0431\u0435\u0441",
"PathSubstitutionHelp": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u043b\u0430\u0440\u044b\u043d \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0436\u043e\u043b\u0434\u044b \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u043e\u043b\u043c\u0435\u043d \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043b\u0433\u0435\u043d\u0434\u0435, \u0431\u04b1\u043b\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0442\u044b \u0436\u0435\u043b\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u04d9\u043d\u0435 \u0441\u0435\u0440\u0432\u0435\u0440 \u0440\u0435\u0441\u0443\u0440\u0441\u0442\u0430\u0440\u044b\u043d \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u04d9\u043d\u0435 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430\u043d \u0436\u0430\u043b\u0442\u0430\u0440\u0430\u0434\u044b.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "\u0415\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u0441\u0430\u043f\u0430",
"OptionEnableDebugTranscodingLogging": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u0430 \u043a\u04af\u0439\u043a\u0435\u043b\u0442\u0456\u0440\u0443 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440\u044b\u043d \u0436\u04b1\u0440\u043d\u0430\u043b\u0434\u0430 \u049b\u043e\u0441\u0443",
"OptionEnableDebugTranscodingLoggingHelp": "\u04e8\u0442\u0435 \u0430\u0443\u049b\u044b\u043c\u0434\u044b \u0436\u04b1\u0440\u043d\u0430\u043b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0436\u0430\u0441\u0430\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0430\u049b\u0430\u0443\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0436\u043e\u044e \u04af\u0448\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0493\u0430\u043d \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u04b1\u0441\u044b\u043d\u044b\u043b\u0430\u0434\u044b.",
+ "ButtonNew": "\u0416\u0430\u0441\u0430\u0443",
+ "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
+ "TabImages": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440",
+ "TabCollectionTitles": "\u0422\u0443\u044b\u043d\u0434\u044b\u043b\u0430\u0440",
+ "ButtonSearch": "\u0406\u0437\u0434\u0435\u0443",
+ "ButtonRemove": "\u0410\u043b\u0430\u0441\u0442\u0430\u0443",
"EditCollectionItemsHelp": "\u0411\u04b1\u043b \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0430 \u049b\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443 \u04af\u0448\u0456\u043d \u04d9\u0440\u049b\u0430\u0439\u0441\u044b \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456, \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b, \u0430\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440\u0434\u044b, \u043a\u0456\u0442\u0430\u043f\u0442\u0430\u0440\u0434\u044b \u043d\u0435 \u043e\u0439\u044b\u043d\u0434\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u04a3\u0456\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437.",
"HeaderAddTitles": "\u0422\u0443\u044b\u043d\u0434\u044b\u043b\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443",
"LabelEnableDlnaPlayTo": "DLNA \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "\u0416\u04af\u0439\u0435\u043b\u0456\u043a \u0436\u043e\u043b\u0434\u0430\u0440",
"LinkCommunity": "\u049a\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u049b",
"LinkGithub": "GitHub",
- "LinkApi": "API",
"LinkApiDocumentation": "API \u049b\u04b1\u0436\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b",
"LabelFriendlyServerName": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u043e\u04a3\u0430\u0439 \u0430\u0442\u044b:",
"LabelFriendlyServerNameHelp": "\u0411\u04b1\u043b \u0430\u0442\u0430\u0443 \u043e\u0441\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0415\u0433\u0435\u0440 \u04e9\u0440\u0456\u0441 \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0441\u0430, \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440 \u0430\u0442\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Emby \u0442\u04d9\u0440\u0436\u0456\u043c\u0435\u043b\u0435\u0443\u0456 \u0430\u0493\u044b\u043c\u0434\u0430\u0493\u044b \u0436\u043e\u0431\u0430 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
"LabelReadHowYouCanContribute": "\u049a\u0430\u043b\u0430\u0439 \u04af\u043b\u0435\u0441 \u049b\u043e\u0441\u0443\u044b\u043d\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d \u0442\u0443\u0440\u0430\u043b\u044b \u04af\u0439\u0440\u0435\u043d\u0456\u04a3\u0456\u0437.",
"HeaderNewCollection": "\u0416\u0430\u04a3\u0430 \u0436\u0438\u044b\u043d\u0442\u044b\u049b",
- "ButtonSubmit": "\u0416\u0456\u0431\u0435\u0440\u0443",
"ButtonCreate": "\u0416\u0430\u0441\u0430\u0443",
- "LabelCustomCss": "\u0422\u0435\u04a3\u0448\u0435\u0443\u043b\u0456 CSS:",
- "LabelCustomCssHelp": "\u04e8\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u0443\u043b\u0456 CSS-\u043a\u043e\u0434\u044b\u043d \u0432\u0435\u0431-\u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u04a3\u044b\u0437.",
- "LabelLocalHttpServerPortNumber": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 http-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:",
- "LabelLocalHttpServerPortNumberHelp": "Emby HTTP-\u0441\u0435\u0440\u0432\u0435\u0440\u0456 \u0431\u0430\u0439\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0493\u0430 \u0442\u0438\u0456\u0441\u0442\u0456 TCP-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.",
- "LabelPublicHttpPort": "\u0416\u0430\u0440\u0438\u044f http-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:",
- "LabelPublicHttpPortHelp": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 http-\u043f\u043e\u0440\u0442\u044b\u043d\u0430 \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u044b \u0442\u0438\u0456\u0441 \u0436\u0430\u0440\u0438\u044f \u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.",
- "LabelPublicHttpsPort": "\u0416\u0430\u0440\u0438\u044f https-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:",
- "LabelPublicHttpsPortHelp": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 https-\u043f\u043e\u0440\u0442\u044b\u043d\u0430 \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u044b \u0442\u0438\u0456\u0441 \u0436\u0430\u0440\u0438\u044f \u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.",
- "LabelEnableHttps": "HTTPS \u0445\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b \u0441\u044b\u0440\u0442\u049b\u044b \u043c\u0435\u043a\u0435\u043d\u0435\u0436\u0430\u0439 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0430\u044f\u043d\u0434\u0430\u0443",
- "LabelEnableHttpsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u0441\u0435\u0440\u0432\u0435\u0440 HTTPS URL \u0441\u044b\u0440\u0442\u049b\u044b \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0430\u044f\u043d\u0434\u0430\u0439\u0434\u044b.",
- "LabelHttpsPort": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 https-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:",
- "LabelHttpsPortHelp": "Emby HTTPS-\u0441\u0435\u0440\u0432\u0435\u0440\u0456 \u0431\u0430\u0439\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0493\u0430 \u0442\u0438\u0456\u0441\u0442\u0456 TCP-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.",
"LabelWebSocketPortNumber": "\u0412\u0435\u0431-\u0441\u043e\u043a\u0435\u0442 \u043f\u043e\u0440\u0442\u044b\u043d\u044b\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456:",
- "LabelEnableAutomaticPortMap": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u043f\u043e\u0440\u0442 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443",
- "LabelEnableAutomaticPortMapHelp": "\u0416\u0430\u0440\u0438\u044f \u043f\u043e\u0440\u0442\u0442\u044b \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u043e\u0440\u0442\u049b\u0430 UPnP \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04d9\u0440\u0435\u043a\u0435\u0442\u0456. \u0411\u04b1\u043b \u043a\u0435\u0439\u0431\u0456\u0440 \u0436\u043e\u043b \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u044b\u0448 \u04b1\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u043c\u0435\u0439\u0442\u0456\u043d\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
"LabelExternalDDNS": "\u0421\u044b\u0440\u0442\u049b\u044b WAN-\u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439:",
"LabelExternalDDNSHelp": "\u0415\u0433\u0435\u0440 \u0441\u0456\u0437\u0434\u0435 dynamic DNS \u0431\u043e\u043b\u0441\u0430, \u0431\u04b1\u043d\u044b \u043e\u0441\u044b \u0436\u0435\u0440\u0434\u0435 \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b \u0441\u044b\u0440\u0442\u0442\u0430\u043d \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430 \u043e\u0441\u044b\u043d\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0434\u044b. \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
"TabResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
@@ -591,8 +433,12 @@
"HeaderProgram": "\u0411\u0435\u0440\u0456\u043b\u0456\u043c",
"HeaderClients": "\u041a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440",
"LabelCompleted": "\u0410\u044f\u049b\u0442\u0430\u043b\u0493\u0430\u043d",
+ "LabelFailed": "\u0421\u04d9\u0442\u0441\u0456\u0437",
"LabelSkipped": "\u04e8\u0442\u043a\u0456\u0437\u0456\u043b\u0433\u0435\u043d",
"HeaderEpisodeOrganization": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0456 \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443",
+ "LabelSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f:",
+ "LabelSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
+ "LabelEpisodeNumber": "\u042d\u043f\u0438\u0437\u043e\u0434 \u043d\u04e9\u043c\u0456\u0440\u0456",
"LabelEndingEpisodeNumber": "\u0410\u044f\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0456\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456:",
"LabelEndingEpisodeNumberHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0431\u04e9\u043b\u0456\u043c\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u04af\u0448\u0456\u043d",
"HeaderSupportTheTeam": "Emby \u0442\u043e\u0431\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u04a3\u044b\u0437",
@@ -627,16 +473,13 @@
"OptionMove": "\u0416\u044b\u043b\u0436\u044b\u0442\u0443",
"LabelTransferMethodHelp": "\u049a\u0430\u0434\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u0430\u0493\u044b \u049b\u0430\u043b\u0442\u0430\u0434\u0430\u043d \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u043a\u04e9\u0448\u0456\u0440\u0443 \u043d\u0435 \u0436\u044b\u043b\u0436\u044b\u0442\u0443",
"HeaderLatestNews": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u04a3\u0433\u0456 \u0436\u0430\u04a3\u0430\u043b\u044b\u049b\u0442\u0430\u0440",
- "HeaderHelpImproveProject": "Emby \u0436\u0435\u0442\u0456\u043b\u0434\u0456\u0440\u0443\u0433\u0435 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0456\u04a3\u0456\u0437",
"HeaderRunningTasks": "\u041e\u0440\u044b\u043d\u0434\u0430\u043b\u044b\u043f \u0436\u0430\u0442\u049b\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440",
"HeaderActiveDevices": "\u0411\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440",
"HeaderPendingInstallations": "\u0411\u04e9\u0433\u0435\u043b\u0456\u0441 \u043e\u0440\u043d\u0430\u0442\u044b\u043c\u0434\u0430\u0440",
- "HeaderServerInformation": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b",
"ButtonRestartNow": "\u049a\u0430\u0437\u0456\u0440 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443",
"ButtonRestart": "\u049a\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443",
"ButtonShutdown": "\u0416\u04b1\u043c\u044b\u0441\u0442\u044b \u0430\u044f\u049b\u0442\u0430\u0443",
"ButtonUpdateNow": "\u049a\u0430\u0437\u0456\u0440 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443",
- "TabHosting": "\u041e\u0440\u043d\u0430\u043b\u0430\u0441\u0443",
"PleaseUpdateManually": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0436\u04b1\u043c\u044b\u0441\u044b\u043d \u0430\u044f\u049b\u0442\u0430\u04a3\u044b\u0437 \u0434\u0430 \u049b\u043e\u043b\u043c\u0435\u043d \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u04a3\u044b\u0437.",
"NewServerVersionAvailable": "\u0416\u0430\u04a3\u0430 Emby Server \u043d\u04b1\u0441\u049b\u0430\u0441\u044b \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456!",
"ServerUpToDate": "Emby Server \u04af\u0448\u0456\u043d \u0435\u04a3 \u043a\u0435\u0439\u043d\u0433\u0456 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456\u043b\u0456\u0433\u0456\u043d \u0442\u0435\u043a\u0441\u0435\u0440\u0443 \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0440\u0430 \u04b1\u0437\u0430\u049b\u0442\u044b\u0493\u044b\u043d \u0441\u0435\u043a\u0443\u043d\u0434\u0442\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b.",
"LabelDefaultUser": "\u04d8\u0434\u0435\u043f\u043a\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b:",
"LabelDefaultUserHelp": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430 \u049b\u0430\u0439 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u0441\u044b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0443\u0456 \u0442\u0438\u0456\u0441\u0442\u0456\u043b\u0456\u0433\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u0439\u0434\u044b. \u041f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0493\u0430\u043d\u0434\u0430 \u0431\u04b1\u043b \u04d9\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
+ "HeaderPlaybackSettings": "\u041e\u0439\u043d\u0430\u0442\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"TitleDlna": "DLNA",
- "TitleChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
"HeaderServerSettings": "\u0421\u0435\u0440\u0432\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"LabelWeatherDisplayLocation": "\u0410\u0443\u0430 \u0440\u0430\u0439\u044b \u0435\u043b\u0434\u0456\u043c\u0435\u043a\u0435\u043d\u0456:",
"LabelWeatherDisplayLocationHelp": "\u0410\u049a\u0428 \u043f\u043e\u0448\u0442\u0430\u043b\u044b\u049b \u043a\u043e\u0434\u044b \/ \u049a\u0430\u043b\u0430, \u0428\u0442\u0430\u0442, \u0415\u043b \/ \u049a\u0430\u043b\u0430, \u0415\u043b",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "\u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u043f\u0430\u0439\u0434\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u043a\u04e9\u0440\u043d\u0435\u043a\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443\u044b \u0431\u0430\u0440 \u043a\u0456\u0440\u0443 \u044d\u043a\u0440\u0430\u043d\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
"OptionOtherApps": "\u0411\u0430\u0441\u049b\u0430 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440",
"OptionMobileApps": "\u04b0\u0442\u049b\u044b\u0440 \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440",
+ "TabNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440",
"HeaderNotificationList": "\u0416\u0456\u0431\u0435\u0440\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437.",
+ "LabelNotificationEnabled": "\u0411\u04b1\u043b \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u049b\u043e\u0441\u0443",
+ "NotificationOptionVideoPlayback": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b",
+ "NotificationOptionAudioPlayback": "\u0414\u044b\u0431\u044b\u0441 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b",
+ "NotificationOptionGamePlayback": "\u041e\u0439\u044b\u043d \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b",
+ "NotificationOptionNewLibraryContent": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d",
+ "NotificationOptionServerRestartRequired": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u049b\u0430\u0436\u0435\u0442",
+ "LabelMonitorUsers": "\u041c\u044b\u043d\u0430\u043d\u044b\u04a3 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0431\u0430\u049b\u044b\u043b\u0430\u0443:",
+ "LabelSendNotificationToUsers": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u0436\u0456\u0431\u0435\u0440\u0443:",
+ "LabelUseNotificationServices": "\u041a\u0435\u043b\u0435\u0441\u0456 \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443:",
"NotificationOptionApplicationUpdateAvailable": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456",
"NotificationOptionApplicationUpdateInstalled": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b",
"NotificationOptionPluginUpdateInstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b",
"NotificationOptionPluginInstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0434\u044b",
"NotificationOptionPluginUninstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u043e\u0440\u043d\u0430\u0442\u0443\u044b \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b",
- "NotificationOptionVideoPlayback": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b",
- "NotificationOptionAudioPlayback": "\u0414\u044b\u0431\u044b\u0441 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b",
- "NotificationOptionGamePlayback": "\u041e\u0439\u044b\u043d \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0431\u0430\u0441\u0442\u0430\u043b\u0434\u044b",
- "NotificationOptionVideoPlaybackStopped": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b",
- "NotificationOptionAudioPlaybackStopped": "\u0414\u044b\u0431\u044b\u0441 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b",
- "NotificationOptionGamePlaybackStopped": "\u041e\u0439\u044b\u043d \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b",
"NotificationOptionTaskFailed": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430 \u0441\u04d9\u0442\u0441\u0456\u0437\u0434\u0456\u0433\u0456",
"NotificationOptionInstallationFailed": "\u041e\u0440\u043d\u0430\u0442\u0443 \u0441\u04d9\u0442\u0441\u0456\u0437\u0434\u0456\u0433\u0456",
- "NotificationOptionNewLibraryContent": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0441\u0442\u0435\u043b\u0433\u0435\u043d",
- "NotificationOptionNewLibraryContentMultiple": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d \u049b\u043e\u0441\u044b\u043b\u0434\u044b (\u043a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d)",
- "NotificationOptionCameraImageUploaded": "\u041a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442 \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u044b\u043b\u0493\u0430\u043d",
- "NotificationOptionUserLockedOut": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u044b",
- "HeaderSendNotificationHelp": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440 Emby \u043a\u0456\u0440\u0456\u0441 \u0436\u04d9\u0448\u0456\u0433\u0456\u043d\u0435 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u043b\u0435\u0434\u0456. \u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440 \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u049b\u043e\u0439\u044b\u043d\u0434\u044b\u0441\u044b\u043d\u0430\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.",
- "NotificationOptionServerRestartRequired": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u049b\u0430\u0439\u0442\u0430 \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443 \u049b\u0430\u0436\u0435\u0442",
- "LabelNotificationEnabled": "\u0411\u04b1\u043b \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u049b\u043e\u0441\u0443",
- "LabelMonitorUsers": "\u041c\u044b\u043d\u0430\u043d\u044b\u04a3 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0431\u0430\u049b\u044b\u043b\u0430\u0443:",
- "LabelSendNotificationToUsers": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u043c\u0430\u043d\u044b \u0436\u0456\u0431\u0435\u0440\u0443:",
- "LabelUseNotificationServices": "\u041a\u0435\u043b\u0435\u0441\u0456 \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443:",
"CategoryUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b",
"CategorySystem": "\u0416\u04af\u0439\u0435",
- "CategoryApplication": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430",
- "CategoryPlugin": "\u041f\u043b\u0430\u0433\u0438\u043d",
"LabelMessageTitle": "\u0425\u0430\u0431\u0430\u0440 \u0442\u0430\u049b\u044b\u0440\u044b\u0431\u044b:",
"LabelAvailableTokens": "\u049a\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0442\u0430\u04a3\u0431\u0430\u043b\u0430\u0443\u044b\u0448\u0442\u0430\u0440:",
"AdditionalNotificationServices": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443 \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u043c\u0435\u0441\u0456\u043d \u0448\u043e\u043b\u044b\u04a3\u044b\u0437.",
+ "LabelSelectUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u0443:",
"OptionAllUsers": "\u0411\u0430\u0440\u043b\u044b\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
"OptionAdminUsers": "\u04d8\u043a\u0456\u043c\u0448\u0456\u043b\u0435\u0440",
"OptionCustomUsers": "\u0422\u0435\u04a3\u0448\u0435\u0443\u043b\u0456",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "\u041e\u04a3 \u0436\u0430\u049b\u049b\u0430",
"ButtonBack": "\u0410\u0440\u0442\u049b\u0430",
"ButtonInfo": "\u0410\u049b\u043f\u0430\u0440\u0430\u0442\u049b\u0430",
- "ButtonOsd": "\u042d\u043a\u0440\u0430\u043d\u0434\u044b\u049b \u043c\u04d9\u0437\u0456\u0440\u0433\u0435",
"ButtonPageUp": "\u0416\u043e\u0493\u0430\u0440\u0493\u044b \u0431\u0435\u0442\u043a\u0435",
"ButtonPageDown": "\u0422\u04e9\u043c\u0435\u043d\u0433\u0456 \u0431\u0435\u0442\u043a\u0435",
"PageAbbreviation": "\u0411\u0415\u0422",
"ButtonHome": "\u0411\u0430\u0441\u0442\u044b\u0493\u0430",
- "ButtonSearch": "\u0406\u0437\u0434\u0435\u0443",
"ButtonSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
"ButtonTakeScreenshot": "\u042d\u043a\u0440\u0430\u043d\u0434\u044b \u0442\u04af\u0441\u0456\u0440\u0443",
"ButtonLetterUp": "\u04d8\u0440\u0456\u043f\u043a\u0435 \u0436\u043e\u0493\u0430\u0440\u044b\u043b\u0430\u0442\u0443",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "\u04d8\u0420\u041f",
"TabNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430",
"TabNavigation": "\u0428\u0430\u0440\u043b\u0430\u0443",
- "TabControls": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456",
+ "ButtonFullscreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d\u0493\u0430",
"ButtonScenes": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440\u0493\u0430",
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0433\u0435",
+ "ButtonAudioTracks": "\u0414\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u049b\u0442\u0430\u0440\u044b\u043d\u0430",
+ "ButtonPreviousTrack": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
+ "ButtonNextTrack": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0436\u043e\u043b\u0448\u044b\u049b\u049b\u0430",
"ButtonStop": "\u0422\u043e\u049b\u0442\u0430\u0442\u0443",
"ButtonPause": "\u04ae\u0437\u0443",
- "ButtonNext": "\u041a\u0435\u043b\u0435\u0441\u0456\u0433\u0435",
- "ButtonPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b\u0493\u0430",
"LabelGroupMoviesIntoCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0456\u0448\u0456\u043d\u0434\u0435\u0433\u0456 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456 \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443",
"LabelGroupMoviesIntoCollectionsHelp": "\u0424\u0438\u043b\u044c\u043c \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0433\u0435\u043d \u043a\u0435\u0437\u0434\u0435 \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u043a\u0456\u0440\u0435\u0442\u0456\u043d \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440 \u0442\u043e\u043f\u0442\u0430\u043b\u0493\u0430\u043d \u0431\u0456\u0440\u044b\u04a3\u0493\u0430\u0439 \u0442\u0430\u0440\u043c\u0430\u049b \u0431\u043e\u043b\u044b\u043f \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0434\u0456.",
+ "CategoryApplication": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430",
+ "CategoryPlugin": "\u041f\u043b\u0430\u0433\u0438\u043d",
"NotificationOptionPluginError": "\u041f\u043b\u0430\u0433\u0438\u043d \u0441\u04d9\u0442\u0441\u0456\u0437\u0434\u0456\u0433\u0456",
+ "TabControls": "\u0411\u0430\u0441\u049b\u0430\u0440\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0442\u0435\u0440\u0456",
"ButtonVolumeUp": "\u04ae\u043d\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u0436\u043e\u0493\u0430\u0440\u044b\u043b\u0430\u0442\u0443",
"ButtonVolumeDown": "\u04ae\u043d\u0434\u0456\u043b\u0456\u043a\u0442\u0456 \u0442\u04e9\u043c\u0435\u043d\u0434\u0435\u0442\u0443",
"ButtonMute": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b \u04e9\u0448\u0456\u0440\u0443",
"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",
+ "OptionNoSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u043e\u049b",
"OptionSpecialFeatures": "\u0410\u0440\u043d\u0430\u0439\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440",
+ "ChannelAccessHelp": "\u0411\u04b1\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u04af\u0448\u0456\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u0431\u04e9\u043b\u0435\u043a\u0442\u0435\u04a3\u0456\u0437. \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\u043f \u04d9\u043a\u0456\u043c\u0448\u0456\u043b\u0435\u0440 \u0431\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u04e9\u04a3\u0434\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
"HeaderCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440",
"LabelProfileCodecsHelp": "\u04ae\u0442\u0456\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d. \u0411\u0430\u0440\u043b\u044b\u049b \u043a\u043e\u0434\u0435\u043a\u0442\u0435\u0440\u0433\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u04b1\u043b \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.",
"LabelProfileContainersHelp": "\u04ae\u0442\u0456\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d. \u0411\u0430\u0440\u043b\u044b\u049b \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u043b\u0435\u0440\u0433\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u04b1\u043b \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.",
"HeaderResponseProfile": "\u04ae\u043d \u049b\u0430\u0442\u0443 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b",
"LabelType": "\u0422\u04af\u0440\u0456:",
- "LabelPersonRole": "\u0420\u04e9\u043b\u0456:",
- "LabelPersonRoleHelp": "\u0420\u04e9\u043b, \u0436\u0430\u043b\u043f\u044b \u0430\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0430\u043a\u0442\u0435\u0440\u043b\u0435\u0440\u0433\u0435 \u049b\u043e\u043b\u0430\u0439\u043b\u044b.",
"LabelProfileContainer": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440:",
"LabelProfileVideoCodecs": "\u0411\u0435\u0439\u043d\u0435\u043b\u0456\u043a \u043a\u043e\u0434\u0435\u043a\u0442\u0435\u0440:",
"LabelProfileAudioCodecs": "\u0414\u044b\u0431\u044b\u0441\u0442\u044b\u049b \u043a\u043e\u0434\u0435\u043a\u0442\u0435\u0440:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0431\u0430\u0440\u043b\u044b\u049b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 DIDL \u0456\u0448\u0456\u043d\u0434\u0435 \"object.item.videoItem.movie\" \u0441\u0438\u044f\u049b\u0442\u044b \u043d\u0430\u049b\u0442\u044b\u043b\u0430\u0443 \u0442\u04af\u0440\u0456\u043d\u0456\u04a3 \u043e\u0440\u043d\u044b\u043d\u0430 \"object.item.videoItem\" \u0431\u043e\u043b\u044b\u043f \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
"LabelSupportedMediaTypes": "\u049a\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0442\u04af\u0440\u043b\u0435\u0440\u0456:",
"TabIdentification": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443",
- "HeaderIdentification": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443",
"TabDirectPlay": "\u0422\u0456\u043a\u0435\u043b\u0435\u0439 \u043e\u0439\u043d\u0430\u0442\u0443",
"TabContainers": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u043b\u0435\u0440",
"TabCodecs": "\u041a\u043e\u0434\u0435\u043a\u0442\u0435\u0440",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "\u0411\u04b1\u043b \u043c\u04d9\u043d\u0434\u0435\u0440 Emby Server \u049b\u0430\u043b\u0430\u0439 \u04e9\u0437\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u043a\u04e9\u0440\u0441\u0435\u0442\u0435\u0442\u0456\u043d\u0456\u04a3 \u0431\u0430\u0441\u049b\u0430\u0440\u0430\u0434\u044b.",
"LabelMaxBitrate": "\u0415\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d:",
"LabelMaxBitrateHelp": "\u04e8\u0442\u043a\u0456\u0437\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456 \u0448\u0435\u043a\u0442\u0435\u043b\u0433\u0435\u043d \u043e\u0440\u0442\u0430\u043b\u0430\u0440\u0434\u0430\u0493\u044b \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u044b\u043d, \u043d\u0435\u043c\u0435\u0441\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0441\u0430 - \u04e9\u0437 \u0448\u0435\u0433\u0456\u043d \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
- "LabelMaxStreamingBitrate": "\u0415\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
- "LabelMaxStreamingBitrateHelp": "\u0410\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
- "LabelMaxChromecastBitrate": "Chromecast \u04af\u0448\u0456\u043d \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d:",
- "LabelMaxStaticBitrate": "\u0415\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
- "LabelMaxStaticBitrateHelp": "\u0416\u043e\u0493\u0430\u0440\u044b \u0441\u0430\u043f\u0430\u043c\u0435\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
- "LabelMusicStaticBitrate": "\u041c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
- "LabelMusicStaticBitrateHelp": "\u041c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0443",
- "LabelMusicStreamingTranscodingBitrate": "\u041c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
- "LabelMusicStreamingTranscodingBitrateHelp": "\u041c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437",
"OptionIgnoreTranscodeByteRangeRequests": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u0431\u0430\u0439\u0442 \u0430\u0443\u049b\u044b\u043c\u044b \u0441\u04b1\u0440\u0430\u043d\u044b\u0441\u0442\u0430\u0440\u044b\u043d \u0435\u043b\u0435\u043c\u0435\u0443",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043e\u0441\u044b \u0441\u04b1\u0440\u0430\u043d\u044b\u0441\u0442\u0430\u0440\u043c\u0435\u043d \u0441\u0430\u043d\u0430\u0441\u0443 \u0431\u043e\u043b\u0430\u0434\u044b, \u0431\u0456\u0440\u0430\u049b \u0431\u0430\u0439\u0442 \u0430\u0443\u049b\u044b\u043c\u044b\u043d\u044b\u04a3 \u0431\u0430\u0441 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u0441\u0456 \u0435\u043b\u0435\u043f \u0435\u0441\u043a\u0435\u0440\u0456\u043b\u043c\u0435\u0439\u0434\u0456.",
"LabelFriendlyName": "\u0422\u04af\u0441\u0456\u043d\u0456\u043a\u0442\u0456 \u0430\u0442\u044b",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "\u0411\u04b1\u043b \u0443\u0430\u049b\u044b\u0442 \u0456\u0440\u0456\u043a\u0442\u0435\u0443\u0456 \u043e\u043d\u0448\u0430 \u0435\u043c\u0435\u0441 \u043a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u049b\u0430\u0436\u0435\u0442.",
"HeaderSubtitleDownloadingHelp": "Emby \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0433\u0435\u043d\u0434\u0435 \u0431\u04b1\u043b \u0436\u043e\u049b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0456\u0437\u0434\u0435\u0443 \u0436\u04d9\u043d\u0435 OpenSubtitles.org \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a",
"HeaderDownloadSubtitlesFor": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u043c\u044b\u043d\u0430\u0493\u0430\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443:",
- "MessageNoChapterProviders": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0441\u0430\u0445\u043d\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d ChapterDb \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0430\u0445\u043d\u0430\u043b\u0430\u0440 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
- "LabelSkipIfGraphicalSubsPresent": "\u0415\u0433\u0435\u0440 \u0431\u0435\u0439\u043d\u0435\u0434\u0435 \u0441\u044b\u0437\u0431\u0430\u043b\u044b\u049b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0431\u043e\u043b\u0441\u0430 \u04e9\u0442\u043a\u0456\u0437\u0456\u043f \u0436\u0456\u0431\u0435\u0440\u0443",
- "LabelSkipIfGraphicalSubsPresentHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456\u04a3 \u043c\u04d9\u0442\u0456\u043d\u0434\u0456\u043a \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u044b \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0441\u0430, \u043d\u04d9\u0442\u0438\u0436\u0435\u0441\u0456\u043d\u0434\u0435 \u0442\u0438\u0456\u043c\u0434\u0456 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0431\u0435\u0439\u043d\u0435\u043d\u0456\u04a3 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u044b\u049b\u0442\u0438\u043c\u0430\u043b\u0434\u044b\u0493\u044b\u043d \u043a\u0435\u043c\u0456\u0442\u0435\u0434\u0456.",
"TabSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
- "TabChapters": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440",
- "HeaderDownloadChaptersFor": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0441\u0430\u0445\u043d\u0430\u043b\u0430\u0440 \u0430\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u0443:",
"LabelOpenSubtitlesUsername": "Open Subtitles \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b:",
"LabelOpenSubtitlesPassword": "Open Subtitles \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456:",
- "HeaderChapterDownloadingHelp": "Emby \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0433\u0435\u043d\u0434\u0435 \u0431\u04b1\u043b \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d ChapterDb \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0430\u0445\u043d\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u043e\u04a3\u0430\u0439 \u0441\u0430\u0445\u043d\u0430 \u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
- "LabelPlayDefaultAudioTrack": "\u0422\u0456\u043b\u0433\u0435 \u049b\u0430\u0442\u044b\u0441\u0441\u044b\u0437 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0434\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u0493\u044b\u043d \u043e\u0439\u043d\u0430\u0442\u0443",
- "LabelSubtitlePlaybackMode": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456:",
"LabelDownloadLanguages": "\u0416\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0430\u0442\u044b\u043d \u0442\u0456\u043b\u0434\u0435\u0440:",
"ButtonRegister": "\u0422\u0456\u0440\u043a\u0435\u043b\u0443",
+ "LabelSkipIfGraphicalSubsPresent": "\u0415\u0433\u0435\u0440 \u0431\u0435\u0439\u043d\u0435\u0434\u0435 \u0441\u044b\u0437\u0431\u0430\u043b\u044b\u049b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0431\u043e\u043b\u0441\u0430 \u04e9\u0442\u043a\u0456\u0437\u0456\u043f \u0436\u0456\u0431\u0435\u0440\u0443",
+ "LabelSkipIfGraphicalSubsPresentHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456\u04a3 \u043c\u04d9\u0442\u0456\u043d\u0434\u0456\u043a \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u044b \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0441\u0430, \u043d\u04d9\u0442\u0438\u0436\u0435\u0441\u0456\u043d\u0434\u0435 \u0442\u0438\u0456\u043c\u0434\u0456 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0431\u0435\u0439\u043d\u0435\u043d\u0456\u04a3 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u044b\u049b\u0442\u0438\u043c\u0430\u043b\u0434\u044b\u0493\u044b\u043d \u043a\u0435\u043c\u0456\u0442\u0435\u0434\u0456.",
"LabelSkipIfAudioTrackPresent": "\u0415\u0433\u0435\u0440 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0434\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u0493\u044b \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0430\u0442\u044b\u043d \u0442\u0456\u043b\u0433\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0441\u0435 \u04e9\u0442\u043a\u0456\u0437\u0456\u043f \u0436\u0456\u0431\u0435\u0440\u0443",
"LabelSkipIfAudioTrackPresentHelp": "\u0411\u0430\u0440\u043b\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0435, \u0434\u044b\u0431\u044b\u0441 \u0442\u0456\u043b\u0456\u043d\u0435 \u049b\u0430\u0442\u044b\u0441\u0441\u044b\u0437, \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0431\u043e\u043b\u0493\u0430\u043d\u044b\u043d\u0430 \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.",
+ "NotificationOptionNewLibraryContentMultiple": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d \u049b\u043e\u0441\u044b\u043b\u0434\u044b (\u043a\u04e9\u043f\u0442\u0435\u0433\u0435\u043d)",
"HeaderSendMessage": "\u0425\u0430\u0431\u0430\u0440 \u0436\u0456\u0431\u0435\u0440\u0443",
"ButtonSend": "\u0416\u0456\u0431\u0435\u0440\u0443",
"LabelMessageText": "\u0425\u0430\u0431\u0430\u0440 \u043c\u04d9\u0442\u0456\u043d\u0456",
+ "LabelService": "\u049a\u044b\u0437\u043c\u0435\u0442:",
+ "LabelStatus": "\u041a\u04af\u0439:",
+ "LabelVersion": "\u041d\u04b1\u0441\u049b\u0430:",
+ "LabelLastResult": "\u0421\u043e\u04a3\u0493\u044b \u043d\u04d9\u0442\u0438\u0436\u0435:",
+ "ButtonOsd": "\u042d\u043a\u0440\u0430\u043d\u0434\u044b\u049b \u043c\u04d9\u0437\u0456\u0440\u0433\u0435",
"MessageNoAvailablePlugins": "\u049a\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440 \u0436\u043e\u049b",
"LabelDisplayPluginsFor": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0434\u0456 \u043c\u044b\u043d\u0430\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "\u0411\u04e9\u043b\u0456\u043c \u0430\u0442\u0430\u0443\u044b",
- "LabelSeriesNamePlain": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0430\u0442\u0430\u0443\u044b",
"ValueSeriesNamePeriod": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f.\u0430\u0442\u0430\u0443\u044b",
"ValueSeriesNameUnderscore": "\u0422\u043e\u043f\u0442\u0430\u043c\u0430_\u0430\u0442\u0430\u0443\u044b",
"ValueEpisodeNamePeriod": "\u0411\u04e9\u043b\u0456\u043c.\u0430\u0442\u044b",
"ValueEpisodeNameUnderscore": "\u0411\u04e9\u043b\u0456\u043c_\u0430\u0442\u044b",
- "LabelSeasonNumberPlain": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
- "LabelEpisodeNumberPlain": "\u0411\u04e9\u043b\u0456\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
- "LabelEndingEpisodeNumberPlain": "\u0410\u044f\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0456\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456",
"HeaderTypeText": "\u041c\u04d9\u0442\u0456\u043d\u0434\u0456 \u0435\u043d\u0433\u0456\u0437\u0443",
"LabelTypeText": "\u041c\u04d9\u0442\u0456\u043d",
+ "OptionDefaultSubtitles": "\u04d8\u0434\u0435\u043f\u043a\u0456",
+ "OptionOnlyForcedSubtitles": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u043c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
+ "OptionAlwaysPlaySubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u04d9\u0440\u049b\u0430\u0448\u0430\u043d \u043e\u0439\u043d\u0430\u0442\u0443",
+ "OptionDefaultSubtitlesHelp": "\u0422\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0434\u044b\u0431\u044b\u0441 \u0448\u0435\u0442\u0435\u043b \u0442\u0456\u043b\u0456\u043d\u0434\u0435 \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
+ "OptionOnlyForcedSubtitlesHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u043c\u04d9\u0436\u0431\u04af\u0440\u043b\u0456 \u0434\u0435\u043f \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
+ "OptionAlwaysPlaySubtitlesHelp": "\u0422\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456\u043d\u0435 \u0441\u04d9\u0439\u043a\u0435\u0441 \u043a\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0434\u044b\u0431\u044b\u0441 \u0442\u0456\u043b\u0456\u043d\u0435 \u049b\u0430\u0442\u044b\u0441\u0441\u044b\u0437 \u0436\u04af\u043a\u0442\u0435\u043b\u0435\u0434\u0456.",
+ "OptionNoSubtitlesHelp": "\u04d8\u0434\u0435\u043f\u043a\u0456\u0434\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u0436\u04af\u043a\u0442\u0435\u043b\u043c\u0435\u0439\u0434\u0456.",
+ "TangibleSoftwareMessage": "\u0421\u044b\u0439\u043b\u0430\u043d\u0493\u0430\u043d \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u044f \u0430\u0440\u049b\u044b\u043b\u044b Tangible Solutions Java\/C# \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0433\u0456\u0448\u0442\u0435\u0440\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0434\u0430.",
+ "HeaderCredits": "\u049a\u04b1\u049b\u044b\u049b \u0438\u0435\u043b\u0435\u043d\u0443\u0448\u0456\u043b\u0435\u0440",
+ "TabCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440",
+ "TabFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
+ "TabMyLibrary": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043c",
+ "LabelCustomizeOptionsPerMediaType": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u04af\u0440\u0456 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u0443:",
+ "LabelPlayDefaultAudioTrack": "\u0422\u0456\u043b\u0433\u0435 \u049b\u0430\u0442\u044b\u0441\u0441\u044b\u0437 \u04d9\u0434\u0435\u043f\u043a\u0456 \u0434\u044b\u0431\u044b\u0441 \u0436\u043e\u043b\u0448\u044b\u0493\u044b\u043d \u043e\u0439\u043d\u0430\u0442\u0443",
+ "LabelSubtitlePlaybackMode": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456:",
+ "TabOther": "\u0411\u0430\u0441\u049b\u0430\u043b\u0430\u0440",
+ "NotificationOptionVideoPlaybackStopped": "\u0411\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b",
+ "NotificationOptionAudioPlaybackStopped": "\u0414\u044b\u0431\u044b\u0441 \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b",
+ "NotificationOptionGamePlaybackStopped": "\u041e\u0439\u044b\u043d \u043e\u0439\u043d\u0430\u0442\u0443\u044b \u0442\u043e\u049b\u0442\u0430\u0442\u044b\u043b\u0434\u044b",
"HeaderSearchForSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440\u0434\u0456 \u0456\u0437\u0434\u0435\u0443",
- "ButtonMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
"MessageNoSubtitleSearchResultsFound": "\u0406\u0437\u0434\u0435\u0433\u0435\u043d\u0434\u0435 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b.",
"TabDisplay": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
"TabLanguages": "\u0422\u0456\u043b\u0434\u0435\u0440",
- "TabAppSettings": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"LabelEnableThemeSongs": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
"LabelEnableBackdrops": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
"LabelEnableThemeSongsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0448\u043e\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0442\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440 \u04e9\u04a3\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b.",
"LabelEnableBackdropsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0430\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0448\u043e\u043b\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0431\u0456\u0440 \u0431\u0435\u0442\u0442\u0435\u0440\u0434\u0435 \u04e9\u04a3\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
- "HeaderHomePage": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442",
- "HeaderSettingsForThisDevice": "\u041e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
"OptionAuto": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b",
"OptionYes": "\u0418\u04d9",
"OptionNo": "\u0416\u043e\u049b",
- "HeaderOptions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440",
- "HeaderIdentificationResult": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u0441\u0456",
"LabelHomePageSection1": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 1-\u0431\u04e9\u043b\u0456\u043c:",
"LabelHomePageSection2": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 2-\u0431\u04e9\u043b\u0456\u043c:",
"LabelHomePageSection3": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 3-\u0431\u04e9\u043b\u0456\u043c:",
- "LabelHomePageSection4": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 4-\u0431\u04e9\u043b\u0456\u043c:",
- "OptionMyMediaButtons": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c (\u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440)",
- "OptionMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c",
- "OptionMyMediaSmall": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c (\u044b\u049b\u0448\u0430\u043c)",
"OptionResumablemedia": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
"OptionLatestMedia": "\u0415\u04a3 \u043a\u0435\u0439\u043d\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
- "OptionLatestChannelMedia": "\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",
- "HeaderLatestChannelItems": "\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",
"OptionNone": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439",
"HeaderLiveTv": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414",
"HeaderReports": "\u0411\u0430\u044f\u043d\u0430\u0442\u0442\u0430\u0440",
"HeaderMetadataManager": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0440\u0435\u0442\u0442\u0435\u0443\u0448\u0456",
- "HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
"MessageLoadingChannels": "\u0410\u0440\u043d\u0430\u043d\u044b\u04a3 \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u0443\u0434\u0435...",
- "MessageLoadingContent": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0436\u04af\u043a\u0442\u0435\u043b\u0443\u0434\u0435...",
"ButtonMarkRead": "\u041e\u049b\u044b\u043b\u0493\u0430\u043d \u0434\u0435\u043f \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u0443",
"OptionDefaultSort": "\u04d8\u0434\u0435\u043f\u043a\u0456",
"OptionCommunityMostWatchedSort": "\u0415\u04a3 \u043a\u04e9\u043f \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d\u0434\u0430\u0440",
"TabNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
- "PlaceholderUsername": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b",
- "HeaderBecomeProjectSupporter": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b \u0431\u043e\u043b\u044b\u04a3\u044b\u0437",
"MessageNoMovieSuggestionsAvailable": "\u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u0444\u0438\u043b\u044c\u043c \u04b1\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440\u044b \u0430\u0493\u044b\u043c\u0434\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441. \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456 \u049b\u0430\u0440\u0430\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u0434\u044b \u0431\u0430\u0441\u0442\u0430\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u04b1\u0441\u044b\u043d\u044b\u0442\u0430\u0440\u044b\u04a3\u044b\u0437\u0434\u044b \u043a\u04e9\u0440\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0439\u0442\u0430 \u043a\u0435\u043b\u0456\u04a3\u0456\u0437.",
"MessageNoCollectionsAvailable": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0441\u0456\u0437\u0433\u0435 \u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3, \u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3, \u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440\u0434\u044b\u04a3, \u041a\u0456\u0442\u0430\u043f\u0442\u0430\u0440\u0434\u044b\u04a3, \u0436\u04d9\u043d\u0435 \u041e\u0439\u044b\u043d\u0434\u0430\u0440\u0434\u044b\u04a3 \u0434\u0435\u0440\u0431\u0435\u0441\u0442\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u043e\u043f\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043c\u0435\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0436\u0430\u0441\u0430\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \"+\" \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u0456\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437.",
- "MessageNoPlaylistsAvailable": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0456\u0440 \u043a\u0435\u0437\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u0436\u0430\u0441\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0433\u0435 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \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 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u043f \u0436\u04d9\u043d\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443 \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
- "MessageNoPlaylistItemsAvailable": "\u041e\u0441\u044b \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c \u0430\u0493\u044b\u043c\u0434\u0430\u0493\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0431\u043e\u0441.",
+ "ButtonClose": "\u0416\u0430\u0431\u0443",
+ "HeaderConfirmDeletion": "\u0416\u043e\u044e\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443",
+ "HeaderHomePage": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442",
+ "HeaderSettingsForThisDevice": "\u041e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
"ButtonDismiss": "\u049a\u0430\u0431\u044b\u043b\u0434\u0430\u043c\u0430\u0443",
+ "ButtonMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
"ButtonEditOtherUserPreferences": "\u041e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b\u04a3 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043d, \u0441\u0443\u0440\u0435\u0442\u0456\u043d \u0436\u04d9\u043d\u0435 \u04e9\u0437\u0456\u043d\u0434\u0456\u043a \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u04e9\u04a3\u0434\u0435\u0443.",
+ "TitleChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
"LabelChannelStreamQuality": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0456:",
"LabelChannelStreamQualityHelp": "\u04e8\u0442\u043a\u0456\u0437\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456 \u0442\u04e9\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u0434\u0430, \u0436\u0430\u0442\u044b\u049b \u0441\u0435\u0437\u0456\u043c\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443\u0493\u0430 \u043a\u0435\u043f\u0456\u043b\u0434\u0456\u043a \u0431\u0435\u0440\u0443 \u04af\u0448\u0456\u043d, \u0441\u0430\u043f\u0430\u043d\u044b \u0448\u0435\u043a\u0442\u0435\u0443 \u043a\u04e9\u043c\u0435\u043a \u0431\u0435\u0440\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.",
"OptionBestAvailableStreamQuality": "\u049a\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u04a3 \u0436\u0430\u049b\u0441\u044b",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0436\u043e\u0439\u044b\u043b\u0443\u044b \u043a\u0435\u043b\u0435\u0441\u0456\u0434\u0435\u043d \u043a\u0435\u0439\u0456\u043d, \u043a\u04af\u043d:",
"LabelChannelDownloadAgeHelp": "\u0411\u04b1\u0434\u0430\u043d \u0431\u04b1\u0440\u044b\u043d\u0493\u044b \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u044b\u043d\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04af\u043d \u0436\u043e\u0439\u044b\u043b\u0430\u0434\u044b. \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u04d9\u0434\u0456\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u043e\u0439\u043d\u0430\u0442\u0443 \u0456\u0441\u0442\u0435 \u049b\u0430\u043b\u0430\u0434\u044b.",
"ChannelSettingsFormHelp": "\u041f\u043b\u0430\u0433\u0438\u043d \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u043c\u0435\u0441\u0456\u043d\u0434\u0435\u0433\u0456 Trailers \u0436\u04d9\u043d\u0435 Vimeo \u0441\u0438\u044f\u049b\u0442\u044b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
- "ButtonOptions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0493\u0430",
- "ViewTypePlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456",
+ "ButtonAddToCollection": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443",
+ "ButtonSubmit": "\u0416\u0456\u0431\u0435\u0440\u0443",
"ViewTypeMovies": "\u041a\u0438\u043d\u043e",
"ViewTypeTvShows": "\u0422\u0414",
"ViewTypeGames": "\u041e\u0439\u044b\u043d\u0434\u0430\u0440",
"ViewTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
- "ViewTypeMusicGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
- "ViewTypeMusicArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
"ViewTypeBoxSets": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440",
- "ViewTypeChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
- "ViewTypeLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414",
- "ViewTypeLiveTvNowPlaying": "\u042d\u0444\u0438\u0440\u0434\u0435",
- "ViewTypeLatestGames": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u043e\u0439\u044b\u043d\u0434\u0430\u0440",
- "ViewTypeRecentlyPlayedGames": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430\u0440",
- "ViewTypeGameFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
- "ViewTypeGameSystems": "\u041e\u0439\u044b\u043d \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456",
- "ViewTypeGameGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
- "ViewTypeTvResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
- "ViewTypeTvNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
- "ViewTypeTvLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456",
- "ViewTypeTvShowSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440",
- "ViewTypeTvGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
- "ViewTypeTvFavoriteSeries": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440",
- "ViewTypeTvFavoriteEpisodes": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
- "ViewTypeMovieResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
- "ViewTypeMovieLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456",
- "ViewTypeMovieMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
- "ViewTypeMovieCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440",
- "ViewTypeMovieFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
- "ViewTypeMovieGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
- "ViewTypeMusicLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456",
- "ViewTypeMusicPlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456",
- "ViewTypeMusicAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
- "ViewTypeMusicAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b",
"HeaderOtherDisplaySettings": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
- "ViewTypeMusicSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440",
- "ViewTypeMusicFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
- "ViewTypeMusicFavoriteAlbums": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0430\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
- "ViewTypeMusicFavoriteArtists": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
- "ViewTypeMusicFavoriteSongs": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440",
- "HeaderMyViews": "\u041c\u0435\u043d\u0456\u04a3 \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u0456\u043c",
"LabelSelectFolderGroups": "\u041a\u0435\u043b\u0435\u0441\u0456 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u0434\u0430\u0493\u044b \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u041a\u0438\u043d\u043e, \u041c\u0443\u0437\u044b\u043a\u0430 \u0436\u04d9\u043d\u0435 \u0422\u0414 \u0441\u0438\u044f\u049b\u0442\u044b \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u0433\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0442\u043e\u043f\u0442\u0430\u0441\u0442\u044b\u0440\u0443:",
"LabelSelectFolderGroupsHelp": "\u0411\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0431\u0435\u0433\u0435\u043d \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u04e9\u0437 \u0431\u0435\u0442\u0456\u043c\u0435\u043d \u04e9\u0437\u0456\u043d\u0456\u04a3 \u0430\u0441\u043f\u0435\u043a\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
+ "ViewTypeChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
+ "ViewTypeLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414",
"OptionDisplayAdultContent": "\u0415\u0440\u0435\u0441\u0435\u043a \u043c\u0430\u0437\u043c\u04b1\u043d\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443",
+ "MessageNoChapterProviders": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0441\u0430\u0445\u043d\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d ChapterDb \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0430\u0445\u043d\u0430\u043b\u0430\u0440 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0456 \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437.",
+ "TabChapters": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440",
+ "HeaderDownloadChaptersFor": "\u041c\u044b\u043d\u0430\u0493\u0430\u043d \u0441\u0430\u0445\u043d\u0430\u043b\u0430\u0440 \u0430\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u0443:",
+ "HeaderChapterDownloadingHelp": "Emby \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0433\u0435\u043d\u0434\u0435 \u0431\u04b1\u043b \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d ChapterDb \u0441\u0438\u044f\u049b\u0442\u044b \u0441\u0430\u0445\u043d\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u043e\u04a3\u0430\u0439 \u0441\u0430\u0445\u043d\u0430 \u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
"OptionLibraryFolders": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b",
+ "LabelHomePageSection4": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442 4-\u0431\u04e9\u043b\u0456\u043c:",
+ "OptionLatestChannelMedia": "\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",
+ "HeaderLatestChannelItems": "\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",
"TitleRemoteControl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443",
+ "HeaderMyViews": "\u041c\u0435\u043d\u0456\u04a3 \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u0456\u043c",
"OptionLatestTvRecordings": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
+ "ButtonRefresh": "\u0416\u0430\u04a3\u0493\u044b\u0440\u0442\u0443",
"LabelProtocolInfo": "\u041f\u0440\u043e\u0442\u043e\u049b\u043e\u043b \u0442\u0443\u0440\u0430\u043b\u044b:",
"LabelProtocolInfoHelp": "\u0411\u04b1\u043b \u043c\u04d9\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b\u04a3 GetProtocolInfo \u0441\u04b1\u0440\u0430\u043d\u044b\u0441\u0442\u0430\u0440\u044b\u043d\u0430 \u0436\u0430\u0443\u0430\u043f \u0431\u0435\u0440\u0433\u0435\u043d\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.",
- "TabNfo": "NFO-\u0444\u0430\u0439\u043b\u0434\u0430\u0440",
- "HeaderKodiMetadataHelp": "NFO \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u04af\u0448\u0456\u043d Emby \u043a\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u043c\u0435 \u049b\u043e\u043b\u0434\u0430\u0443\u044b\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b. NFO \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443 \u043d\u0435\u043c\u0435\u0441\u0435 \u04e9\u0448\u0456\u0440\u0443 \u04af\u0448\u0456\u043d, \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u04af\u0440\u043b\u0435\u0440\u0456\u043d\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u049b\u043e\u0439\u044b\u043d\u0434\u044b\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.",
- "LabelKodiMetadataUser": "NFO-\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u043c\u044b\u043d\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u0430\u0440\u0430\u0443 \u043a\u04af\u0439\u0456\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443:",
- "LabelKodiMetadataUserHelp": "Emby Server \u0436\u04d9\u043d\u0435 NFO-\u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u043a\u04af\u0439 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043f \u0442\u04b1\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u04b1\u043d\u044b \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.",
- "LabelKodiMetadataDateFormat": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456\u043d\u0456\u04a3 \u043f\u0456\u0448\u0456\u043c\u0456:",
- "LabelKodiMetadataDateFormatHelp": "\u041e\u0441\u044b \u043f\u0456\u0448\u0456\u043c\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f nfo \u0456\u0448\u0456\u043d\u0434\u0435\u0433\u0456 \u0431\u0430\u0440\u043b\u044b\u049b \u043a\u04af\u043d\u0434\u0435\u0440\u0456 \u043e\u049b\u044b\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0436\u0430\u0437\u044b\u043b\u0430\u0434\u044b.",
- "LabelKodiMetadataSaveImagePaths": "\u0421\u0443\u0440\u0435\u0442 \u0436\u043e\u043b\u0434\u0430\u0440\u044b\u043d NFO-\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u0443",
- "LabelKodiMetadataSaveImagePathsHelp": "\u0415\u0433\u0435\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 Kodi \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b \u04b1\u0441\u0442\u0430\u043d\u044b\u043c\u0434\u0430\u0440\u044b\u043d\u0430 \u0441\u0430\u0439 \u043a\u0435\u043b\u043c\u0435\u0433\u0435\u043d \u0430\u0442\u0430\u0443\u043b\u0430\u0440\u044b \u0431\u043e\u043b\u0441\u0430, \u0431\u04b1\u043b \u04b1\u0441\u044b\u043d\u044b\u043b\u0430\u0434\u044b.",
- "LabelKodiMetadataEnablePathSubstitution": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0436\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443 \u0442\u0435\u04a3\u0448\u0435\u0443\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 \u0436\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0430\u0434\u044b.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u0430\u0440\u0430\u0443.",
- "OptionDisplayChannelsInline": "\u041c\u0435\u043d\u0456\u04a3 \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u0456\u043c \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043f \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
- "OptionDisplayChannelsInlineHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0431\u0430\u0441\u049b\u0430 \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456. \u0415\u0433\u0435\u0440 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0441\u0430, \u043e\u043b\u0430\u0440 \u0431\u04e9\u043b\u0435\u043a \u0410\u0440\u043d\u0430\u043b\u0430\u0440 \u0430\u0441\u043f\u0435\u043a\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
"LabelDisplayCollectionsView": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440 \u0436\u0438\u043d\u0430\u049b\u0442\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440 \u0430\u0441\u043f\u0435\u043a\u0442\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
- "LabelDisplayCollectionsViewHelp": "\u0411\u04b1\u043b \u0441\u0456\u0437 \u0436\u0430\u0441\u0430\u0493\u0430\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u04af\u0448\u0456\u043d \u0431\u04e9\u043b\u0435\u043a \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0456 \u0436\u0430\u0441\u0430\u0439\u0434\u044b. \u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u044b \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d, \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0444\u0438\u043b\u044c\u043c\u043d\u0456\u04a3 \u04af\u0441\u0442\u0456\u043d\u0434\u0435 \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \"\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443\" \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
- "LabelKodiMetadataEnableExtraThumbs": "\u04d8\u0434\u0435\u043f\u043a\u0456 extrafanart \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d extrathumbs \u0456\u0448\u0456\u043d\u0435 \u043a\u04e9\u0448\u0456\u0440\u0443",
- "LabelKodiMetadataEnableExtraThumbsHelp": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u0433\u0435\u043d \u043a\u0435\u0437\u0434\u0435, \u043e\u043b\u0430\u0440 Kodi \u049b\u0430\u0431\u044b\u0493\u044b\u043c\u0435\u043d \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u0441\u0438\u044b\u0441\u044b\u043c\u0434\u044b\u0493\u044b \u04af\u0448\u0456\u043d extrafanart \u0436\u04d9\u043d\u0435 extrathumbs \u0435\u043a\u0435\u0443\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
+ "HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
"TabServices": "\u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
"TabLogs": "\u0416\u04b1\u0440\u043d\u0430\u043b\u0434\u0430\u0440",
"HeaderServerLogFiles": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0436\u04b1\u0440\u043d\u0430\u043b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b:",
@@ -1029,6 +820,8 @@
"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.",
+ "TabUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
+ "TabScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b",
"HeaderHttpHeaders": "HTTP \u04af\u0441\u0442\u0456\u04a3\u0433\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u043b\u0435\u0440\u0456",
"HeaderIdentificationHeader": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443\u0434\u044b\u04a3 \u04af\u0441\u0442\u0456\u04a3\u0433\u0456 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u043c\u0435\u0441\u0456",
"LabelValue": "\u041c\u04d9\u043d\u0456:",
@@ -1041,19 +834,19 @@
"TabFilter": "\u0421\u04af\u0437\u0443",
"ButtonView": "\u049a\u0430\u0440\u0430\u0443",
"LabelPageSize": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440 \u0448\u0435\u0433\u0456:",
- "LabelPath": "\u0416\u043e\u043b\u044b:",
"LabelView": "\u041a\u04e9\u0440\u0456\u043d\u0456\u0441:",
- "TabUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
- "LabelSortName": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0430\u0442\u044b:",
- "LabelDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456",
+ "LabelManagement": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
"HeaderFeatures": "\u0415\u0440\u0435\u043a\u0448\u0435\u043b\u0456\u043a\u0442\u0435\u0440",
"HeaderAdvanced": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d",
"ButtonSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
- "TabScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0443\u0448\u044b",
"HeaderChapters": "\u0421\u0430\u0445\u043d\u0430\u043b\u0430\u0440",
"HeaderResumeSettings": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"TabSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"TitleUsers": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
+ "LabelMaxStreamingBitrate": "\u0415\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
+ "LabelMaxStreamingBitrateHelp": "\u0410\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
+ "LabelMaxStaticBitrate": "\u0415\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
+ "LabelMaxStaticBitrateHelp": "\u0416\u043e\u0493\u0430\u0440\u044b \u0441\u0430\u043f\u0430\u043c\u0435\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437.",
"LabelProtocol": "\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b:",
"OptionProtocolHttp": "HTTP",
"OptionProtocolHls": "Http \u0422\u0456\u043a\u0435\u043b\u0435\u0439 \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 (HLS)",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "\u0410\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443",
"OptionContextStatic": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"ButtonAddToPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443",
+ "MessageNoPlaylistsAvailable": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0456\u0440 \u043a\u0435\u0437\u0434\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0442\u0456\u0437\u0456\u043c\u0456\u043d \u0436\u0430\u0441\u0430\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0435\u0434\u0456. \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0433\u0435 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \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 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u043f \u0436\u04d9\u043d\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437, \u0441\u043e\u043d\u0434\u0430 \u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456\u043d\u0435 \u04af\u0441\u0442\u0435\u0443 \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
+ "MessageNoPlaylistItemsAvailable": "\u041e\u0441\u044b \u043e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c \u0430\u0493\u044b\u043c\u0434\u0430\u0493\u044b \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0431\u043e\u0441.",
"TabPlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456",
- "ButtonClose": "\u0416\u0430\u0431\u0443",
"LabelAllLanguages": "\u0411\u0430\u0440\u043b\u044b\u049b \u0442\u0456\u043b\u0434\u0435\u0440",
"HeaderBrowseOnlineImages": "\u0416\u0435\u043b\u0456\u043b\u0456\u043a \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0448\u043e\u043b\u0443",
"LabelSource": "\u049a\u0430\u0439\u043d\u0430\u0440 \u043a\u04e9\u0437\u0456:",
@@ -1080,7 +874,6 @@
"OptionBox": "\u049a\u043e\u0440\u0430\u043f",
"OptionBoxRear": "\u049a\u043e\u0440\u0430\u043f \u0430\u0440\u0442\u044b",
"OptionDisc": "\u0414\u0438\u0441\u043a\u0456",
- "OptionIcon": "\u0411\u0435\u043b\u0433\u0456\u0448\u0435",
"OptionLogo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
"OptionMenu": "\u041c\u04d9\u0437\u0456\u0440",
"OptionScreenshot": "\u042d\u043a\u0440\u0430\u043d \u0441\u0443\u0440\u0435\u0442\u0456",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "\u0410\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d\u0434\u0430\u0440",
"OptionMissingParentalRating": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442 \u0436\u043e\u049b",
"OptionStub": "\u0422\u044b\u0493\u044b\u043d",
+ "HeaderEpisodes": "\u0411\u04e9\u043b\u0456\u043c\u0434\u0435\u0440:",
"OptionSeason0": "0-\u043c\u0430\u0443\u0441\u044b\u043c",
"LabelReport": "\u0411\u0430\u044f\u043d\u0430\u0442:",
"OptionReportSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
"OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
"OptionReportAdultVideos": "\u0415\u0440\u0435\u0441\u0435\u043a \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0456",
+ "ButtonMoreItems": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a",
"HeaderActivity": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440",
"ScheduledTaskStartedWithName": "{0} \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0434\u044b",
"ScheduledTaskCancelledWithName": "{0} \u0431\u043e\u043b\u0434\u044b\u0440\u044b\u043b\u043c\u0430\u0434\u044b",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 {0} \u04af\u0448\u0456\u043d \u0436\u04af\u043a\u0442\u0435\u043b\u0456\u043f \u0430\u043b\u044b\u043d\u0443\u044b \u0441\u04d9\u0442\u0441\u0456\u0437",
"LabelRunningTimeValue": "\u0406\u0441\u043a\u0435 \u049b\u043e\u0441\u044b\u043b\u0443 \u0443\u0430\u049b\u044b\u0442\u044b: {0}",
"LabelIpAddressValue": "IP \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b: {0}",
- "UserLockedOutWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u044b",
"UserConfigurationUpdatedWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b",
"UserCreatedWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d",
"UserPasswordChangedWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u04af\u0448\u0456\u043d \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437 \u04e9\u0437\u0433\u0435\u0440\u0442\u0456\u043b\u0434\u0456",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0434\u044b.",
"AuthenticationSucceededWithUserName": "{0} \u0442\u04af\u043f\u043d\u04b1\u0441\u049b\u0430\u043b\u044b\u0493\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u043b\u0443\u044b \u0441\u04d9\u0442\u0442\u0456",
"FailedLoginAttemptWithUserName": "{0} \u043a\u0456\u0440\u0443 \u04d9\u0440\u0435\u043a\u0435\u0442\u0456 \u0441\u04d9\u0442\u0441\u0456\u0437",
- "UserDownloadingItemWithValues": "{0} \u043c\u044b\u043d\u0430\u043d\u044b \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u0430: {1}",
"UserStartedPlayingItemWithValues": "{0} - {1} \u043e\u0439\u043d\u0430\u0442\u0443\u044b\u043d \u0431\u0430\u0441\u0442\u0430\u0434\u044b",
"UserStoppedPlayingItemWithValues": "{0} - {1} \u043e\u0439\u043d\u0430\u0442\u0443\u044b\u043d \u0442\u043e\u049b\u0442\u0430\u0442\u0442\u044b",
"AppDeviceValues": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430: {0}, \u049a\u04b1\u0440\u044b\u043b\u0493\u044b: {1}",
"ProviderValue": "\u0416\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456: {0}",
+ "HeaderAudio": "\u0414\u044b\u0431\u044b\u0441",
+ "HeaderVideo": "\u0411\u0435\u0439\u043d\u0435",
+ "MessageLoadingContent": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0436\u04af\u043a\u0442\u0435\u043b\u0443\u0434\u0435...",
"LabelChannelDownloadSizeLimit": "\u0416\u04af\u043a\u0442\u0435\u043c\u0435 \u04e9\u043b\u0448\u0435\u043c\u0456\u043d\u0456\u04a3 \u0448\u0435\u0433\u0456 (GB)",
- "LabelChannelDownloadSizeLimitHelpText": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u0442\u0430\u0440\u044b\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u043b\u0442\u0430\u0441\u044b \u04e9\u043b\u0448\u0435\u043c\u0456\u043d \u0448\u0435\u043a\u0442\u0435\u0443.",
+ "LabelMusicStaticBitrate": "\u041c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
+ "LabelMusicStaticBitrateHelp": "\u041c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0443",
+ "LabelMusicStreamingTranscodingBitrate": "\u041c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "\u041c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437",
"HeaderRecentActivity": "\u041a\u0435\u0438\u0456\u043d\u0433\u0456 \u04d9\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440",
"HeaderPeople": "\u0410\u0434\u0430\u043c\u0434\u0430\u0440",
"HeaderDownloadPeopleMetadataFor": "\u04e8\u043c\u0456\u0440\u0431\u0430\u044f\u043d \u0431\u0435\u043d \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443 \u043c\u0430\u049b\u0441\u0430\u0442\u044b;",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "\u041a\u04d9\u0434\u0456\u043c\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u049a\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0441\u043f\u0435\u043a\u0442\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
"ViewTypeLiveTvRecordingGroups": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440",
"ViewTypeLiveTvChannels": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440",
- "LabelEasyPinCode": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434:",
- "EasyPasswordHelp": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u044b\u04a3\u044b\u0437 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d\u0430\u043d \u0434\u0435\u0440\u0431\u0435\u0441 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b, \u0436\u04d9\u043d\u0435 \u0436\u0435\u043b\u0456 \u0456\u0448\u0456\u043d\u0434\u0435 \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u044b\u043f \u043a\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
- "LabelInNetworkSignInWithEasyPassword": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u044b\u043c \u0430\u0440\u049b\u044b\u043b\u044b \u0436\u0435\u043b\u0456 \u0456\u0448\u0456\u043d\u0434\u0435 \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u044b\u043f \u043a\u0456\u0440\u0443\u0434\u0456 \u049b\u043e\u0441\u0443",
- "LabelInNetworkSignInWithEasyPasswordHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u04af\u0439 \u0436\u0435\u043b\u0456\u0441\u0456 \u0456\u0448\u0456\u043d\u0435\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u043a\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u044b\u04a3\u044b\u0437\u0434\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d. \u0421\u0456\u0437\u0434\u0456\u04a3 \u049b\u0430\u043b\u044b\u043f\u0442\u044b \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u04af\u0439 \u0441\u044b\u0440\u0442\u044b\u043d\u0434\u0430 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b. \u0415\u0433\u0435\u0440 PIN-\u043a\u043e\u0434 \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0441\u0430, \u04af\u0439 \u0436\u0435\u043b\u0456\u0441\u0456\u043d\u0434\u0435 \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u043c\u0430\u0439\u0434\u044b.",
"HeaderPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437",
"HeaderLocalAccess": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u049b\u0430\u0442\u044b\u043d\u0430\u0443",
"HeaderViewOrder": "\u0410\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0456",
- "ButtonResetEasyPassword": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u0442\u044b \u044b\u0441\u044b\u0440\u0443",
"LabelSelectUserViewOrder": "Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d\u0434\u0430 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0442\u0456\u043d \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440 \u0440\u0435\u0442\u0456\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437",
+ "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:",
+ "FolderTypeMixed": "\u0410\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",
+ "LabelArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440:",
+ "LabelArtistsHelp": "\u0411\u0456\u0440\u043d\u0435\u0448\u0443\u0456\u043d (;) \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u04e9\u043b\u0456\u04a3\u0456\u0437",
+ "ButtonAdvancedRefresh": "\u041a\u0435\u04a3\u0435\u0439\u0442\u0456\u043b\u0433\u0435\u043d \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443",
+ "LabelPersonRole": "\u0420\u04e9\u043b\u0456:",
+ "LabelPersonRoleHelp": "\u0420\u04e9\u043b, \u0436\u0430\u043b\u043f\u044b \u0430\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0430\u043a\u0442\u0435\u0440\u043b\u0435\u0440\u0433\u0435 \u049b\u043e\u043b\u0430\u0439\u043b\u044b.",
+ "LabelPath": "\u0416\u043e\u043b\u044b:",
+ "LabelSortName": "\u0421\u04b1\u0440\u044b\u043f\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0430\u0442\u044b:",
+ "LabelDateAdded": "\u04ae\u0441\u0442\u0435\u043b\u0433\u0435\u043d \u043a\u04af\u043d\u0456",
"LabelMetadataRefreshMode": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443 \u0440\u0435\u0436\u0456\u043c\u0456:",
"LabelImageRefreshMode": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u04a3\u0493\u044b\u0440\u0442\u0443 \u0440\u0435\u0436\u0456\u043c\u0456:",
"OptionDownloadMissingImages": "\u0416\u043e\u049b \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "\u0422\u04b1\u043b\u0493\u0430 \u0442\u0443\u0440\u0430\u043b\u044b",
"HeaderIdentifyItem": "\u0422\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u0443",
"HeaderIdentifyItemHelp": "\u0406\u0437\u0434\u0435\u0443\u0434\u0456\u04a3 \u0431\u0456\u0440 \u043d\u0435 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0448\u0430\u0440\u0442\u044b\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437. \u0406\u0437\u0434\u0435\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440\u0456\u043d \u043a\u04e9\u0431\u0435\u0439\u0442\u0443 \u04af\u0448\u0456\u043d \u0448\u0430\u0440\u0442\u0442\u044b \u0430\u043b\u0430\u0441\u0442\u0430\u04a3\u044b\u0437.",
- "HeaderConfirmDeletion": "\u0416\u043e\u044e\u0434\u044b \u0440\u0430\u0441\u0442\u0430\u0443",
"LabelFollowingFileWillBeDeleted": "\u041a\u0435\u043b\u0435\u0441\u0456 \u0444\u0430\u0439\u043b \u0436\u043e\u0439\u044b\u043b\u0430\u0434\u044b:",
"LabelIfYouWishToContinueWithDeletion": "\u0415\u0433\u0435\u0440 \u0436\u0430\u043b\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u0430\u043b\u0430\u0441\u0430\u04a3\u044b\u0437, \u043c\u044b\u043d\u0430\u043d\u044b\u04a3 \u043c\u04d9\u043d\u0456\u043d \u0435\u043d\u0433\u0456\u0437\u0456\u043f \u0440\u0430\u0441\u0442\u0430\u04a3\u044b\u0437:",
"ButtonIdentify": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443",
"LabelAlbumArtist": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u0441\u044b:",
- "LabelAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b:",
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c:",
"LabelCommunityRating": "\u049a\u0430\u0443\u044b\u043c \u0431\u0430\u0493\u0430\u043b\u0430\u0443\u044b:",
"LabelVoteCount": "\u0414\u0430\u0443\u044b\u0441 \u0435\u0441\u0435\u0431\u0456:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456 \u0441\u04e9\u0439\u043b\u0435\u043c:",
"LabelOverview": "\u0416\u0430\u043b\u043f\u044b \u0448\u043e\u043b\u0443:",
"LabelShortOverview": "\u049a\u044b\u0441\u049b\u0430\u0448\u0430 \u0448\u043e\u043b\u0443:",
- "LabelReleaseDate": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456:",
- "LabelYear": "\u0416\u044b\u043b\u044b:",
"LabelPlaceOfBirth": "\u0422\u0443\u0493\u0430\u043d \u0436\u0435\u0440\u0456:",
- "LabelEndDate": "\u0410\u044f\u049b\u0442\u0430\u043b\u0443 \u043a\u04af\u043d\u0456:",
"LabelAirDate": "\u042d\u0444\u0438\u0440 \u043a\u04af\u043d\u0434\u0435\u0440\u0456:",
"LabelAirTime:": "\u042d\u0444\u0438\u0440 \u0443\u0430\u049b\u044b\u0442\u044b",
"LabelRuntimeMinutes": "\u04b0\u0437\u0430\u049b\u0442\u044b\u0493\u044b, \u043c\u0438\u043d:",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"LabelLockItemToPreventChanges": "\u041e\u0441\u044b \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u044b \u043a\u0435\u043b\u0435\u0448\u0435\u043a \u04e9\u0437\u0433\u0435\u0440\u0442\u0443\u043b\u0435\u0440\u0434\u0435\u043d \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443",
"MessageLeaveEmptyToInherit": "\u0422\u0435\u043a\u0442\u0456\u043a \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u043d, \u043d\u0435\u043c\u0435\u0441\u0435 \u0493\u0430\u043b\u0430\u043c\u0434\u044b\u049b \u04d9\u0434\u0435\u043f\u043a\u0456 \u043c\u04d9\u043d\u0456\u043d\u0435\u043d\u0456. \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u043c\u04b1\u0440\u0430\u0441\u044b\u043d\u0430 \u0438\u0435\u043b\u0435\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
- "TabDonate": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b",
"HeaderDonationType": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u0442\u04af\u0440\u0456:",
"OptionMakeOneTimeDonation": "\u0411\u04e9\u043b\u0435\u043a \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u0436\u0430\u0441\u0430\u0443",
- "OptionOneTimeDescription": "\u0411\u04b1\u043b \u049b\u043e\u043b\u0434\u0430\u0443\u044b\u04a3\u044b\u0437\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u043e\u043f\u049b\u0430 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b. \u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u0440 \u0431\u043e\u043b\u043c\u0430\u0439\u0434\u044b \u0436\u04d9\u043d\u0435 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456 \u0436\u0430\u0441\u0430\u043b\u043c\u0430\u0439\u0434\u044b.",
- "OptionLifeTimeSupporterMembership": "\u0492\u04b1\u043c\u044b\u0440\u043b\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
- "OptionYearlySupporterMembership": "\u0416\u044b\u043b\u0434\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
- "OptionMonthlySupporterMembership": "\u0410\u0439\u043b\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
"OptionNoTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0441\u0456\u0437",
"OptionNoThemeSong": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u04d9\u0443\u0435\u043d\u0441\u0456\u0437",
"OptionNoThemeVideo": "\u0422\u0430\u049b\u044b\u0440\u044b\u043f\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435\u0441\u0456\u0437",
"LabelOneTimeDonationAmount": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b \u049b\u043e\u0440\u044b\u0442\u044b\u043d\u0434\u044b\u0441\u044b:",
- "ButtonDonate": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0430\u0443",
- "ButtonPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443",
"OptionActor": "\u0410\u043a\u0442\u0435\u0440",
"OptionComposer": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440",
"OptionDirector": "\u0420\u0435\u0436\u0438\u0441\u0441\u0435\u0440",
"OptionGuestStar": "\u0428\u0430\u049b\u044b\u0440\u044b\u043b\u0493\u0430\u043d \u0430\u043a\u0442\u0435\u0440",
"OptionProducer": "\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440",
"OptionWriter": "\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0439\u0448\u0456",
+ "LabelEpisodeNamePlain": "\u0411\u04e9\u043b\u0456\u043c \u0430\u0442\u0430\u0443\u044b",
+ "LabelSeriesNamePlain": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f \u0430\u0442\u0430\u0443\u044b",
+ "LabelSeasonNumberPlain": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
+ "LabelEpisodeNumberPlain": "\u0411\u04e9\u043b\u0456\u043c \u043d\u04e9\u043c\u0456\u0440\u0456",
+ "LabelEndingEpisodeNumberPlain": "\u0410\u044f\u049b\u0442\u0430\u0443\u0448\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0456\u04a3 \u043d\u04e9\u043c\u0456\u0440\u0456",
+ "OptionOneTimeDescription": "\u0411\u04b1\u043b \u049b\u043e\u043b\u0434\u0430\u0443\u044b\u04a3\u044b\u0437\u0434\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u043e\u043f\u049b\u0430 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b. \u0415\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u0440 \u0431\u043e\u043b\u043c\u0430\u0439\u0434\u044b \u0436\u04d9\u043d\u0435 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u0456\u043b\u0442\u0456 \u0436\u0430\u0441\u0430\u043b\u043c\u0430\u0439\u0434\u044b.",
"LabelAirDays": "\u042d\u0444\u0438\u0440 \u043a\u04af\u043d\u0434\u0435\u0440\u0456:",
"LabelAirTime": "\u042d\u0444\u0438\u0440 \u0443\u0430\u049b\u044b\u0442\u044b:",
"HeaderMediaInfo": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u0442\u0443\u0440\u0430\u043b\u044b",
"HeaderRevisionHistory": "\u04e8\u0437\u0433\u0435\u0440\u0456\u0441\u0442\u0435\u0440 \u0442\u0430\u0440\u0438\u0445\u044b",
"ButtonViewWebsite": "\u0421\u0430\u0439\u0442\u044b\u043d\u0430",
+ "ViewTypeLiveTvNowPlaying": "\u042d\u0444\u0438\u0440\u0434\u0435",
+ "ViewTypeLatestGames": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u043e\u0439\u044b\u043d\u0434\u0430\u0440",
+ "ViewTypeRecentlyPlayedGames": "\u0416\u0430\u049b\u044b\u043d\u0434\u0430 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430\u0440",
+ "ViewTypeGameFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
+ "ViewTypeGameSystems": "\u041e\u0439\u044b\u043d \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0456",
+ "ViewTypeGameGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
+ "ViewTypeTvResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
+ "ViewTypeTvNextUp": "\u041a\u0435\u0437\u0435\u043a\u0442\u0456",
+ "ViewTypeTvLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456",
+ "ViewTypeTvGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
+ "ViewTypeMovieResume": "\u0416\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u043c\u0430\u043b\u044b",
+ "ViewTypeMovieLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456",
+ "ViewTypeMovieMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
+ "ViewTypeMovieCollections": "\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440",
+ "ViewTypeMovieFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
+ "ViewTypeMovieGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
+ "ViewTypeMusicLatest": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456",
+ "ViewTypeMusicAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
+ "ViewTypeMusicAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b",
+ "TabDonate": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0434\u044b\u049b",
+ "OptionLifeTimeSupporterMembership": "\u0492\u04b1\u043c\u044b\u0440\u043b\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
+ "OptionYearlySupporterMembership": "\u0416\u044b\u043b\u0434\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
+ "OptionMonthlySupporterMembership": "\u0410\u0439\u043b\u044b\u049b \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456",
+ "ViewTypeTvShowSeries": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440",
+ "ViewTypeTvFavoriteSeries": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0442\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440",
+ "ViewTypeTvFavoriteEpisodes": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0431\u04e9\u043b\u0456\u043c\u0434\u0435\u0440",
"HeaderXmlSettings": "XML \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"HeaderXmlDocumentAttributes": "XML-\u049b\u04b1\u0436\u0430\u0442 \u0442\u04e9\u043b\u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440\u044b",
"HeaderXmlDocumentAttribute": "XML-\u049b\u04b1\u0436\u0430\u0442 \u0442\u04e9\u043b\u0441\u0438\u043f\u0430\u0442\u044b",
"XmlDocumentAttributeListHelp": "\u041e\u0441\u044b \u0442\u04e9\u043b\u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0440 \u04d9\u0440\u0431\u0456\u0440 XML \u04af\u043d \u049b\u0430\u0442\u0443\u043b\u0430\u0440\u0434\u044b\u04a3 \u0442\u04af\u0431\u0456\u0440 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0456 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b.",
"OptionSaveMetadataAsHidden": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043c\u0435\u043d \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u0430\u0441\u044b\u0440\u044b\u043d \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u0443",
+ "ViewTypeMusicSongs": "\u04d8\u0443\u0435\u043d\u0434\u0435\u0440",
"LabelExtractChaptersDuringLibraryScan": "\u0421\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443 \u043c\u0435\u0437\u0433\u0456\u043b\u0456\u043d\u0434\u0435 \u0448\u044b\u0493\u0430\u0440\u044b\u043f \u0430\u043b\u0443",
"LabelExtractChaptersDuringLibraryScanHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443 \u043c\u0435\u0437\u0433\u0456\u043b\u0456\u043d\u0434\u0435, \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u0441\u044b\u0440\u0442\u0442\u0430\u043d \u0430\u043b\u044b\u043d\u0493\u0430\u043d\u0434\u0430, \u0431\u04e9\u043b\u0456\u043d\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b. \u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0431\u04b1\u043b\u0430\u0440 \u0441\u0430\u0445\u043d\u0430 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d\u0435 \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u0441\u044b \u043c\u0435\u0437\u0433\u0456\u043b\u0456\u043d\u0434\u0435, \u0442\u04b1\u0440\u0430\u049b\u0442\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0456\u043d \u0436\u044b\u043b\u0434\u0430\u043c\u044b\u0440\u0430\u049b \u0430\u044f\u049b\u0442\u0430\u043b\u0443\u044b \u04b1\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0456\u043f, \u0431\u04e9\u043b\u0456\u043d\u0456\u043f \u0430\u043b\u044b\u043d\u0430\u0434\u044b.",
- "LabelConnectGuestUserName": "\u041e\u043d\u044b\u04a3 Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b:",
+ "ViewTypeMusicFavorites": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b\u043b\u0430\u0440",
+ "ViewTypeMusicFavoriteAlbums": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0430\u043b\u044c\u0431\u043e\u043c\u0434\u0430\u0440",
+ "ViewTypeMusicFavoriteArtists": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
+ "ViewTypeMusicFavoriteSongs": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u04d9\u0443\u0435\u043d\u0434\u0435\u0440",
+ "ButtonAddLocalUser": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
+ "HeaderIdentification": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443",
"LabelConnectUserName": "Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \/ \u044d-\u043f\u043e\u0448\u0442\u0430\u0441\u044b:",
- "LabelConnectUserNameHelp": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 IP \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0431\u0456\u043b\u043c\u0435\u0439 \u0442\u04b1\u0440\u044b\u043f \u04d9\u0440\u049b\u0430\u0439\u0441\u044b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b\u043d\u0430\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d \u043a\u0456\u0440\u0443-\u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u043e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437.",
- "ButtonLearnMoreAboutEmbyConnect": "Emby Connect \u0442\u0443\u0440\u0430\u043b\u044b \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443",
+ "LabelConnectUserNameHelp": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 IP \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b\u043d \u0431\u0456\u043b\u043c\u0435\u0439 \u0442\u04b1\u0440\u044b\u043f \u04d9\u0440\u049b\u0430\u0439\u0441\u044b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u0441\u044b\u043d\u0430\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d \u043a\u0456\u0440\u0443-\u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u043e\u0441\u044b \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0436\u0435\u043b\u0456\u043b\u0456\u043a Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d\u0435 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u04a3\u044b\u0437.",
+ "ButtonNext": "\u041a\u0435\u043b\u0435\u0441\u0456\u0433\u0435",
+ "ButtonPrevious": "\u0410\u043b\u0434\u044b\u04a3\u0493\u044b\u0493\u0430",
"LabelExternalPlayers": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440:",
"LabelExternalPlayersHelp": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440\u0434\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443. \u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 URL \u0441\u0445\u0435\u043c\u0430\u043b\u0430\u0440\u044b\u043d \u049b\u043e\u043b\u0434\u0430\u0439\u0442\u044b\u043d, \u04d9\u0434\u0435\u0442\u0442\u0435, Android \u0436\u04d9\u043d\u0435 iOS, \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456. \u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440, \u049b\u0430\u0493\u0438\u0434\u0430 \u0431\u043e\u0439\u044b\u043d\u0448\u0430, \u0430\u043b\u044b\u0441\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443\u0434\u044b \u0436\u04d9\u043d\u0435 \u0436\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u043b\u0434\u0430\u043c\u0430\u0439\u0434\u044b.",
- "LabelNativeExternalPlayersHelp": "\u041c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0441\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440\u043c\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443.",
- "LabelEnableItemPreviews": "\u0422\u0430\u0440\u043c\u0430\u049b \u043d\u043e\u0431\u0430\u0439\u043b\u0430\u0440\u044b\u043d \u049b\u043e\u0441\u0443",
- "LabelEnableItemPreviewsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0440\u0434\u0430 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u043d\u04b1\u049b\u044b\u0493\u0430\u043d \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0441\u044b\u0440\u0493\u044b\u043c\u0430\u043b\u044b \u043d\u043e\u0431\u0430\u0439\u043b\u0430\u0440 \u0448\u044b\u0493\u0430 \u043a\u0435\u043b\u0435\u0434\u0456.",
+ "ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
"HeaderSubtitleProfile": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b",
"HeaderSubtitleProfiles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b",
"HeaderSubtitleProfilesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b \u043e\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0434\u0430 \u049b\u043e\u043b\u0434\u0430\u0443\u044b \u0431\u0430\u0440 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440 \u043f\u0456\u0448\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u0441\u0438\u043f\u0430\u0442\u0442\u0430\u0439\u0434\u044b.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "HLS \u0431\u04e9\u043b\u0448\u0435\u043a\u0442\u0435\u043b\u0433\u0435\u043d \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
"LabelSubtitleFormatHelp": "\u041c\u044b\u0441\u0430\u043b: srt",
"ButtonLearnMore": "\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443",
+ "HeaderKodiMetadataHelp": "NFO \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u04af\u0448\u0456\u043d Emby \u043a\u0456\u0440\u0456\u043a\u0442\u0456\u0440\u043c\u0435 \u049b\u043e\u043b\u0434\u0430\u0443\u044b\u043d \u049b\u0430\u043c\u0442\u0438\u0434\u044b. NFO \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443 \u043d\u0435\u043c\u0435\u0441\u0435 \u04e9\u0448\u0456\u0440\u0443 \u04af\u0448\u0456\u043d, \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0442\u04af\u0440\u043b\u0435\u0440\u0456\u043d\u0435 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0442\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u049b\u043e\u0439\u044b\u043d\u0434\u044b\u0441\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u04a3\u044b\u0437.",
+ "LabelKodiMetadataUser": "NFO-\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u043c\u044b\u043d\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u0430\u0440\u0430\u0443 \u043a\u04af\u0439\u0456\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443:",
+ "LabelKodiMetadataUserHelp": "Emby Server \u0436\u04d9\u043d\u0435 NFO-\u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u043a\u04af\u0439 \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043f \u0442\u04b1\u0440\u0443 \u04af\u0448\u0456\u043d \u0431\u04b1\u043d\u044b \u049b\u043e\u0441\u044b\u04a3\u044b\u0437.",
+ "LabelKodiMetadataDateFormat": "\u0428\u044b\u0493\u0430\u0440\u0443 \u043a\u04af\u043d\u0456\u043d\u0456\u04a3 \u043f\u0456\u0448\u0456\u043c\u0456:",
+ "LabelKodiMetadataDateFormatHelp": "\u041e\u0441\u044b \u043f\u0456\u0448\u0456\u043c\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f nfo \u0456\u0448\u0456\u043d\u0434\u0435\u0433\u0456 \u0431\u0430\u0440\u043b\u044b\u049b \u043a\u04af\u043d\u0434\u0435\u0440\u0456 \u043e\u049b\u044b\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0436\u0430\u0437\u044b\u043b\u0430\u0434\u044b.",
+ "LabelKodiMetadataSaveImagePaths": "\u0421\u0443\u0440\u0435\u0442 \u0436\u043e\u043b\u0434\u0430\u0440\u044b\u043d NFO-\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b\u043d\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u0443",
+ "LabelKodiMetadataSaveImagePathsHelp": "\u0415\u0433\u0435\u0440 \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 Kodi \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u049b \u04b1\u0441\u0442\u0430\u043d\u044b\u043c\u0434\u0430\u0440\u044b\u043d\u0430 \u0441\u0430\u0439 \u043a\u0435\u043b\u043c\u0435\u0433\u0435\u043d \u0430\u0442\u0430\u0443\u043b\u0430\u0440\u044b \u0431\u043e\u043b\u0441\u0430, \u0431\u04b1\u043b \u04b1\u0441\u044b\u043d\u044b\u043b\u0430\u0434\u044b.",
+ "LabelKodiMetadataEnablePathSubstitution": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0436\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443 \u0442\u0435\u04a3\u0448\u0435\u0443\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043f \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 \u0436\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0430\u0434\u044b.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "\u0416\u043e\u043b \u0430\u043b\u043c\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u0430\u0440\u0430\u0443.",
+ "LabelKodiMetadataEnableExtraThumbs": "\u04d8\u0434\u0435\u043f\u043a\u0456 extrafanart \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043d extrathumbs \u0456\u0448\u0456\u043d\u0435 \u043a\u04e9\u0448\u0456\u0440\u0443",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "\u0421\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u0433\u0435\u043d \u043a\u0435\u0437\u0434\u0435, \u043e\u043b\u0430\u0440 Kodi \u049b\u0430\u0431\u044b\u0493\u044b\u043c\u0435\u043d \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u0441\u0438\u044b\u0441\u044b\u043c\u0434\u044b\u0493\u044b \u04af\u0448\u0456\u043d extrafanart \u0436\u04d9\u043d\u0435 extrathumbs \u0435\u043a\u0435\u0443\u0456\u043d\u0434\u0435 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
"TabPlayback": "\u041e\u0439\u043d\u0430\u0442\u0443",
"HeaderLanguagePreferences": "\u0422\u0456\u043b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456",
"TabCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443",
"LabelEnableIntroParentalControl": "\u0417\u0438\u044f\u0442\u0442\u044b \u0430\u0442\u0430-\u0430\u043d\u0430\u043b\u044b\u049b \u0431\u0430\u049b\u044b\u043b\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"LabelEnableIntroParentalControlHelp": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0436\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u044b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430 \u0442\u0435\u04a3 \u043d\u0435\u043c\u0435\u0441\u0435 \u043a\u0435\u043c \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u04a3\u0434\u0430\u043b\u0430\u0434\u044b.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0493\u0430 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043d \u0436\u04d9\u043d\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0430\u0440\u043d\u0430\u0441\u044b \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.",
"OptionTrailersFromMyMoviesHelp": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u043e\u0440\u043d\u0430\u0442\u0443\u044b\u043d \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.",
"LabelCustomIntrosPath": "\u0422\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u04e9\u0440\u043d\u0435\u0443\u043b\u0435\u0440 \u0436\u043e\u043b\u044b:",
"LabelCustomIntrosPathHelp": "\u0411\u0435\u0439\u043d\u0435 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0431\u0430\u0440 \u049b\u0430\u043b\u0442\u0430. \u0411\u0435\u0439\u043d\u0435 \u043a\u0435\u0437\u0434\u0435\u0439\u0441\u043e\u049b \u0442\u0430\u04a3\u0434\u0430\u043b\u0430\u0434\u044b \u0434\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0435\u043d \u043a\u0435\u0439\u0456\u043d \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0430\u0434\u044b.",
- "ValueSpecialEpisodeName": "\u0410\u0440\u043d\u0430\u0439\u044b - {0}",
+ "ButtonOptions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0493\u0430",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u041e\u0441\u044b \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u0442\u0430\u0440\u0493\u0430 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456\u043d \u0436\u04d9\u043d\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0430\u0440\u043d\u0430\u0441\u044b \u043f\u043b\u0430\u0433\u0438\u043d\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u0443 \u049b\u0430\u0436\u0435\u0442 \u0435\u0442\u0435\u0434\u0456.",
"LabelSelectInternetTrailersForCinemaMode": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0456:",
"OptionUpcomingDvdMovies": "\u0416\u04d9\u04a3\u0430 \u0436\u04d9\u043d\u0435 \u043a\u04af\u0442\u0456\u043b\u0433\u0435\u043d DVD \u0436\u04d9\u043d\u0435 BluRay \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0456\u043d\u0434\u0435\u0433\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0456\u043d \u049b\u0430\u043c\u0442\u0443",
"OptionUpcomingStreamingMovies": "\u0416\u04d9\u04a3\u0430 \u0436\u04d9\u043d\u0435 \u043a\u04af\u0442\u0456\u043b\u0433\u0435\u043d Netflix \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0456\u043d\u0434\u0435\u0433\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0456\u043d \u049b\u0430\u043c\u0442\u0443",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "\u0416\u0435\u043a\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u0430 \u04e9\u0437\u0456\u043d\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456 \u0430\u0440\u049b\u044b\u043b\u044b \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456\u043d \u0430\u0436\u044b\u0440\u0430\u0442\u0443 \u049b\u0430\u0431\u0456\u043b\u0435\u0442\u0456 \u0431\u043e\u043b\u0430\u0434\u044b.",
"LabelEnableCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456\u043d \u049b\u043e\u0441\u0443",
"HeaderCinemaMode": "\u041a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440 \u0440\u0435\u0436\u0456\u043c\u0456",
+ "TabDevices": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440",
+ "LabelLocalHttpServerPortNumber": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 http-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:",
+ "LabelLocalHttpServerPortNumberHelp": "Emby HTTP-\u0441\u0435\u0440\u0432\u0435\u0440\u0456 \u0431\u0430\u0439\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0493\u0430 \u0442\u0438\u0456\u0441\u0442\u0456 TCP-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.",
+ "LabelEnableAutomaticPortMap": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u043f\u043e\u0440\u0442 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443\u044b\u043d \u049b\u043e\u0441\u0443",
+ "LabelEnableAutomaticPortMapHelp": "\u0416\u0430\u0440\u0438\u044f \u043f\u043e\u0440\u0442\u0442\u044b \u0436\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u043e\u0440\u0442\u049b\u0430 UPnP \u0430\u0440\u049b\u044b\u043b\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u0441\u0430\u043b\u0493\u0430\u0441\u0442\u044b\u0440\u0443 \u04d9\u0440\u0435\u043a\u0435\u0442\u0456. \u0411\u04b1\u043b \u043a\u0435\u0439\u0431\u0456\u0440 \u0436\u043e\u043b \u0436\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u044b\u0448 \u04b1\u043b\u0433\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u043c\u0435\u0439\u0442\u0456\u043d\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
"LabelDateAddedBehavior": "\u0416\u0430\u04a3\u0430 \u043c\u0430\u0437\u043c\u04b1\u043d \u04af\u0448\u0456\u043d \u049b\u043e\u0441\u044b\u043b\u0493\u0430\u043d \u043a\u04af\u043d\u0456 \u0442\u04d9\u0440\u0442\u0456\u0431\u0456:",
"OptionDateAddedImportTime": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0456\u0448\u0456\u043d\u0435 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443 \u043a\u04af\u043d\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443",
"OptionDateAddedFileTime": "\u0424\u0430\u0439\u043b\u0434\u044b\u04a3 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u043a\u04af\u043d\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443",
"LabelDateAddedBehaviorHelp": "\u0415\u0433\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0435 \u043c\u04d9\u043d\u0456 \u0431\u043e\u043b\u0441\u0430, \u0431\u04b1\u043b \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u043e\u0441\u044b \u043d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u043b\u0434\u044b\u043d\u0434\u0430 \u04d9\u0440\u049b\u0430\u0448\u0430\u043d\u0434\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.",
"LabelNumberTrailerToPlay": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0434\u0456\u04a3 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443 \u04af\u0448\u0456\u043d \u0441\u0430\u043d\u044b:",
+ "LabelChannelDownloadSizeLimitHelpText": "\u0410\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u0442\u0430\u0440\u044b\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u043b\u0442\u0430\u0441\u044b \u04e9\u043b\u0448\u0435\u043c\u0456\u043d \u0448\u0435\u043a\u0442\u0435\u0443.",
"TitleDevices": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440",
"TabCameraUpload": "\u041a\u0430\u043c\u0435\u0440\u0430\u043b\u0430\u0440",
- "TabDevices": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440",
"HeaderCameraUploadHelp": "\u04b0\u0442\u049b\u044b\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440 \u043c\u0435\u043d \u0431\u0435\u0439\u043d\u0435\u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b Emby \u0456\u0448\u0456\u043d\u0435 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443.",
"MessageNoDevicesSupportCameraUpload": "\u0410\u0493\u044b\u043c\u0434\u0430 \u043a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u044b\u043f \u0431\u0435\u0440\u0435\u0442\u0456\u043d \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b\u04a3\u044b\u0437 \u0436\u043e\u049b.",
"LabelCameraUploadPath": "\u041a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443 \u0436\u043e\u043b\u044b:",
"LabelCameraUploadPathHelp": "\u049a\u0430\u043b\u0430\u0443\u044b\u04a3\u044b\u0437 \u0431\u043e\u0439\u044b\u043d\u0448\u0430 \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u0443 \u0436\u043e\u043b\u0434\u044b \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437. \u0415\u0433\u0435\u0440 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0441\u0430, \u04d9\u0434\u0435\u043f\u043a\u0456 \u049b\u0430\u043b\u0442\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \u0415\u0433\u0435\u0440 \u0442\u0435\u04a3\u0448\u0435\u043b\u0435\u0442\u0456\u043d \u0436\u043e\u043b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0441\u0430, \u0431\u04b1\u043d\u044b \u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b \u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043d\u044b \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443 \u0430\u0439\u043c\u0430\u0493\u044b\u043d\u0430 \u04af\u0441\u0442\u0435\u0443 \u049b\u0430\u0436\u0435\u0442.",
"LabelCreateCameraUploadSubfolder": "\u04d8\u0440\u049b\u0430\u0439\u0441\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u04af\u0448\u0456\u043d \u0456\u0448\u043a\u0456 \u049b\u0430\u043b\u0442\u0430 \u0436\u0430\u0441\u0430\u0443",
"LabelCreateCameraUploadSubfolderHelp": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u0431\u0435\u0442\u0456\u043d\u0434\u0435 \u043d\u04b1\u049b\u044b\u0493\u0430\u043d\u0434\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u043d\u0430\u049b\u0442\u044b \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0442\u0430\u0493\u0430\u0439\u044b\u043d\u0434\u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
+ "ButtonInviteUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0448\u0430\u049b\u044b\u0440\u0443",
"LabelCustomDeviceDisplayName": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0443 \u0430\u0442\u044b:",
"LabelCustomDeviceDisplayNameHelp": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0442\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0430\u0442\u044b\u043d \u04b1\u0441\u044b\u043d\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u0430\u044f\u043d\u0434\u0430\u043b\u0493\u0430\u043d \u0430\u0442\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
"HeaderInviteUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u0448\u0430\u049b\u044b\u0440\u0443",
- "LabelConnectGuestUserNameHelp": "\u0411\u04b1\u043b \u0434\u043e\u0441\u04a3\u044b\u0437\u0434\u044b\u04a3 Emby \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u043a\u0456\u0440\u0433\u0435\u043d\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u0430\u0442\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
"HeaderInviteUserHelp": "Emby Connect \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0434\u043e\u0441\u0442\u0430\u0440\u044b\u04a3\u044b\u0437\u0431\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u0431\u04b1\u0440\u044b\u043d\u0493\u044b\u0434\u0430\u043d \u0434\u0430 \u0436\u0435\u04a3\u0456\u043b\u0434\u0435\u0443 \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
"ButtonSendInvitation": "\u0428\u0430\u049b\u044b\u0440\u044b\u043c\u0434\u044b \u0436\u0456\u0431\u0435\u0440\u0443",
- "HeaderSignInWithConnect": "Emby Connect \u0430\u0440\u049b\u044b\u043b\u044b \u043a\u0456\u0440\u0443",
"HeaderGuests": "\u049a\u043e\u043d\u0430\u049b\u0442\u0430\u0440",
"HeaderLocalUsers": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
"HeaderPendingInvitations": "\u0411\u04e9\u0433\u0435\u043b\u0456\u0441 \u0448\u0430\u049b\u044b\u0440\u044b\u043c\u0434\u0430\u0440",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "\u0410\u043f\u0442\u0430 \u043a\u04af\u043d\u0434\u0435\u0440\u0456",
"OptionWeekends": "\u0414\u0435\u043c\u0430\u043b\u044b\u0441 \u043a\u04af\u043d\u0434\u0435\u0440\u0456",
"MessageProfileInfoSynced": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u043f\u0440\u043e\u0444\u0430\u0439\u043b \u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456 Emby Connect \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0434\u0456.",
- "HeaderOptionalLinkEmbyAccount": "\u041c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441: Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0431\u0435\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u0443",
"ButtonTrailerReel": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u043f\u0441\u044b\u0440\u0443",
"HeaderTrailerReel": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u0436\u0430\u043f\u0441\u044b\u0440\u0443",
"OptionPlayUnwatchedTrailersOnly": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u0430\u0440\u0430\u043b\u043c\u0430\u0493\u0430\u043d \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440 \u0442\u0430\u0431\u044b\u043b\u043c\u0430\u0434\u044b. \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0445\u0430\u043d\u0430\u0441\u044b\u043d \u04af\u0441\u0442\u0435\u043f \u0444\u0438\u043b\u044c\u043c \u0441\u0435\u0437\u0456\u043c\u0456\u04a3\u0456\u0437\u0434\u0456 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u0443 \u04af\u0448\u0456\u043d \u0422\u0440\u0435\u0439\u043b\u0435\u0440 \u0430\u0440\u043d\u0430\u0441\u044b\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u04a3\u044b\u0437",
"HeaderNewUsers": "\u0416\u0430\u04a3\u0430 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440",
"ButtonSignUp": "\u0422\u0456\u0440\u043a\u0435\u043b\u0443",
+ "LabelConnectGuestUserName": "\u041e\u043d\u044b\u04a3 Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b:",
+ "LabelConnectGuestUserNameHelp": "\u0411\u04b1\u043b \u0434\u043e\u0441\u04a3\u044b\u0437\u0434\u044b\u04a3 Emby \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u043a\u0456\u0440\u0433\u0435\u043d\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u0430\u0442\u044b\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u044d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
"ButtonForgotPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0435\u0441\u043a\u0435 \u0441\u0430\u043b\u0443",
"OptionDisableUserPreferences": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d\u0435 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u0430\u0436\u044b\u0440\u0430\u0442\u0443",
"OptionDisableUserPreferencesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b\u043d, \u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0456\u043d, \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0435\u0440\u0456\u043d \u0436\u04d9\u043d\u0435 \u0442\u0456\u043b\u0434\u0456\u043a \u0442\u0435\u04a3\u0448\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u04d9\u043a\u0456\u043c\u0448\u0456\u043b\u0435\u0440 \u0442\u0435\u04a3\u0448\u0435\u0443\u0456 \u043c\u04af\u043c\u043a\u0456\u043d.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448 \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
"MessageGuestSharingPermissionsHelp": "\u041c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0434\u0456\u04a3 \u043a\u04e9\u0431\u0456 \u04d9\u0434\u0435\u043f\u043a\u0456\u0434\u0435 \u049b\u043e\u043d\u0430\u049b\u0442\u0430\u0440\u0493\u0430 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456 \u0435\u043c\u0435\u0441, \u0431\u0456\u0440\u0430\u049b \u043a\u0435\u0440\u0435\u043a \u0431\u043e\u043b\u0441\u0430 \u049b\u043e\u0441\u044b\u043b\u0430\u0434\u044b.",
"HeaderInvitations": "\u0428\u0430\u049b\u044b\u0440\u0443\u043b\u0430\u0440",
- "LabelForgotPasswordUsernameHelp": "\u0415\u0441\u043a\u0435 \u0441\u0430\u043b\u0441\u0430\u04a3\u044b\u0437, \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b\u04a3\u044b\u0437\u0434\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
"HeaderForgotPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u04b1\u043c\u044b\u0442\u044b\u04a3\u044b\u0437 \u0431\u0430?",
+ "LabelForgotPasswordUsernameHelp": "\u0415\u0441\u043a\u0435 \u0441\u0430\u043b\u0441\u0430\u04a3\u044b\u0437, \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b\u04a3\u044b\u0437\u0434\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437.",
"TitleForgotPassword": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u04b1\u043c\u044b\u0442\u044b\u04a3\u044b\u0437 \u0431\u0430?",
"TitlePasswordReset": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u044b\u0441\u044b\u0440\u0443",
"LabelPasswordRecoveryPinCode": "PIN \u043a\u043e\u0434\u044b:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "\u0416\u0430\u0441\u0442\u0430\u0441 \u0441\u0430\u043d\u0430\u0442\u0442\u0430\u0440",
"HeaderVideoTypes": "\u0411\u0435\u0439\u043d\u0435 \u0442\u04af\u0440\u043b\u0435\u0440\u0456",
"HeaderYears": "\u0416\u044b\u043b\u0434\u0430\u0440",
+ "OptionPosterCard": "\u0416\u0430\u0440\u049b\u0430\u0493\u0430\u0437-\u043a\u0430\u0440\u0442\u0430",
+ "OptionThumbCard": "\u041d\u043e\u0431\u0430\u0439-\u043a\u0430\u0440\u0442\u0430",
+ "OptionAllowRemoteSharedDevices": "\u041e\u0440\u0442\u0430\u049b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u049b\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
+ "OptionAllowRemoteSharedDevicesHelp": "DLNA-\u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0431\u0430\u0441\u049b\u0430\u0440\u0493\u0430\u043d\u0448\u0430 \u0434\u0435\u0439\u0456\u043d \u043e\u0440\u0442\u0430\u049b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0435\u0441\u0435\u043f\u0442\u0435\u043b\u0456\u043d\u0435\u0434\u0456.",
+ "HeaderRemoteControl": "\u049a\u0430\u0448\u044b\u049b\u0442\u0430\u043d \u0431\u0430\u0441\u049b\u0430\u0440\u0443",
+ "ViewTypeMusicGenres": "\u0416\u0430\u043d\u0440\u043b\u0430\u0440",
+ "ViewTypeMusicArtists": "\u041e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440",
+ "HeaderSignInWithConnect": "Emby Connect \u0430\u0440\u049b\u044b\u043b\u044b \u043a\u0456\u0440\u0443",
+ "LabelGithub": "GitHub \u0440\u0435\u043f\u043e\u0437\u0438\u0442\u043e\u0440\u0438\u0439\u0456",
+ "LabelApiDocumentation": "API \u049b\u04b1\u0436\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b",
+ "LabelDeveloperResources": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043a\u04e9\u0437\u0434\u0435\u0440\u0456",
"HeaderAddTag": "\u0422\u0435\u0433\u0442\u0456 \u049b\u043e\u0441\u0443",
- "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 \u043d\u0435\u043c\u0435\u0441\u0435 \u043e\u043b \u0442\u0430\u043d\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:",
- "LabelBlockContentWithTags": "\u041c\u044b\u043d\u0430 \u0442\u0435\u0433\u0442\u0435\u0440\u0456 \u0431\u0430\u0440 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:",
"LabelTag": "\u0422\u0435\u0433:",
+ "HeaderServerInformation": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b",
"LabelEnableSingleImageInDidlLimit": "\u0416\u0430\u043b\u0493\u044b\u0437 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0443\u0440\u0435\u0442\u043a\u0435 \u0448\u0435\u043a\u0442\u0435\u0443",
"LabelEnableSingleImageInDidlLimitHelp": "\u0415\u0433\u0435\u0440 \u0431\u0456\u0440\u043d\u0435\u0448\u0435 \u0441\u0443\u0440\u0435\u0442 DIDL \u0456\u0448\u0456\u043d\u0435 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0441\u0435, \u043a\u0435\u0439\u0431\u0456\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u0442\u0438\u0456\u0441\u0442\u0456 \u0442\u04af\u0440\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0431\u0435\u0439\u0434\u0456.",
"TabActivity": "\u04d8\u0440\u0435\u043a\u0435\u0442\u0442\u0435\u0440",
"TitleSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
+ "HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440",
"OptionAllowSyncContent": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u0433\u0435 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
- "OptionAllowContentDownloading": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
+ "FolderTypeInherit": "\u041c\u04b1\u0440\u0430\u0493\u0430 \u0438\u0435\u043b\u0435\u043d\u0443",
+ "LabelContentType": "\u041c\u0430\u0437\u043c\u04b1\u043d \u0442\u04af\u0440\u0456:",
"NameSeasonUnknown": "\u0411\u0435\u043b\u0433\u0456\u0441\u0456\u0437 \u043c\u0430\u0443\u0441\u044b\u043c",
"NameSeasonNumber": "{0}-\u0441\u0435\u0437\u043e\u043d",
"LabelNewUserNameHelp": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0434\u0430 \u04d9\u0440\u0456\u043f\u0442\u0435\u0440 (a-z), \u0441\u0430\u043d\u0434\u0430\u0440 (0-9), \u0441\u044b\u0437\u044b\u049b\u0448\u0430\u043b\u0430\u0440 (-), \u0430\u0441\u0442\u044b\u04a3\u0493\u044b \u0441\u044b\u0437\u044b\u049b\u0442\u0430\u0440 (_), \u0434\u04d9\u0439\u0435\u043a\u0448\u0435\u043b\u0435\u0440 (') \u0436\u04d9\u043d\u0435 \u043d\u04af\u043a\u0442\u0435\u043b\u0435\u0440 (.) \u0431\u043e\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d",
+ "ButtonHelp": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u0433\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043c\u0430\u0493\u0430",
+ "TabAccess": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443",
+ "HeaderDeviceAccess": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443",
+ "OptionEnableAccessFromAllDevices": "\u0411\u0430\u0440\u043b\u044b\u049b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
+ "DeviceAccessHelp": "\u0411\u04b1\u043b \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u0431\u0456\u0440\u0435\u0433\u0435\u0439 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0434\u044b \u0436\u04d9\u043d\u0435 \u0448\u043e\u043b\u0493\u044b\u0448\u043f\u0435\u043d \u049b\u0430\u043d\u0442\u044b\u043d\u0430\u0443\u0493\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u043c\u0430\u0439\u0434\u044b. \u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d\u0430\u043d \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u0441\u04af\u0437\u0433\u0456\u043b\u0435\u0443\u0456 \u0436\u0430\u04a3\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u044b \u043c\u04b1\u043d\u0434\u0430 \u0431\u0435\u043a\u0456\u0442\u0456\u043b\u0433\u0435\u043d\u0448\u0435 \u0434\u0435\u0439\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0493\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u0430\u0434\u044b.",
+ "ButtonQuickStartGuide": "\u0422\u0435\u0437 \u0431\u0430\u0441\u0442\u0430\u0443 \u043d\u04b1\u0441\u049b\u0430\u0443\u043b\u044b\u0493\u044b\u043d\u0430",
+ "HeaderSyncJobInfo": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u044b",
"TabJobs": "\u0416\u04b1\u043c\u044b\u0441\u0442\u0430\u0440",
"TabSyncJobs": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u0436\u04b1\u043c\u044b\u0441\u0442\u0430\u0440\u044b",
+ "HeaderTermsOfService": "Emby \u049b\u044b\u0437\u043c\u0435\u0442 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b",
+ "MessagePleaseAcceptTermsOfService": "\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 \u0436\u04d9\u043d\u0435 \u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u04a3\u044b\u0437.",
+ "OptionIAcceptTermsOfService": "\u049a\u044b\u0437\u043c\u0435\u0442 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d \u049b\u0430\u0431\u044b\u043b\u0434\u0430\u0439\u043c\u044b\u043d",
+ "ButtonPrivacyPolicy": "\u049a\u04b1\u043f\u0438\u044f\u043b\u044b\u043b\u044b\u049b \u0441\u0430\u044f\u0441\u0430\u0442\u044b\u043d\u0430",
+ "ButtonTermsOfService": "\u049a\u044b\u0437\u043c\u0435\u0442 \u0448\u0430\u0440\u0442\u0442\u0430\u0440\u044b\u043d\u0430",
+ "OptionHideUserFromLoginHelp": "\u0416\u0435\u043a\u0435 \u043d\u0435\u043c\u0435\u0441\u0435 \u0436\u0430\u0441\u044b\u0440\u044b\u043d \u04d9\u043a\u0456\u043c\u0448\u0456 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u043b\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u044b. \u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043c\u0435\u043d \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0434\u0456 \u0435\u043d\u0433\u0456\u0437\u0443 \u0430\u0440\u049b\u044b\u043b\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u0493\u0430 \u049b\u043e\u043b\u043c\u0435\u043d \u043a\u0456\u0440\u0443 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
+ "LabelEnterConnectUserName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435\u043c\u0435\u0441\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430:",
+ "LabelEnterConnectUserNameHelp": "\u0411\u04b1\u043b \u0441\u0456\u0437\u0434\u0456\u04a3 Emby \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b \u043d\u0435 \u042d-\u043f\u043e\u0448\u0442\u0430 \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
+ "HeaderTV": "\u0422\u0414",
+ "OptionDetectArchiveFilesAsMedia": "\u041c\u04b1\u0440\u0430\u0493\u0430\u0442\u0442\u0430\u043b\u0493\u0430\u043d \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u0434\u044b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u0443",
+ "OptionDetectArchiveFilesAsMediaHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, .rar \u0436\u04d9\u043d\u0435 .zip \u043a\u0435\u04a3\u0435\u0439\u0442\u0456\u043c\u0434\u0435\u0440\u0456 \u0431\u0430\u0440 \u0444\u0430\u0439\u043b\u0434\u0430\u0440 \u0442\u0430\u0441\u044b\u0493\u044b\u0448 \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
+ "ButtonDonate": "\u049a\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0430\u0443",
+ "HeaderOptions": "\u041d\u04b1\u0441\u049b\u0430\u043b\u0430\u0440",
+ "HeaderIdentificationResult": "\u0410\u043d\u044b\u049b\u0442\u0430\u0443 \u043d\u04d9\u0442\u0438\u0436\u0435\u0441\u0456",
+ "OptionEnableAccessToAllChannels": "\u0411\u0430\u0440\u043b\u044b\u049b \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
+ "LabelAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u0443\u043b\u0430\u0440\u0434\u044b \u049b\u043e\u0441\u0443",
+ "LabelFanartApiKey": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442:",
+ "LabelFanartApiKeyHelp": "\u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u0441\u0456\u0437 Fanart \u04af\u0448\u0456\u043d \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0433\u0435\u043d \u0441\u0430\u0443\u0430\u043b\u0434\u0430\u0440\u0493\u0430 7 \u043a\u04af\u043d\u0456\u043d\u0435\u043d \u0431\u04b1\u0440\u044b\u043d \u0440\u0430\u0441\u0442\u0430\u043b\u0493\u0430\u043d \u043d\u04d9\u0442\u0438\u0436\u0435\u043b\u0435\u0440 \u049b\u0430\u0439\u0442\u0430\u0440\u044b\u043b\u0430\u0434\u044b. \u04e8\u0437\u0456\u043d\u0434\u0456\u043a API-\u043a\u0456\u043b\u0442\u0456\u043c\u0435\u043d \u0431\u04b1\u043b 48 \u0441\u0430\u0493\u0430\u0442\u049b\u0430 \u0434\u0435\u0439\u0456\u043d \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b, \u0430\u043b,\u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b, Fanart VIP-\u043c\u04af\u0448\u0435\u0441\u0456 \u0431\u043e\u043b\u0441\u0430\u04a3\u044b\u0437, \u0431\u04b1\u043b \u0448\u0430\u043c\u0430\u043c\u0435\u043d 10 \u043c\u0438\u043d\u04e9\u0442\u043a\u0435 \u0434\u0435\u0439\u0456\u043d \u0442\u0430\u0493\u044b \u0434\u0430 \u049b\u044b\u0441\u049b\u0430\u0440\u0442\u044b\u043b\u0430\u0434\u044b.",
+ "HeaderDeveloperOptions": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
+ "OptionEnableWebClientResponseCache": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u04af\u043d \u049b\u0430\u0442\u0443 \u043a\u044d\u0448\u0442\u0435\u0443\u0456\u043d \u049b\u043e\u0441\u0443",
+ "OptionDisableForDevelopmentHelp": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430 \u043c\u044b\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u0442\u0435\u04a3\u0448\u0435\u04a3\u0456\u0437.",
+ "OptionEnableWebClientResourceMinification": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u049b\u043e\u0440\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
+ "LabelDashboardSourcePath": "\u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442 \u043a\u04e9\u0437\u0456\u043d\u0456\u04a3 \u0436\u043e\u043b\u044b:",
+ "LabelDashboardSourcePathHelp": "\u0415\u0433\u0435\u0440 \u0441\u0435\u0440\u0432\u0435\u0440 \u049b\u0430\u0439\u043d\u0430\u0440 \u043a\u043e\u0434\u044b\u043d\u0430\u043d \u0436\u04b1\u043c\u044b\u0441 \u0456\u0441\u0442\u0435\u0441\u0435, dashboard-ui \u049b\u0430\u043b\u0442\u0430\u0441\u044b\u043d\u0430 \u0436\u043e\u043b\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0412\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0456\u04a3 \u0431\u0430\u0440\u043b\u044b\u049b \u0444\u0430\u0439\u043b\u0434\u0430\u0440\u044b \u043e\u0441\u044b \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u0430\u043d \u0448\u044b\u0493\u0430\u0440\u044b\u043b\u0430\u0434\u044b.",
+ "HeaderPaths": "\u0416\u043e\u043b\u0434\u0430\u0440",
+ "TitleNotifications": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440",
+ "ButtonDonateWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u0430\u0439\u044b\u0440\u043c\u0430\u043b\u0430\u0443",
+ "TitleScheduledTasks": "\u0416\u043e\u0441\u043f\u0430\u0440\u043b\u0430\u0493\u0430\u043d \u0442\u0430\u043f\u0441\u044b\u0440\u043c\u0430\u043b\u0430\u0440",
+ "LinkApi": "API",
+ "LabelPublicHttpPort": "\u0416\u0430\u0440\u0438\u044f http-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:",
+ "LabelPublicHttpPortHelp": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 http-\u043f\u043e\u0440\u0442\u044b\u043d\u0430 \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u044b \u0442\u0438\u0456\u0441 \u0436\u0430\u0440\u0438\u044f \u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.",
+ "LabelPublicHttpsPort": "\u0416\u0430\u0440\u0438\u044f https-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:",
+ "LabelPublicHttpsPortHelp": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 https-\u043f\u043e\u0440\u0442\u044b\u043d\u0430 \u0441\u0430\u043b\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u044b \u0442\u0438\u0456\u0441 \u0436\u0430\u0440\u0438\u044f \u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.",
+ "LabelEnableHttps": "HTTPS \u0445\u0430\u0442\u0442\u0430\u043c\u0430\u0441\u044b \u0441\u044b\u0440\u0442\u049b\u044b \u043c\u0435\u043a\u0435\u043d\u0435\u0436\u0430\u0439 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0430\u044f\u043d\u0434\u0430\u0443",
+ "LabelEnableHttpsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u0441\u0435\u0440\u0432\u0435\u0440 HTTPS URL \u0441\u044b\u0440\u0442\u049b\u044b \u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0430\u044f\u043d\u0434\u0430\u0439\u0434\u044b.",
+ "LabelHttpsPort": "\u0416\u0435\u0440\u0433\u0456\u043b\u0456\u043a\u0442\u0456 https-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456:",
+ "LabelHttpsPortHelp": "Emby HTTPS-\u0441\u0435\u0440\u0432\u0435\u0440\u0456 \u0431\u0430\u0439\u043b\u0430\u0441\u0442\u044b\u0440\u044b\u043b\u0443\u0493\u0430 \u0442\u0438\u0456\u0441\u0442\u0456 TCP-\u043f\u043e\u0440\u0442 \u043d\u04e9\u043c\u0456\u0440\u0456.",
+ "TabHosting": "\u041e\u0440\u043d\u0430\u043b\u0430\u0441\u0443",
+ "LabelCustomCss": "\u0422\u0435\u04a3\u0448\u0435\u0443\u043b\u0456 CSS:",
+ "LabelCustomCssHelp": "\u04e8\u0437\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u0442\u0435\u04a3\u0448\u0435\u0443\u043b\u0456 CSS-\u043a\u043e\u0434\u044b\u043d \u0432\u0435\u0431-\u0442\u0456\u043b\u0434\u0435\u0441\u0443\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u04a3\u044b\u0437.",
+ "ButtonConvertMedia": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443",
+ "ButtonOrganize": "\u04b0\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443",
+ "ButtonJoinTheDevelopmentTeam": "\u0416\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u0442\u043e\u0431\u044b\u043d\u0430 \u043a\u0456\u0440\u0443",
+ "OptionEnableAccessToAllLibraries": "\u0411\u0430\u0440\u043b\u044b\u049b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430\u043b\u0430\u0440\u0493\u0430 \u049b\u0430\u0442\u044b\u043d\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
+ "LabelSyncTempPath": "\u0423\u0430\u049b\u044b\u0442\u0448\u0430 \u0444\u0430\u0439\u043b \u0436\u043e\u043b\u044b:",
+ "LabelSyncTempPathHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u04b1\u043c\u044b\u0441 \u049b\u0430\u043b\u0442\u0430\u043d\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u043f\u0440\u043e\u0446\u0435\u0441\u0456 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0436\u0430\u0441\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u043e\u0441\u044b \u043e\u0440\u044b\u043d\u0434\u0430 \u0441\u0430\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
+ "LabelCustomCertificatePath": "\u041a\u0443\u04d9\u043b\u0456\u043a \u0436\u043e\u043b\u044b:",
+ "LabelCustomCertificatePathHelp": "\u04e8\u0437 SSL-\u043a\u0443\u04d9\u043b\u0456\u0433\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 .pfx \u0444\u0430\u0439\u043b\u044b\u043d \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u04a3\u0456\u0437. \u0415\u0433\u0435\u0440 \u0442\u04af\u0441\u0456\u0440\u0456\u043b\u0441\u0435, \u0441\u0435\u0440\u0432\u0435\u0440 \u043c\u0435\u043d\u0448\u0456\u043a \u049b\u043e\u043b\u0442\u0430\u04a3\u0431\u0430\u0441\u044b \u0431\u0430\u0440 \u043a\u0443\u04d9\u043b\u0456\u043a\u0442\u0456 \u0436\u0430\u0441\u0430\u0439\u0434\u044b.",
+ "LabelDisplayCollectionsViewHelp": "\u0411\u04b1\u043b \u0441\u0456\u0437 \u0436\u0430\u0441\u0430\u0493\u0430\u043d \u043d\u0435\u043c\u0435\u0441\u0435 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u043c\u04af\u043c\u043a\u0456\u043d \u0436\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u04af\u0448\u0456\u043d \u0431\u04e9\u043b\u0435\u043a \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0456 \u0436\u0430\u0441\u0430\u0439\u0434\u044b. \u0416\u0438\u044b\u043d\u0442\u044b\u049b\u0442\u044b \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d, \u043a\u0435\u0437 \u043a\u0435\u043b\u0433\u0435\u043d \u0444\u0438\u043b\u044c\u043c\u043d\u0456\u04a3 \u04af\u0441\u0442\u0456\u043d\u0434\u0435 \u0442\u0456\u043d\u0442\u0443\u0456\u0440\u0434\u0456\u04a3 \u043e\u04a3 \u0436\u0430\u049b \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u0433\u043d \u0431\u0430\u0441\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0442\u04af\u0440\u0442\u0456\u04a3\u0456\u0437 \u0434\u0435 \u04b1\u0441\u0442\u0430\u043f \u0442\u04b1\u0440\u044b\u04a3\u044b\u0437 \u0436\u04d9\u043d\u0435 \"\u0416\u0438\u044b\u043d\u0442\u044b\u049b\u049b\u0430 \u04af\u0441\u0442\u0435\u0443\" \u0434\u0435\u0433\u0435\u043d\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437.",
+ "HeaderSyncRequiresSupporterMembership": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u043a \u049b\u0430\u0436\u0435\u0442",
+ "HeaderEnjoyDayTrial": "\u0422\u0435\u0433\u0456\u043d \u0441\u044b\u043d\u0430\u0443\u0434\u044b 14 \u043a\u04af\u043d \u0442\u0430\u043c\u0430\u0448\u0430\u043b\u0430\u04a3\u044b\u0456\u0437",
+ "CategorySync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
+ "RegisterWithPayPal": "PayPal \u0430\u0440\u049b\u044b\u043b\u044b \u0442\u0456\u0440\u043a\u0435\u043b\u0443",
+ "NotificationOptionCameraImageUploaded": "\u041a\u0430\u043c\u0435\u0440\u0430\u0434\u0430\u043d \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442 \u043a\u0435\u0440\u0456 \u049b\u043e\u0442\u0430\u0440\u044b\u043b\u0493\u0430\u043d",
+ "TabNfo": "NFO-\u0444\u0430\u0439\u043b\u0434\u0430\u0440",
+ "HeaderEasyPinCode": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434",
+ "LabelEasyPinCode": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434:",
+ "EasyPasswordHelp": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u044b\u04a3\u044b\u0437 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d\u0430\u043d \u0434\u0435\u0440\u0431\u0435\u0441 \u049b\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b, \u0436\u04d9\u043d\u0435 \u0436\u0435\u043b\u0456 \u0456\u0448\u0456\u043d\u0434\u0435 \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u044b\u043f \u043a\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
+ "LabelInNetworkSignInWithEasyPassword": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u044b\u043c \u0430\u0440\u049b\u044b\u043b\u044b \u0436\u0435\u043b\u0456 \u0456\u0448\u0456\u043d\u0434\u0435 \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u044b\u043f \u043a\u0456\u0440\u0443\u0434\u0456 \u049b\u043e\u0441\u0443",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u04af\u0439 \u0436\u0435\u043b\u0456\u0441\u0456 \u0456\u0448\u0456\u043d\u0435\u043d Emby \u049b\u043e\u043b\u0434\u0430\u043d\u0431\u0430\u043b\u0430\u0440\u044b\u043d\u0430 \u043a\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u044b\u04a3\u044b\u0437\u0434\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d. \u0421\u0456\u0437\u0434\u0456\u04a3 \u049b\u0430\u043b\u044b\u043f\u0442\u044b \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437 \u0442\u0435\u043a \u049b\u0430\u043d\u0430 \u04af\u0439 \u0441\u044b\u0440\u0442\u044b\u043d\u0434\u0430 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b. \u0415\u0433\u0435\u0440 PIN-\u043a\u043e\u0434 \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u043b\u0441\u0430, \u04af\u0439 \u0436\u0435\u043b\u0456\u0441\u0456\u043d\u0434\u0435 \u049b\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437\u0456\u04a3\u0456\u0437 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u043c\u0430\u0439\u0434\u044b.",
+ "ButtonResetEasyPassword": "\u041e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u0442\u044b \u044b\u0441\u044b\u0440\u0443",
+ "OptionAllowContentDownloading": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
+ "LabelBlockContentWithTags": "\u041c\u044b\u043d\u0430 \u0442\u0435\u0433\u0442\u0435\u0440\u0456 \u0431\u0430\u0440 \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:",
"LabelTagFilterMode": "\u0420\u0435\u0436\u0456\u043c:",
"LabelTagFilterAllowModeHelp": "\u0415\u0433\u0435\u0440 \u04b1\u0439\u0493\u0430\u0440\u044b\u043d\u0434\u044b \u0442\u0435\u0433\u0442\u0435\u0440 \u0442\u0435\u0440\u0435\u04a3 \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u049b\u0430\u043b\u0442\u0430 \u049b\u04b1\u0440\u044b\u043b\u044b\u043c\u044b\u043d\u044b\u04a3 \u0431\u04e9\u043b\u0456\u0433\u0456 \u0431\u043e\u043b\u0441\u0430, \u043e\u043d\u0434\u0430 \u0442\u0435\u0433\u0442\u0435\u0440\u043c\u0435\u043d \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0493\u0430, \u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0442\u0435\u043a\u0442\u0456\u043a \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0431\u043e\u043b\u0443\u044b \u0442\u0430\u043b\u0430\u043f \u0435\u0442\u0456\u043b\u0435\u0434\u0456.",
+ "UserDownloadingItemWithValues": "{0} \u043c\u044b\u043d\u0430\u043d\u044b \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443\u0434\u0430: {1}",
+ "LabelPinCode": "PIN-\u043a\u043e\u0434:",
+ "ButtonExit": "\u0428\u044b\u0493\u0443",
+ "HeaderGrownupsOnly": "\u0422\u0435\u043a \u0435\u0440\u0435\u0441\u0435\u043a\u0442\u0435\u0440!",
+ "DividerOr": "-- \u043d\u0435\u043c\u0435\u0441\u0435 --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u043e\u04a3\u0430\u0439\u0442\u044b\u043b\u0493\u0430\u043d PIN-\u043a\u043e\u0434\u0442\u044b \u0435\u043d\u0433\u0456\u0437\u0456\u04a3\u0456\u0437",
+ "KidsModeAdultInstruction": "\u0422\u0435\u04a3\u0448\u0435\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043c\u0435\u0434\u0435\u0433\u0456 \u043e\u04a3 \u0436\u0430\u049b\u0442\u0430\u0493\u044b \u049b\u04b1\u043b\u044b\u043f \u0431\u0435\u043b\u0433\u0456\u0448\u0435\u0441\u0456\u043d \u043d\u04b1\u049b\u044b\u04a3\u044b\u0437 \u043d\u0435\u043c\u0435\u0441\u0435 \u0431\u0430\u043b\u0430\u043b\u044b\u049b \u0440\u0435\u0436\u0456\u043c\u0456\u043d \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437. PIN-\u043a\u043e\u0434\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442 \u0431\u043e\u043b\u0430\u0434\u044b.",
+ "ButtonConfigurePinCode": "PIN-\u043a\u043e\u0434\u0442\u044b \u0442\u0435\u04a3\u0448\u0435\u0443",
+ "HeaderAdultsReadHere": "\u0415\u0440\u0435\u0441\u0435\u043a\u0442\u0435\u0440, \u043c\u044b\u043d\u0430\u043d\u044b \u043e\u049b\u044b\u04a3\u044b\u0437!",
+ "LabelEnableEnhancedMovies": "\u0424\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0456\u04a3 \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443",
+ "LabelEnableEnhancedMoviesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456, \u049b\u043e\u0441\u044b\u043c\u0448\u0430\u043b\u0430\u0440\u0434\u044b, \u0442\u04af\u0441\u0456\u0440\u0443\u0433\u0435 \u049b\u0430\u0442\u044b\u0441\u049b\u0430\u043d\u0434\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 \u0431\u0430\u0441\u049b\u0430 \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u049b\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u0430\u043c\u0442\u0443 \u04af\u0448\u0456\u043d, \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440 \u049b\u0430\u043b\u0442\u0430 \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456",
+ "NotificationOptionUserLockedOut": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u044b",
+ "OptionIcon": "\u0411\u0435\u043b\u0433\u0456\u0448\u0435",
+ "UserLockedOutWithName": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b {0} \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u044b",
"HeaderThisUserIsCurrentlyDisabled": "\u041e\u0441\u044b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u049b\u0430\u0437\u0456\u0440\u0433\u0456 \u043a\u0435\u0437\u0434\u0435 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0493\u0430\u043d",
"MessageReenableUser": "\u049a\u0430\u0439\u0442\u0430 \u049b\u043e\u0441\u0443 \u04af\u0448\u0456\u043d \u0442\u04e9\u043c\u0435\u043d\u0434\u0435 \u049b\u0430\u0440\u0430\u04a3\u044b\u0437",
+ "LabelTimeLimitHours": "\u0423\u0430\u049b\u044b\u0442 \u0448\u0435\u0433\u0456 (\u0441\u0430\u0493\u0430\u0442):",
+ "HeaderSendNotificationHelp": "\u0425\u0430\u0431\u0430\u0440\u043b\u0430\u043d\u0434\u044b\u0440\u0443\u043b\u0430\u0440 Emby \u043a\u0456\u0440\u0456\u0441 \u0436\u04d9\u0448\u0456\u0433\u0456\u043d\u0435 \u0436\u0435\u0442\u043a\u0456\u0437\u0456\u043b\u0435\u0434\u0456. \u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440 \u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u049b\u043e\u0439\u044b\u043d\u0434\u044b\u0441\u044b\u043d\u0430\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u0443 \u043c\u04af\u043c\u043a\u0456\u043d.",
+ "HeaderInstalledServices": "\u041e\u0440\u043d\u0430\u0442\u044b\u043b\u0493\u0430\u043d \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
+ "HeaderAvailableServices": "\u049a\u0430\u0442\u044b\u043d\u0430\u0443\u043b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
+ "MessageNoServicesInstalled": "\u049a\u0430\u0437\u0456\u0440\u0433\u0456 \u0443\u0430\u049b\u044b\u0442\u0442\u0430 \u0435\u0448\u049b\u0430\u043d\u0434\u0430\u0439 \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440 \u043e\u0440\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0493\u0430\u043d",
+ "TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u0434\u0435\u0440",
+ "HeaderServices": "\u049a\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
+ "ViewTypePlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456",
+ "LabelAlbumArtists": "\u0410\u043b\u044c\u0431\u043e\u043c \u043e\u0440\u044b\u043d\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u044b:",
"LabelEnableInternetMetadataForTvPrograms": "\u041c\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435\u043d \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u0436\u04af\u043a\u0442\u0435\u043f \u0430\u043b\u0443",
"OptionTVMovies": "\u0422\u0414-\u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
"HeaderUpcomingMovies": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440",
- "HeaderUpcomingSports": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0441\u043f\u043e\u0440\u0442",
"HeaderUpcomingPrograms": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0431\u0435\u0440\u043b\u0456\u043c\u0434\u0435\u0440",
"LabelShowLibraryTileNames": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0430\u049b\u0442\u0430\u0439\u0448\u0430\u043b\u0430\u0440\u044b\u043d\u044b\u04a3 \u0430\u0442\u0430\u0443\u043b\u0430\u0440\u044b\u043d \u043a\u04e9\u0440\u0441\u0435\u0442\u0443",
"LabelShowLibraryTileNamesHelp": "\u0411\u0430\u0441\u0442\u044b \u0431\u0435\u0442\u0442\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0442\u0430\u049b\u0442\u0430\u0439\u0448\u0430\u043b\u0430\u0440\u044b \u0430\u0441\u0442\u044b\u043d\u0434\u0430 \u0436\u0430\u0437\u0443\u043b\u0430\u0440 \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435 \u043c\u0435 \u0435\u043a\u0435\u043d\u0456 \u0430\u043d\u044b\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
+ "HeaderSupporterBenefits": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u044b",
+ "HeaderAddUser": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
+ "LabelAddConnectSupporterHelp": "\u0422\u0456\u0437\u0456\u043c\u0434\u0435 \u0436\u043e\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443 \u04af\u0448\u0456\u043d, \u0430\u043b\u0434\u044b\u043c\u0435\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u044b\u049b \u043f\u0440\u043e\u0444\u0430\u0439\u043b\u044b \u0431\u0435\u0442\u0456\u043d\u0435\u043d Emby Connect \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u043e\u043d\u044b\u04a3 \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u0441\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u0440\u0443\u044b\u04a3\u044b\u0437 \u049b\u0430\u0436\u0435\u0442.",
+ "TabPlaylist": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0456",
+ "LabelConfigureServer": "Emby \u0442\u0435\u04a3\u0448\u0435\u0443",
+ "WelcomeToProject": "Emby \u04af\u0448\u0456\u043d \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!",
+ "LinkedToEmbyConnect": "Emby Connect \u04af\u0448\u0456\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u044b\u043b\u0493\u0430\u043d",
+ "ProjectHasCommunity": "Emby \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440\u044b \u043c\u0435\u043d \u049b\u043e\u043b\u0434\u0430\u0443\u0448\u044b\u043b\u0430\u0440\u0434\u044b\u04a3 \u0434\u0430\u043c\u0443\u0434\u0430\u0493\u044b \u049b\u0430\u0443\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0493\u044b \u0431\u0430\u0440.",
+ "VisitProjectWebsite": "Emby \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u0431\u0430\u0440\u0443",
+ "VisitProjectWebsiteLong": "\u0421\u043e\u04a3\u0493\u044b \u0436\u0430\u04a3\u0430\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b \u0431\u0456\u043b\u0456\u043f \u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u0436\u04d9\u043d\u0435 \u0436\u0430\u0441\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u043b\u0430\u0440 \u0431\u043b\u043e\u0433\u0456\u043c\u0435\u043d \u0442\u0430\u043d\u044b\u0441\u044b\u043f \u0442\u04b1\u0440\u0443 \u04af\u0448\u0456\u043d Emby \u0493\u0430\u043b\u0430\u043c\u0442\u043e\u0440 \u0441\u0430\u0439\u0442\u044b\u043d\u0430 \u0431\u0430\u0440\u044b\u04a3\u044b\u0437.",
+ "HeaderHelpImproveProject": "Emby \u0436\u0435\u0442\u0456\u043b\u0434\u0456\u0440\u0443\u0433\u0435 \u043a\u04e9\u043c\u0435\u043a\u0442\u0435\u0441\u0456\u04a3\u0456\u0437",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b \u0431\u043e\u043b\u044b\u04a3\u044b\u0437",
+ "ButtonLearnMoreAboutEmbyConnect": "Emby Connect \u0442\u0443\u0440\u0430\u043b\u044b \u043a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443",
+ "HeaderOptionalLinkEmbyAccount": "\u041c\u0456\u043d\u0434\u0435\u0442\u0442\u0456 \u0435\u043c\u0435\u0441: Emby \u0442\u0456\u0440\u043a\u0435\u043b\u0433\u0456\u04a3\u0456\u0437\u0431\u0435\u043d \u0431\u0430\u0439\u043b\u0430\u043d\u044b\u0441\u0442\u044b\u0440\u0443",
"OptionEnableTranscodingThrottle": "\u0420\u0435\u0442\u0442\u0435\u0443\u0434\u0456 \u049b\u043e\u0441\u0443",
"OptionEnableTranscodingThrottleHelp": "\u041e\u0439\u043d\u0430\u0442\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u041e\u041f \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443 \u04af\u0448\u0456\u043d \u0440\u0435\u0442\u0442\u0435\u0443 \u049b\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b\u043d \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0442\u04af\u0440\u0434\u0435 \u043b\u0430\u0439\u044b\u049b\u0442\u0430\u0439\u0434\u044b.",
+ "OptionHideWatchedContentFromLatestMedia": "\u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0435\u043d \u049b\u0430\u0440\u0430\u043b\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0436\u0430\u0441\u044b\u0440\u0443",
+ "TabSuggestions": "\u04b0\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440",
+ "PlaceholderUsername": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b",
+ "HeaderSync": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
+ "HeaderUpcomingSports": "\u041a\u04af\u0442\u0456\u043b\u0433\u0435\u043d \u0441\u043f\u043e\u0440\u0442",
"LabelUploadSpeedLimit": "\u0416\u04af\u043a\u0442\u0435\u043f \u0431\u0435\u0440\u0443 \u0436\u044b\u043b\u0434\u0430\u043c\u0434\u044b\u0493\u044b\u043d\u044b\u04a3 \u0448\u0435\u0433\u0456, \u041c\u0431\u0438\u0442\/\u0441",
"OptionAllowSyncTranscoding": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0442\u0430\u043b\u0430\u0431\u044b \u0431\u0430\u0440 \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
"HeaderPlayback": "\u0422\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0434\u0456 \u043e\u0439\u043d\u0430\u0442\u0443",
+ "OptionAllowMediaPlaybackTranscodingHelp": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440 \u04e9\u0437\u0434\u0435\u0440\u0456\u043d\u0456\u04a3 \u0441\u0430\u044f\u0441\u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0439\u0442\u044b\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430\u0493\u044b \u049b\u0430\u0442\u0435 \u0442\u0443\u0440\u0430\u043b\u044b \u043e\u04a3\u0430\u0439 \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u0440\u0434\u044b \u0430\u043b\u0430\u0434\u044b.",
"OptionAllowAudioPlaybackTranscoding": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0442\u0430\u043b\u0430\u0431\u044b \u0431\u0430\u0440 \u0434\u044b\u0431\u044b\u0441 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
"OptionAllowVideoPlaybackTranscoding": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0493\u0430 \u0442\u0430\u043b\u0430\u0431\u044b \u0431\u0430\u0440 \u0431\u0435\u0439\u043d\u0435 \u043e\u0439\u043d\u0430\u0442\u0443 \u04af\u0448\u0456\u043d \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
- "OptionAllowMediaPlaybackTranscodingHelp": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b\u043b\u0430\u0440 \u04e9\u0437\u0434\u0435\u0440\u0456\u043d\u0456\u04a3 \u0441\u0430\u044f\u0441\u0430\u0442\u0442\u0430\u0440\u044b\u043d\u0430 \u043d\u0435\u0433\u0456\u0437\u0434\u0435\u043b\u0433\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u043c\u0430\u0439\u0442\u044b\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0431\u043e\u043b\u0493\u0430\u043d\u0434\u0430\u0493\u044b \u049b\u0430\u0442\u0435 \u0442\u0443\u0440\u0430\u043b\u044b \u043e\u04a3\u0430\u0439 \u0445\u0430\u0431\u0430\u0440\u043b\u0430\u0440\u0434\u044b \u0430\u043b\u0430\u0434\u044b.",
"TabStreaming": "\u0410\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443",
"LabelRemoteClientBitrateLimit": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0442\u0435 \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443 \u049b\u0430\u0440\u049b\u044b\u043d\u044b\u043d\u044b\u04a3 \u0448\u0435\u0433\u0456, \u041c\u0431\u0438\u0442\/\u0441:",
"LabelRemoteClientBitrateLimitHelp": "\u0411\u0430\u0440\u043b\u044b\u049b \u0436\u0435\u043b\u0456\u043b\u0456\u043a \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440 \u04af\u0448\u0456\u043d \u049b\u0430\u0440\u049b\u044b\u043d \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u0448\u0435\u0433\u0456. \u0411\u04b1\u043b \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u049b\u043e\u0441\u044b\u043b\u044b\u043c\u044b\u04a3\u044b\u0437\u0434\u044b\u04a3 \u04e9\u04a3\u0434\u0435\u0443 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d\u0435 \u049b\u0430\u0440\u0430\u0493\u0430\u043d\u0434\u0430 \u043a\u043b\u0438\u0435\u043d\u0442\u0442\u0435\u0440\u0434\u0456\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b\u043b\u0430\u0443 \u049b\u0430\u0440\u049b\u044b\u043d \u0441\u0430\u0443\u0430\u043b\u0434\u0430\u0440\u044b\u043d\u0430 \u0442\u044b\u0439\u044b\u043c \u0441\u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u044b \u0431\u043e\u043b\u044b\u043f \u0442\u0430\u0431\u044b\u043b\u0430\u0434\u044b.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u043b\u0456\u043a \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u049b\u043e\u043b\u0434\u0430\u043d\u044b\u043b\u0430\u0442\u044b\u043d \u041e\u041f \u04e9\u0437\u0435\u043a\u0442\u0435\u0440\u0434\u0456\u04a3 \u0441\u0430\u043d\u044b\u043d \u0448\u0435\u043a\u0442\u0435\u0443.",
"OptionEnableFullSpeedConversion": "\u0422\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0434\u0456\u04a3 \u0442\u043e\u043b\u044b\u049b \u0436\u044b\u043b\u0434\u0430\u043c\u043b\u044b\u0493\u044b\u043d \u049b\u043e\u0441\u0443",
"OptionEnableFullSpeedConversionHelp": "\u0420\u0435\u0441\u0443\u0440\u0441\u0442\u0430\u0440 \u0442\u04b1\u0442\u044b\u043d\u0443\u0434\u044b \u0431\u0430\u0440\u044b\u043d\u0448\u0430 \u0430\u0437\u0430\u0439\u0442\u0443 \u04af\u0448\u0456\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443\u043b\u0456\u043a \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443 \u04d9\u0434\u0435\u043f\u043a\u0456\u0434\u0435 \u0442\u04e9\u043c\u0435\u043d \u0436\u044b\u043b\u0434\u0430\u043c\u0434\u044b\u049b\u043f\u0435\u043d \u043e\u0440\u044b\u043d\u0434\u0430\u043b\u0430\u0434\u044b.",
+ "HeaderRepeatingOptions": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u043c\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
+ "OptionMyMediaButtons": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c (\u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440)",
+ "OptionMyMedia": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c",
+ "OptionMyMediaSmall": "\u041c\u0435\u043d\u0456\u04a3 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440\u0456\u043c (\u044b\u049b\u0448\u0430\u043c)",
"HeaderPlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440",
+ "ViewTypeMusicPlaylists": "\u041e\u0439\u043d\u0430\u0442\u0443 \u0442\u0456\u0437\u0456\u043c\u0434\u0435\u0440\u0456",
"HeaderViewStyles": "\u0410\u0441\u043f\u0435\u043a\u0442 \u043c\u04d9\u043d\u0435\u0440\u043b\u0435\u0440\u0456",
"LabelSelectViewStyles": "\u041c\u044b\u043d\u0430\u0443 \u04af\u0448\u0456\u043d \u0436\u0430\u049b\u0441\u0430\u0440\u0442\u044b\u043b\u0493\u0430\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0456\u043c\u0434\u0435\u0440\u0456\u043d \u049b\u043e\u0441\u0443:",
"LabelSelectViewStylesHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u043c\u04b1\u043d\u0434\u0430\u0439 \u04b0\u0441\u044b\u043d\u044b\u0441\u0442\u0430\u0440, \u0415\u04a3 \u043a\u0435\u0439\u0456\u043d\u0433\u0456, \u0416\u0430\u043d\u0440\u043b\u0430\u0440\u0434\u044b \u0436\u04d9\u043d\u0435 \u0442.\u0431. \u0441\u0430\u043d\u0430\u0442\u0442\u0430\u0440\u044b\u043d \u04b1\u0441\u044b\u043d\u0443 \u04af\u0448\u0456\u043d \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u04b1\u0440\u044b\u043b\u0430\u0434\u044b. \u0410\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0441\u0430, \u043e\u043b\u0430\u0440 \u049b\u0430\u0440\u0430\u043f\u0430\u0439\u044b\u043c \u049b\u0430\u043b\u0442\u0430\u043b\u0430\u0440 \u0430\u0440\u049b\u044b\u043b\u044b \u043a\u04e9\u0440\u0441\u0435\u0442\u0456\u043b\u0435\u0434\u0456.",
+ "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",
+ "LabelMaxChromecastBitrate": "Chromecast \u04af\u0448\u0456\u043d \u0435\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b \u049b\u0430\u0440\u049b\u044b\u043d:",
+ "TabAppSettings": "\u049a\u043e\u043b\u0434\u0430\u043d\u0431\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"TabPhotos": "\u0424\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440",
"TabVideos": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
"HeaderWelcomeToEmby": "Emby \u0456\u0448\u0456\u043d\u0435 \u049b\u043e\u0448 \u043a\u0435\u043b\u0434\u0456\u04a3\u0456\u0437!",
"EmbyIntroMessage": "Emby \u0430\u0440\u049b\u044b\u043b\u044b \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440\u0434\u0456, \u043c\u0443\u0437\u044b\u043a\u0430\u043d\u044b \u0436\u04d9\u043d\u0435 \u0444\u043e\u0442\u043e\u0441\u0443\u0440\u0435\u0442\u0442\u0435\u0440\u0434\u0456 Emby Server \u0436\u0430\u0493\u044b\u043d\u0430\u043d \u049b\u0430\u043b\u0442\u0430\u0444\u043e\u043d\u0434\u0430\u0440\u0493\u0430, \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u0442\u0435\u0440\u0433\u0435 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0493\u044b \u0431\u0430\u0441\u049b\u0430 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0493\u0430 \u0430\u0493\u044b\u043d\u043c\u0435\u043d \u0436\u0435\u04a3\u0456\u043b \u0442\u0430\u0441\u044b\u043c\u0430\u043b\u0434\u0430\u0443\u044b\u04a3\u044b\u0437 \u043c\u04af\u043c\u043a\u0456\u043d",
"ButtonSkip": "\u04e8\u0442\u043a\u0456\u0437\u0443",
"TextConnectToServerManually": "\u0421\u0435\u0440\u0432\u0435\u0440\u0433\u0435 \u049b\u043e\u043b\u043c\u0435\u043d \u049b\u043e\u0441\u044b\u043b\u0443",
- "ButtonSignInWithConnect": "Emby Connect \u0430\u0440\u049b\u044b\u043b\u044b \u049b\u043e\u0441\u044b\u043b\u0443",
"ButtonConnect": "\u049a\u043e\u0441\u044b\u043b\u0443",
"LabelServerHost": "\u0425\u043e\u0441\u0442:",
"LabelServerHostHelp": "192.168.1.100 \u043d\u0435\u043c\u0435\u0441\u0435 https:\/\/myserver.com",
"LabelServerPort": "\u041f\u043e\u0440\u0442:",
- "HeaderNewServer": "\u0416\u0430\u04a3\u0430 \u0441\u0435\u0440\u0432\u0435\u0440",
"ButtonChangeServer": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0430\u0443\u044b\u0441\u0442\u044b\u0440\u0443",
"HeaderConnectToServer": "\u0421\u0435\u0440\u0432\u0435\u0440\u0433\u0435 \u049b\u043e\u0441\u044b\u043b\u0443",
"OptionReportList": "\u0422\u0456\u0437\u0456\u043c\u0434\u0435\u0440",
@@ -1439,20 +1428,31 @@
"HeaderExport": "\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0442\u0430\u0443",
"HeaderColumns": "\u0411\u0430\u0493\u0430\u043d\u0434\u0430\u0440",
"ButtonReset": "\u042b\u0441\u044b\u0440\u0443",
+ "ButtonPurchase": "\u0421\u0430\u0442\u044b\u043f \u0430\u043b\u0443",
"OptionEnableExternalVideoPlayers": "\u0421\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440\u0434\u044b \u049b\u043e\u0441\u0443",
+ "LabelNativeExternalPlayersHelp": "\u041c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u0441\u044b\u0440\u0442\u049b\u044b \u043e\u0439\u043d\u0430\u0442\u049b\u044b\u0448\u0442\u0430\u0440\u043c\u0435\u043d \u043e\u0439\u043d\u0430\u0442\u0443\u0493\u0430 \u0430\u0440\u043d\u0430\u043b\u0493\u0430\u043d \u0442\u04af\u0439\u043c\u0435\u0448\u0456\u043a\u0442\u0435\u0440\u0434\u0456 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443.",
+ "LabelEnableItemPreviews": "\u0422\u0430\u0440\u043c\u0430\u049b \u043d\u043e\u0431\u0430\u0439\u043b\u0430\u0440\u044b\u043d \u049b\u043e\u0441\u0443",
+ "LabelEnableItemPreviewsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u049b\u0430\u0439\u0441\u044b\u0431\u0456\u0440 \u044d\u043a\u0440\u0430\u043d\u0434\u0430\u0440\u0434\u0430 \u0442\u0430\u0440\u043c\u0430\u049b\u0442\u0430\u0440\u0434\u044b \u043d\u04b1\u049b\u044b\u0493\u0430\u043d \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u0441\u044b\u0440\u0493\u044b\u043c\u0430\u043b\u044b \u043d\u043e\u0431\u0430\u0439\u043b\u0430\u0440 \u0448\u044b\u0493\u0430 \u043a\u0435\u043b\u0435\u0434\u0456.",
"ButtonUnlockGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0456 \u049b\u04b1\u0440\u0441\u0430\u0443\u0434\u0430\u043d \u0431\u043e\u0441\u0430\u0442\u0443",
+ "ButtonManageServer": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u0431\u0430\u0441\u049b\u0430\u0440\u0443",
"LabelEnableFullScreen": "\u0422\u043e\u043b\u044b\u049b \u044d\u043a\u0440\u0430\u043d \u0440\u0435\u0436\u0456\u043c\u0456\u043d \u049b\u043e\u0441\u0443",
"LabelEnableChromecastAc3Passthrough": "Chromecast \u04e9\u0442\u043a\u0456\u043d\u0448\u0456 AC3 \u049b\u043e\u0441\u0443",
- "OptionSyncToSDCard": "\u0421\u044b\u0440\u0442\u049b\u044b SD-\u043a\u0430\u0440\u0442\u0430\u0441\u044b\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d",
+ "LabelSyncPath": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0436\u043e\u043b\u044b:",
"LabelEmail": "\u042d-\u043f\u043e\u0448\u0442\u0430:",
"LabelUsername": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0430\u0442\u044b:",
"HeaderSignUp": "\u0422\u0456\u0440\u043a\u0435\u043b\u0443",
"LabelPasswordConfirm": "\u049a\u04b1\u043f\u0438\u044f \u0441\u04e9\u0437 (\u0440\u0430\u0441\u0442\u0430\u0443)",
"ButtonAddServer": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456 \u04af\u0441\u0442\u0435\u0443",
+ "ButtonShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
+ "OptionAllowLinkSharing": "\u04d8\u043b\u0435\u0443\u043c\u0435\u0442\u0442\u0456\u043a \u0436\u0435\u043b\u0456\u043b\u0435\u0440\u0456\u043c\u0435\u043d \u043e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0493\u0430 \u0440\u04b1\u049b\u0441\u0430\u0442 \u0435\u0442\u0443",
+ "OptionAllowLinkSharingHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \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\u0442\u0435\u0440\u0456 \u043e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b. \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. \u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u0443\u0430\u049b\u044b\u0442\u043f\u0435\u043d \u0448\u0435\u043a\u0442\u0435\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u043c\u0435\u0440\u0437\u0456\u043c\u0456 \u0441\u0435\u0440\u0432\u0435\u0440\u0456\u04a3\u0456\u0437\u0434\u0456\u04a3 \u043e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456\u043d\u0456\u04a3 \u043d\u0435\u0433\u0456\u0437\u0456\u043d\u0434\u0435 \u0430\u044f\u049b\u0442\u0430\u043b\u0430\u0434\u044b.",
+ "HeaderSharing": "\u041e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443",
"TabHomeScreen": "\u0411\u0430\u0441\u0442\u044b \u044d\u043a\u0440\u0430\u043d",
"HeaderDisplay": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
"HeaderNavigation": "\u0428\u0430\u0440\u043b\u0430\u0443",
"LegendTheseSettingsShared": "\u041e\u0441\u044b \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440 \u0431\u0430\u0440\u043b\u044b\u049b \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u043b\u0430\u0440\u0434\u0430 \u043e\u0440\u0442\u0430\u049b \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0430\u0434\u044b.",
+ "LabelRecordingPath": "\u0416\u0430\u0437\u044b\u043b\u0443 \u0436\u043e\u043b\u044b:",
+ "LabelRecordingPathHelp": "\u0416\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0441\u0430\u049b\u0442\u0430\u0443 \u04af\u0448\u0456\u043d \u0442\u0435\u04a3\u0448\u0435\u043b\u0433\u0435\u043d \u0436\u0430\u0439\u0493\u0430\u0441\u044b\u043c\u0434\u044b \u0430\u043d\u044b\u049b\u0442\u0430\u04a3\u044b\u0437. \u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u04d9\u0434\u0435\u043f\u043a\u0456\u0441\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443 \u04af\u0448\u0456\u043d \u0431\u043e\u0441 \u049b\u0430\u043b\u0434\u044b\u0440\u044b\u04a3\u044b\u0437.",
"OptionEnableAutomaticServerUpdates": "\u0421\u0435\u0440\u0432\u0435\u0440\u0434\u0456\u04a3 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u04a3\u0430\u0440\u0442\u044b\u043b\u0443\u044b\u043d \u049b\u043e\u0441\u0443",
"OptionOtherTrailers": "\u0415\u0441\u043a\u0456 \u0444\u0438\u043b\u044c\u043c\u0434\u0435\u0440\u0434\u0435\u0433\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u049b\u0430\u043c\u0442\u0443",
"HeaderOverview": "\u0416\u0430\u043b\u043f\u044b \u0448\u043e\u043b\u0443",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
"HeaderAddDevice": "\u049a\u04b1\u0440\u044b\u043b\u0493\u044b\u043d\u044b \u04af\u0441\u0442\u0435\u0443",
"HeaderExternalServices": "\u0421\u044b\u0440\u0442\u049b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
- "LabelTunerIpAddress": "\u0422\u044e\u043d\u0435\u0440\u0434\u0456\u04a3 IP-\u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b:",
"TabExternalServices": "\u0421\u044b\u0440\u0442\u049b\u044b \u049b\u044b\u0437\u043c\u0435\u0442\u0442\u0435\u0440",
"TabTuners": "\u0422\u044e\u043d\u0435\u0440\u043b\u0435\u0440",
"HeaderGuideProviders": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u043b\u0435\u0440\u0456",
"AddGuideProviderHelp": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434 \u0430\u049b\u043f\u0430\u0440\u0430\u0442\u044b \u04af\u0448\u0456\u043d \u043a\u04e9\u0437\u0434\u0435\u0440\u0434\u0456 \u04af\u0441\u0442\u0435\u0443",
"LabelZipCode": "\u041f\u043e\u0448\u0442\u0430 \u043a\u043e\u0434\u044b:",
- "GuideProviderSelectListings": "\u0422\u0456\u0437\u0431\u0435\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443",
- "GuideProviderLogin": "\u041a\u0456\u0440\u0443",
"LabelLineup": "\u0422\u0456\u0437\u0431\u0435\u043a:",
"MessageTunerDeviceNotListed": "\u0422\u044e\u043d\u0435\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u04a3\u044b\u0437 \u0442\u0456\u0437\u0456\u043c\u0434\u0435 \u0436\u043e\u049b \u043f\u0430? \u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u043a\u0442\u0435\u0440\u0456 \u04af\u0448\u0456\u043d \u0441\u044b\u0440\u0442\u049b\u044b \u049b\u044b\u0437\u043c\u0435\u0442 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456\u043d \u043e\u0440\u043d\u0430\u0442\u044b\u043f \u043a\u04e9\u0440\u0456\u04a3\u0456\u0437.",
+ "OptionSyncToSDCard": "\u0421\u044b\u0440\u0442\u049b\u044b SD-\u043a\u0430\u0440\u0442\u0430\u0441\u044b\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d",
+ "LabelTunerIpAddress": "\u0422\u044e\u043d\u0435\u0440\u0434\u0456\u04a3 IP-\u043c\u0435\u043a\u0435\u043d\u0436\u0430\u0439\u044b:",
+ "GuideProviderSelectListings": "\u0422\u0456\u0437\u0431\u0435\u043b\u0435\u0440\u0434\u0456 \u0442\u0430\u04a3\u0434\u0430\u0443",
+ "GuideProviderLogin": "\u041a\u0456\u0440\u0443",
"LabelImportOnlyFavoriteChannels": "\u0422\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u043c\u0435\u043d \u0448\u0435\u043a\u0442\u0435\u0443",
"ImportFavoriteChannelsHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0442\u044e\u043d\u0435\u0440 \u049b\u04b1\u0440\u044b\u043b\u0493\u044b\u0441\u044b\u043d\u0434\u0430\u0493\u044b \u0442\u0430\u04a3\u0434\u0430\u0443\u043b\u044b \u0440\u0435\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u043b\u0433\u0456\u043b\u0435\u043d\u0433\u0435\u043d \u0493\u0430\u043d\u0430 \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u043b\u0430\u0442\u044b\u043d \u0431\u043e\u043b\u0430\u0434\u044b.",
"ButtonRepeat": "\u049a\u0430\u0439\u0442\u0430\u043b\u0430\u0443",
- "LabelEnableThisTuner": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
- "LabelEnableThisTunerHelp": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0435\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u0443\u044b\u043d\u0430 \u0442\u0438\u044b\u043c \u0441\u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.",
- "HeaderLocked": "\u049a\u04b1\u043b\u044b\u043f\u0442\u0430\u043b\u0493\u0430\u043d",
"HeaderUnidentified": "\u0410\u043d\u044b\u049b\u0442\u0430\u043b\u043c\u0430\u0493\u0430\u043d",
"HeaderImagePrimary": "\u041d\u0435\u0433\u0456\u0437\u0433\u0456",
"HeaderImageBackdrop": "\u0410\u0440\u0442\u049b\u044b \u0441\u0443\u0440\u0435\u0442",
"HeaderImageLogo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
"HeaderUserPrimaryImage": "\u041f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u0448\u044b \u0441\u0443\u0440\u0435\u0442\u0456",
+ "LabelEnableThisTuner": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0456 \u049b\u043e\u0441\u0443",
+ "LabelEnableThisTunerHelp": "\u041e\u0441\u044b \u0442\u044e\u043d\u0435\u0440\u0434\u0435\u043d \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u0443\u044b\u043d\u0430 \u0442\u0438\u044b\u043c \u0441\u0430\u043b\u0443 \u04af\u0448\u0456\u043d \u049b\u04b1\u0441\u0431\u0435\u043b\u0433\u0456\u043d\u0456 \u0430\u043b\u044b\u04a3\u044b\u0437.",
+ "HeaderLocked": "\u049a\u04b1\u043b\u044b\u043f\u0442\u0430\u043b\u0493\u0430\u043d",
"ButtonDisplaySettings": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"ButtonHomeScreenSettings": "\u0411\u0430\u0441\u0442\u044b \u044d\u043a\u0440\u0430\u043d \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
"ButtonPlaybackSettings": "\u041e\u0439\u043d\u0430\u0442\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443 \u043a\u0435\u0437\u0456\u043d\u0434\u0435 \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0430\u0442\u044b\u043d \u0435\u04a3 \u043a\u04e9\u043f \u0442\u0456\u0437\u0431\u0435\u043a \u0441\u0430\u043d\u044b\u043d \u0442\u0430\u04a3\u0434\u0430\u04a3\u044b\u0437. \u0422\u0456\u0437\u0431\u0435\u043a \u0441\u0430\u043d\u044b\u043d \u0430\u0437\u0430\u0439\u0442\u0443 \u041e\u041f \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u0443\u044b\u043d \u0442\u04e9\u043c\u0435\u043d\u0434\u0435\u0442\u0435\u0434\u0456, \u0431\u0456\u0440\u0430\u049b \u0436\u0430\u0442\u044b\u049b \u043e\u0439\u043d\u0430\u0442\u0443 \u0441\u0435\u0437\u0456\u043c\u0456 \u04af\u0448\u0456\u043d \u0442\u0435\u0437 \u0442\u04af\u0440\u043b\u0435\u043d\u0434\u0456\u0440\u0443\u0433\u0435 \u0436\u0435\u0442\u043a\u0456\u043b\u0456\u043a\u0442\u0456 \u0431\u043e\u043b\u043c\u0430\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d.",
"OptionMax": "\u0415\u04a3 \u0436\u043e\u0493\u0430\u0440\u044b",
"HeaderEmbyGuide": "Emby \u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0456",
- "LabelSyncPath": "\u04ae\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0456\u043b\u0433\u0435\u043d \u043c\u0430\u0437\u043c\u04b1\u043d \u0436\u043e\u043b\u044b:",
"OptionSyncOnlyOnWifi": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 Wifi \u0430\u0440\u049b\u044b\u043b\u044b \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
+ "OptionDisplayChannelsInline": "\u041c\u0435\u043d\u0456\u04a3 \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u0456\u043c \u0430\u0440\u0430\u0441\u044b\u043d\u0434\u0430 \u0430\u0440\u043d\u0430\u043b\u0430\u0440\u0434\u044b \u043a\u0456\u0440\u0456\u0441\u0442\u0456\u0440\u0456\u043f \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0443",
+ "OptionDisplayChannelsInlineHelp": "\u049a\u043e\u0441\u044b\u043b\u0493\u0430\u043d\u0434\u0430, \u0430\u0440\u043d\u0430\u043b\u0430\u0440 \u0431\u0430\u0441\u049b\u0430 \u0430\u0441\u043f\u0435\u043a\u0442\u0442\u0435\u0440\u043c\u0435\u043d \u049b\u0430\u0442\u0430\u0440 \u0442\u0456\u043a\u0435\u043b\u0435\u0439 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456. \u0415\u0433\u0435\u0440 \u0430\u0436\u044b\u0440\u0430\u0442\u044b\u043b\u0441\u0430, \u043e\u043b\u0430\u0440 \u0431\u04e9\u043b\u0435\u043a \u0410\u0440\u043d\u0430\u043b\u0430\u0440 \u0430\u0441\u043f\u0435\u043a\u0442\u0456\u043d\u0434\u0435 \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u043d\u0435\u0434\u0456.",
"OptionSyncLosslessAudioOriginal": "\u042b\u0441\u044b\u0440\u0430\u043f\u0441\u044b\u0437 \u0434\u044b\u0431\u044b\u0441\u0442\u044b \u0431\u0430\u0441\u0442\u0430\u043f\u049b\u044b \u0441\u0430\u043f\u0430\u0441\u044b\u043c\u0435\u043d \u04af\u043d\u0434\u0435\u0441\u0442\u0456\u0440\u0443",
"HeaderMetadata": "\u041c\u0435\u0442\u0430\u0434\u0435\u0440\u0435\u043a\u0442\u0435\u0440",
"HeaderRecordingOptions": "\u0416\u0430\u0437\u0443 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043b\u0435\u0440\u0456",
- "ButtonShare": "\u041e\u0440\u0442\u0430\u049b\u0442\u0430\u0441\u0443",
"HeaderUpcomingForKids": "\u0411\u0430\u043b\u0430\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u043a\u04af\u0442\u0456\u043b\u0433\u0435\u043d",
"HeaderSetupLiveTV": "\u042d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u043e\u0440\u043d\u0430\u0442\u0443",
"LabelTunerType": "\u0422\u044e\u043d\u0435\u0440 \u0442\u04af\u0440\u0456:",
"HelpMoreTunersCanBeAdded": "\u049a\u043e\u0441\u044b\u043c\u0448\u0430 \u0442\u044e\u043d\u0435\u0440\u043b\u0435\u0440\u0434\u0456 \u044d\u0444\u0438\u0440\u043b\u0456\u043a \u0422\u0414 \u0431\u04e9\u043b\u0456\u043c\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0456\u043d \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "\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 \u042d\u0444\u0438\u0440 \u0431\u04e9\u043b\u0456\u043c\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0456\u043d \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "\u0422\u0435\u043b\u0435\u0445\u0438\u043a\u0430\u044f\u043b\u0430\u0440\u0434\u044b\u04a3 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u0436\u0430\u0437\u0431\u0430\u0441\u044b\u043d \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d Emby \u0436\u0430\u049b\u0442\u0430\u0443\u0448\u044b\u0441\u044b\u043d\u044b\u04a3 \u0431\u0435\u043b\u0441\u0435\u043d\u0434\u0456 \u043c\u04af\u0448\u0435\u043b\u0456\u0433\u0456 \u049b\u0430\u0436\u0435\u0442.",
"HeaderSetupTVGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434\u0442\u0456 \u043e\u0440\u043d\u0430\u0442\u0443 \u0436\u04d9\u043d\u0435 \u0442\u0435\u04a3\u0448\u0435\u0443",
"LabelDataProvider": "\u0414\u0435\u0440\u0435\u043a\u0442\u0435\u0440 \u0436\u0435\u0442\u043a\u0456\u0437\u0443\u0448\u0456\u0441\u0456:",
"OptionSendRecordingsToAutoOrganize": "\u0416\u0430\u04a3\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u04af\u0448\u0456\u043d \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"OptionSendRecordingsToAutoOrganizeHelp": "\u0416\u0430\u04a3\u0430 \u0436\u0430\u0437\u0431\u0430\u043b\u0430\u0440 \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0442\u044b \u04b1\u0439\u044b\u043c\u0434\u0430\u0441\u0442\u044b\u0440\u0443 \u049b\u04b1\u0440\u0430\u043c\u0434\u0430\u0441\u044b\u043d\u0430 \u0436\u0456\u0431\u0435\u0440\u0456\u043b\u0435\u0434\u0456 \u0436\u04d9\u043d\u0435 \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u044b\u04a3\u044b\u0437\u0493\u0430 \u0438\u043c\u043f\u043e\u0440\u0442\u0442\u0430\u043b\u0430\u0434\u044b.",
"HeaderDefaultPadding": "\u04d8\u0434\u0435\u043f\u043a\u0456 \u0448\u0435\u0433\u0456\u043d\u0456\u0441",
- "HeaderSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u043b\u0435\u0440",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "\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 \u042d\u0444\u0438\u0440 \u0431\u04e9\u043b\u0456\u043c\u0456\u043d\u0434\u0435 \u043a\u0435\u0439\u0456\u043d \u04af\u0441\u0442\u0435\u0443\u0456\u04a3\u0456\u0437 \u043c\u04af\u043c\u043a\u0456\u043d.",
"HeaderVideos": "\u0411\u0435\u0439\u043d\u0435\u043b\u0435\u0440",
"OptionEnableVideoFrameAnalysis": "\u0411\u0435\u0439\u043d\u0435\u043d\u0456 \u0434\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u049b\u043e\u0441\u0443",
"OptionEnableVideoFrameAnalysisHelp": "\u049a\u0430\u0439\u0442\u0430 \u043a\u043e\u0434\u0442\u0430\u0443\u0434\u044b \u043c\u04af\u043c\u043a\u0456\u043d\u0434\u0456\u0433\u0456\u043d\u0448\u0435 \u0442\u0438\u0456\u043c\u0434\u0456 \u0436\u0430\u0441\u0430\u0443 \u04af\u0448\u0456\u043d \u043f\u0430\u0439\u0434\u0430\u043b\u0430\u043d\u044b\u043b\u0443\u044b \u043c\u04af\u043c\u043a\u0456\u043d \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u0442\u0443\u0440\u0430\u043b\u044b \u0442\u043e\u043b\u044b\u049b \u043c\u04d9\u043b\u0456\u043c\u0435\u0442\u0442\u0456 \u0431\u04e9\u043b\u0456\u043f \u0430\u043b\u0443. \u0411\u04b1\u043b \u0442\u0430\u0441\u044b\u0493\u044b\u0448\u0445\u0430\u043d\u0430 \u0441\u043a\u0430\u043d\u0435\u0440\u043b\u0435\u0443\u0456 \u04b1\u0437\u0430\u0493\u044b\u0440\u0430\u049b \u0443\u0430\u049b\u044b\u0442 \u0430\u043b\u0443\u044b\u043d\u0430 \u0441\u0435\u0431\u0435\u043f \u0431\u043e\u043b\u0430\u0434\u044b.",
"LabelVideoFrameAnalysisLimit": "\u0414\u0430\u0440\u0430\u043b\u0430\u0439 \u0442\u0430\u043b\u0434\u0430\u0443\u0434\u044b \u043c\u044b\u043d\u0430\u0434\u0430\u043d \u043a\u0435\u043c \u0431\u0435\u0439\u043d\u0435\u043b\u0435\u0440 \u04af\u0448\u0456\u043d \u0448\u0435\u043a\u0442\u0435\u0443:",
+ "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 \u043d\u0435\u043c\u0435\u0441\u0435 \u043e\u043b \u0442\u0430\u043d\u044b\u043b\u043c\u0430\u0493\u0430\u043d \u043c\u0430\u0437\u043c\u04b1\u043d\u0434\u044b \u049b\u04b1\u0440\u0441\u0430\u0443\u043b\u0430\u0443:",
"LabelHardwareVideoDecoder": "\u0416\u0430\u0431\u0434\u044b\u049b\u0442\u044b\u049b \u0431\u0435\u0439\u043d\u0435 \u0434\u0435\u043a\u043e\u0434\u0435\u0440:",
- "LabelHardwareVideoDecoderHelp": "Available on supported systems only."
+ "LabelHardwareVideoDecoderHelp": "\u0422\u0435\u043a \u049b\u0430\u043d\u0430 \u049b\u043e\u043b\u0434\u0430\u0443\u0434\u0430\u0493\u044b \u0436\u04af\u0439\u0435\u043b\u0435\u0440\u0434\u0435 \u049b\u043e\u043b \u0436\u0435\u0442\u0456\u043c\u0434\u0456."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/ko.json b/dashboard-ui/strings/html/ko.json
index 2ea20b6122..9ae8e57f96 100644
--- a/dashboard-ui/strings/html/ko.json
+++ b/dashboard-ui/strings/html/ko.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Schweinsteiger",
"LabelVisitCommunity": "Visit Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Browse Library",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "Restart Server",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Previous",
"LabelFinish": "Finish",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Next",
"LabelYoureDone": "You're Done!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "Tell us about yourself",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Your first name:",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Cancel",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "Country:",
"LabelLanguage": "Language:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferred metadata language:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferences",
"TabPassword": "Password",
"TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
"TabImage": "Image",
"TabProfile": "Profile",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Audio language preference:",
"LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiles",
"TabSecurity": "Security",
"ButtonAddUser": "Add User",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Save",
"ButtonResetPassword": "Reset Password",
"LabelNewPassword": "New password:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "Name",
- "OptionFolderSort": "Folders",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/ms.json b/dashboard-ui/strings/html/ms.json
index f04f972c8f..1a244f4146 100644
--- a/dashboard-ui/strings/html/ms.json
+++ b/dashboard-ui/strings/html/ms.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Tutup",
"LabelVisitCommunity": "Melawat Masyarakat",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Biasa",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Imbas Pengumpulan",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "Restart Server",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Sebelumnya",
"LabelFinish": "Habis",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Seterusnya",
"LabelYoureDone": "Kamu Selesai!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "Tell us about yourself",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Your first name:",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Cancel",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "Country:",
"LabelLanguage": "Language:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferred metadata language:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferences",
"TabPassword": "Password",
"TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
"TabImage": "Image",
"TabProfile": "Profile",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Audio language preference:",
"LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiles",
"TabSecurity": "Security",
"ButtonAddUser": "Add User",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Save",
"ButtonResetPassword": "Reset Password",
"LabelNewPassword": "New password:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "Name",
- "OptionFolderSort": "Folders",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/nb.json b/dashboard-ui/strings/html/nb.json
index 7a13748d69..bbdd640263 100644
--- a/dashboard-ui/strings/html/nb.json
+++ b/dashboard-ui/strings/html/nb.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Avslutt",
"LabelVisitCommunity": "Bes\u00f8k oss",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "API-dokumentasjon",
- "LabelDeveloperResources": "Ressurser for Utviklere",
"LabelBrowseLibrary": "Browse biblioteket",
- "LabelConfigureServer": "Konfigurer Emby",
"LabelOpenLibraryViewer": "\u00c5pne Biblioteket",
"LabelRestartServer": "Restart serveren",
"LabelShowLogWindow": "Se logg-vinduet",
"LabelPrevious": "Forrige",
"LabelFinish": "Ferdig",
- "FolderTypeMixed": "Blandet innhold",
"LabelNext": "Neste",
"LabelYoureDone": "Ferdig!",
- "ButtonAddToCollection": "Legg til samling",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Velkommen til Emby",
+ "OptionRelease": "Offisiell utgivelse",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Ustabil)",
"ThisWizardWillGuideYou": "Denne wizarden vil guide deg gjennom server-konfigurasjonen. For \u00e5 begynne, vennligst velg spr\u00e5k.",
"TellUsAboutYourself": "Fortell om deg selv",
- "ButtonQuickStartGuide": "Hurtigstartveiledning",
"LabelYourFirstName": "Ditt fornavn",
"MoreUsersCanBeAddedLater": "Du kan legge til flere brukere senere via Dashbord",
"UserProfilesIntro": "Emby har innebygd st\u00f8tte for brukerprofiler, slik at hver bruker har sine egne skjerminnstillinger, playstation og foreldrekontroll.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Uthenting av kapittelbilder gj\u00f8r klientene i stand til \u00e5 vise grafiske menyer for valg av scene. Prosessen kan v\u00e6re treg, CPU-intensiv og kan kreve sv\u00e6rt mange gigabytes lagringsplass. Dette kj\u00f8res som en nattlig oppgave, og kan konfigureres under Planlagte Aktiviteter. Det anbefales ikke \u00e5 kj\u00f8re denne jobben n\u00e5r serveren brukes til annet.",
"LabelEnableAutomaticPortMapping": "Sl\u00e5 p\u00e5 automatisk port-mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP tillater automatisert router-konfigurasjon for enkel ekstern tilgang. Denne funksjonen st\u00f8ttes ikke av alle routere.",
- "HeaderTermsOfService": "Emby vilk\u00e5r for bruk.",
- "MessagePleaseAcceptTermsOfService": "Vennligst aksepter v\u00e5re servicevilk\u00e5r og personvernpolicy f\u00f8r du fortsetter.",
- "OptionIAcceptTermsOfService": "Jeg aksepterer servicevilk\u00e5rene",
- "ButtonPrivacyPolicy": "Personvernpolicy",
- "ButtonTermsOfService": "Servicevilk\u00e5r",
- "HeaderDeveloperOptions": "Utvikler-innstillinger",
- "OptionEnableWebClientResponseCache": "Aktiver webklient respons-caching",
- "OptionDisableForDevelopmentHelp": "Konfigurer disse i forbindelse med utvikling av web-klienten.",
- "OptionEnableWebClientResourceMinification": "Aktiver ressursminimering for webklient",
- "LabelDashboardSourcePath": "Webklient kildesti:",
- "LabelDashboardSourcePathHelp": "Hvis serveren kj\u00f8rer fra kildekode, angi sti til mappe for dashboard-ui. Alle filer for webklienten kommer fra denne mappen.",
- "ButtonConvertMedia": "Konverter media",
- "ButtonOrganize": "Organiser",
- "LinkedToEmbyConnect": "Knyttet til Emby Connect.",
- "HeaderSupporterBenefits": "Supporter fordeler",
- "HeaderAddUser": "Ny bruker",
- "LabelAddConnectSupporterHelp": "For \u00e5 legge til en bruker som ikke er oppf\u00f8rt, m\u00e5 du f\u00f8rst koble sin konto til Emby Connect fra deres brukerprofilside.",
- "LabelPinCode": "Pin kode:",
- "OptionHideWatchedContentFromLatestMedia": "Skjul sett innhold fra siste media.",
- "HeaderSync": "Synk.",
"ButtonOk": "Ok",
"ButtonCancel": "Avbryt",
- "ButtonExit": "Avslutt",
- "ButtonNew": "Ny",
- "HeaderTV": "TV",
- "HeaderAudio": "Lyd",
- "HeaderVideo": "Video",
- "HeaderPaths": "Stier",
- "CategorySync": "Synk",
- "TabPlaylist": "Spilleliste",
- "HeaderEasyPinCode": "Enkel PIN-kode",
- "HeaderGrownupsOnly": "Bare for voksne!",
- "DividerOr": "-- eller --",
- "HeaderInstalledServices": "Installerte programtillegg",
- "HeaderAvailableServices": "Tilgjengelige tjenester",
- "MessageNoServicesInstalled": "Ingen programtillegg er installert.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Oppgi din enkle PIN-kode for \u00e5 f\u00e5 tilgang",
- "KidsModeAdultInstruction": "Klikk p\u00e5 l\u00e5s-ikonet nede til h\u00f8yre for \u00e5 konfigurere eller forlate barnamodus. PIN-koden vil v\u00e6re n\u00f8dvendig.",
- "ButtonConfigurePinCode": "Konfigurer PIN-kode",
- "HeaderAdultsReadHere": "Voksne les her!",
- "RegisterWithPayPal": "Registrer med PayPal",
- "HeaderSyncRequiresSupporterMembership": "Synkronisering krever st\u00f8ttemedlemskap",
- "HeaderEnjoyDayTrial": "Hygg deg med en 14-dagers gratis pr\u00f8veperiode",
- "LabelSyncTempPath": "Midlertidig fil-sti:",
- "LabelSyncTempPathHelp": "Spesifiser din egen synk-mappe. Konverterte mediefiler opprettet ved synkronisering vil lagres her.",
- "LabelCustomCertificatePath": "Sti for eget sertifikat:",
- "LabelCustomCertificatePathHelp": "Angi ditt eget SSL-sertifikats .ptx-fil. Hvis feltet er blankt vil serveren opprette et eget selv-signert sertifikat.",
- "TitleNotifications": "Beskjeder",
- "ButtonDonateWithPayPal": "Don\u00e9r med PayPal",
- "OptionDetectArchiveFilesAsMedia": "Behandle arkivfiler som media",
- "OptionDetectArchiveFilesAsMediaHelp": "Hvis aktivert blir .rar- og .zipfiler behandlet som mediafiler.",
- "LabelEnterConnectUserName": "Brukernavn eller epostadresse:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Aktiver forbedrede filmvisning",
- "LabelEnableEnhancedMoviesHelp": "N\u00e5r den er aktivert, vil filmene bli vist som mapper for \u00e5 inkludere trailere, statister, cast og crew, og annet relatert innhold.",
- "HeaderSyncJobInfo": "Synk.jobb",
- "OptionReleaseDate": "Uttgitt dato",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Feilet",
- "LabelSeries": "Serie:",
- "ButtonFullscreen": "Veksle fullskjerm",
- "ButtonAudioTracks": "Lydspor",
- "ButtonPreviousTrack": "Forrige Spor",
- "ButtonNextTrack": "Neste Spor",
- "HeaderEpisodes": "Episoder:",
- "FolderTypeMovies": "Filmer",
- "FolderTypeMusic": "Musikk",
- "FolderTypeAdultVideos": "Voksen-videoer",
- "FolderTypePhotos": "Foto",
- "FolderTypeMusicVideos": "Musikk-videoer",
- "FolderTypeHomeVideos": "Hjemme-videoer",
- "FolderTypeGames": "Spill",
- "FolderTypeBooks": "B\u00f8ker",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Arve",
- "LabelContentType": "Innholdstype:",
- "TitleScheduledTasks": "Planlagt oppgaver",
"HeaderSetupLibrary": "Konfigurer media-biblioteket",
"ButtonAddMediaFolder": "Legg til media-mappe",
"LabelFolderType": "Mappetype",
"ReferToMediaLibraryWiki": "Se i wik for media-biblioteket.",
"LabelCountry": "Land:",
"LabelLanguage": "Spr\u00e5k:",
- "LabelTimeLimitHours": "Tidsbegrensning (timer):",
- "ButtonJoinTheDevelopmentTeam": "Bli med i utvikler-teamet",
"HeaderPreferredMetadataLanguage": "Foretrukket spr\u00e5k for metadata",
"LabelSaveLocalMetadata": "Lagre cover og metadata i medie-mappene",
"LabelSaveLocalMetadataHelp": "Lagring av artwork og metadata direkte gjennom mediemapper vil legge dem et sted hvor de lett kan editeres.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferanser",
"TabPassword": "Passord",
"TabLibraryAccess": "Bibliotektilgang",
- "TabAccess": "Tilgang",
"TabImage": "Bilde",
"TabProfile": "Profil",
- "TabMetadata": "Metadata",
- "TabImages": "Bilder",
- "TabNotifications": "Varslinger",
- "TabCollectionTitles": "Titler",
- "HeaderDeviceAccess": "Enhetstilgang",
- "OptionEnableAccessFromAllDevices": "Gi tilgang fra alle enheter",
- "OptionEnableAccessToAllChannels": "Gi tilgang til alle kanaler",
- "OptionEnableAccessToAllLibraries": "Gi tilgang til alle bibliotek",
- "DeviceAccessHelp": "Dette gjelder bare for enheter som som kan unikt identifiseres og vil ikke forindre tilgang fra nettleser. Filtrering av brukerens enhet vil forhindre dem fra \u00e5 bruke nye enheter inntil de har blitt godkjent her.",
"LabelDisplayMissingEpisodesWithinSeasons": "Vis episoder som mangler fra sesongen",
"LabelUnairedMissingEpisodesWithinSeasons": "Vis episoder som enn\u00e5 ikke har blitt sendt",
"HeaderVideoPlaybackSettings": "Innstillinger for video-avspilling",
- "HeaderPlaybackSettings": "Avspillingsinnstillinger",
"LabelAudioLanguagePreference": "Foretrukket lydspor:",
"LabelSubtitleLanguagePreference": "Foretrukket undertekst:",
- "OptionDefaultSubtitles": "Standard",
- "OptionOnlyForcedSubtitles": "Kun tvungede undertekster",
- "OptionAlwaysPlaySubtitles": "Alltid vis undertekster",
- "OptionNoSubtitles": "Ingen undertekster",
- "OptionDefaultSubtitlesHelp": "Undertekster som samsvarer med foretrukket spr\u00e5k vil bli vist n\u00e5r lyden er p\u00e5 et fremmed spr\u00e5k.",
- "OptionOnlyForcedSubtitlesHelp": "Kun undertekster markert som tvunget vil bli vist.",
- "OptionAlwaysPlaySubtitlesHelp": "Undertekster som samsvarer med foretrukket spr\u00e5k vil bli vist uavhengig lydens spr\u00e5k.",
- "OptionNoSubtitlesHelp": "Undertekster vil ikke bli lastet som standard.",
"TabProfiles": "Profiler",
"TabSecurity": "Sikkerhet",
"ButtonAddUser": "Ny bruker",
- "ButtonAddLocalUser": "Legg til lokal bruker",
- "ButtonInviteUser": "Invit\u00e9r Bruker",
"ButtonSave": "Lagre",
"ButtonResetPassword": "Tilbakestill passord",
"LabelNewPassword": "Nytt passord:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maks tillatt sensur:",
"MaxParentalRatingHelp": "Innhold med h\u00f8yere aldersgrense vil bli skjult for brukeren",
"LibraryAccessHelp": "Velg media mappe som skal deles med denne brukren. Administrator vil ha mulighet for \u00e5 endre alle mapper ved \u00e5 bruke metadata behandler.",
- "ChannelAccessHelp": "Velg kanaler som skal deler med denne brukeren. Administratorer har mulighet til \u00e5 editere p\u00e5 alle kanaler som benytter metadata behandleren.",
"ButtonDeleteImage": "Slett bilde",
- "LabelSelectUsers": "Velg brukere:",
"ButtonUpload": "Last opp",
"HeaderUploadNewImage": "Last opp nytt bilde",
"LabelDropImageHere": "Slipp bilde her",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Ingeting her.",
"MessagePleaseEnsureInternetMetadata": "P\u00e5se at nedlasting av internet-metadata er sl\u00e5tt p\u00e5.",
"TabSuggested": "Forslag",
- "TabSuggestions": "Forslag",
"TabLatest": "Siste",
"TabUpcoming": "Kommer",
"TabShows": "Show",
@@ -217,6 +110,7 @@
"OptionAscending": "\u00d8kende",
"OptionDescending": "Synkende",
"OptionRuntime": "Spilletid",
+ "OptionReleaseDate": "Uttgitt dato",
"OptionPlayCount": "Antall avspillinger",
"OptionDatePlayed": "Dato spilt",
"OptionDateAdded": "Dato lagt til",
@@ -226,16 +120,10 @@
"OptionTrackName": "L\u00e5tnavn",
"OptionCommunityRating": "Community Rangering",
"OptionNameSort": "Navn",
- "OptionFolderSort": "Mapper",
"OptionBudget": "Budsjett",
"OptionRevenue": "Inntjening",
"OptionPoster": "Plakat",
- "OptionPosterCard": "Plakatkort",
- "OptionBackdrop": "Bakgrunn",
"OptionTimeline": "Tidslinje",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb-kort",
- "OptionBanner": "Banner",
"OptionCriticRating": "Kritikervurdering",
"OptionVideoBitrate": "Video bitrate",
"OptionResumable": "Kan fortsettes",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Planlagte Oppgaver",
"TabMyPlugins": "Mine programtillegg",
"TabCatalog": "Katalog",
- "TitlePlugins": "Programtillegg",
"HeaderAutomaticUpdates": "Automatiske oppdateringer",
"HeaderNowPlaying": "Spiller n\u00e5",
"HeaderLatestAlbums": "Siste album",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Nylig avspilt",
"HeaderFrequentlyPlayed": "Ofte avspilt",
"DevBuildWarning": "Dev builds er \u00e5 anses som ustabile. Disse har ikke blitt testet. Dette vil kunne medf\u00f8re til at applikasjonen kan krasje og komplette funksjoner ikke fungerer.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video-type:",
"OptionBluray": "Bluray",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "Funksjoner:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Versjon:",
- "LabelLastResult": "Siste resultat:",
"OptionHasSubtitles": "Undertekster",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Temasang",
@@ -268,8 +153,6 @@
"TabMovies": "Filmer",
"TabStudios": "Studio",
"TabTrailers": "Trailere",
- "LabelArtists": "Artister:",
- "LabelArtistsHelp": "Skill flere med semikolon ;",
"HeaderLatestMovies": "Siste Filmer",
"HeaderLatestTrailers": "Siste Trailers",
"OptionHasSpecialFeatures": "Spesialfunksjoner",
@@ -290,32 +173,24 @@
"OptionFriday": "Fredag",
"OptionSaturday": "L\u00f8rdag",
"HeaderManagement": "Strying",
- "LabelManagement": "Administrasjon",
"OptionMissingImdbId": "Mangler IMDb ID",
"OptionMissingTvdbId": "Mangler TVDB ID",
"OptionMissingOverview": "Mangler oversikt",
"OptionFileMetadataYearMismatch": "Fil\/Metadata \u00e5r mismatch",
"TabGeneral": "Genrelt",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Logg",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "Om",
"TabSupporterKey": "Supporter-n\u00f8kkel",
"TabBecomeSupporter": "Bli en supporter",
- "ProjectHasCommunity": "Emby har et voksende fellesskap av brukere og bidragsytere.",
"CheckoutKnowledgeBase": "Sjekk ut v\u00e5r kunnskapsbase for \u00e5 hjelpe deg til \u00e5 f\u00e5 mest mulig ut av Emby.",
"SearchKnowledgeBase": "S\u00f8k kunnskapsbasen",
"VisitTheCommunity": "Bes\u00f8k oss",
- "VisitProjectWebsite": "Bes\u00f8k Emby Media",
- "VisitProjectWebsiteLong": "Bes\u00f8k Emby.media for \u00e5 f\u00e5 de siste nyhetene og holde tritt med utviklerbloggen.",
"OptionHideUser": "Skjul brukere fra logginn-skjermen",
- "OptionHideUserFromLoginHelp": "Praktisk for private eller skjulte administratorer. Brukeren vil m\u00e5tte logge inn manuelt ved \u00e5 skrive inn brukernavn og passord.",
"OptionDisableUser": "Deaktiver denne brukeren",
"OptionDisableUserHelp": "Hvis avsl\u00e5tt vil ikke serveren godta noen forbindelser fra denne brukeren. Eksisterende forbindelser vil avsluttes umiddelbart.",
"HeaderAdvancedControl": "Avansert Kontroll",
"LabelName": "Navn",
- "ButtonHelp": "Hjelp",
"OptionAllowUserToManageServer": "TIllatt denne brukeren \u00e5 administrere serveren",
"HeaderFeatureAccess": "Funksjonstilgang",
"OptionAllowMediaPlayback": "Tillate avspilling av media",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Tillate sletting av media",
"OptionAllowManageLiveTv": "Tillate administrasjon av Live TV",
"OptionAllowRemoteControlOthers": "Tillat fjernstyring av andre brukere",
- "OptionAllowRemoteSharedDevices": "Tillate fjernstyring av delte enheter",
- "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheter betraktes som delte inntil en bruker begynner \u00e5 styre dem.",
- "OptionAllowLinkSharing": "Tillat deling p\u00e5 sosiale media",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Fjernstyring",
"OptionMissingTmdbId": "Mangler Tmdb ID",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Velg",
"ButtonGroupVersions": "Gruppeversjoner",
"PismoMessage": "Utnytte Pismo File Mount gjennom en donert lisens.",
- "TangibleSoftwareMessage": "Utnytte konkrete l\u00f8sninger Java \/ C # omformere gjennom en donert lisens.",
- "HeaderCredits": "Credits",
"PleaseSupportOtherProduces": "Vennligst gi st\u00f8tte til andre gratisprodukter vi benytter:",
"VersionNumber": "Versjon {0}",
"TabPaths": "Stier",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Avansert",
- "OptionRelease": "Offisiell utgivelse",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Ustabil)",
"LabelAllowServerAutoRestart": "Tillat at serveren restartes automatisk for \u00e5 gjennomf\u00f8re oppdateringer",
"LabelAllowServerAutoRestartHelp": "Serveren vil kun restartes i inaktive perioder, n\u00e5r ingen brukere er aktive.",
"LabelEnableDebugLogging": "Sl\u00e5 p\u00e5 debug logging.",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Angi egendefinerte stier der du \u00f8nsker. La feltene st\u00e5 tomme for \u00e5 bruke standardinnstillingene.",
"LabelCachePath": "Buffer sti:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Bilder etter navn sti:",
"LabelImagesByNamePathHelp": "Angi en egen katalog for nedlastede bilder for skuespiller, sjanger og studio.",
"LabelMetadataPath": "Metadata sti:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episoder",
"OptionOtherVideos": "Andre Videoer",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Skru p\u00e5 automatiske oppdateringer",
"LabelAutomaticUpdatesTmdb": "Aktiver automatisk oppdateringer fra TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Aktiver automatisk oppdateringer fra TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personlig API-n\u00f8kkel:",
- "LabelFanartApiKeyHelp": "Foresp\u00f8rsler for fanart uten personlig API-n\u00f8kkel vil gi resultater som ble godkjent for over 7 dager siden. Med en personlig API-n\u00f8kkel synker dette til 48 timer, og med et fanart VIP-medlemskap synker det ytterliger til ca. 10 minutter.",
"ExtractChapterImagesHelp": "Ved \u00e5 hente ut kapittelbilder kan klientene vise grafiske menyer for valg av sccene. Denne prosessen kan v\u00e6re treg, CPU-intensiv og krever flerfoldige gigabytes med plass. Prosessen kj\u00f8res n\u00e5r videoer scannes, og kan ogs\u00e5 kj\u00f8res om natten. Dette er konfigurerbart under Planlagte Aktiviteter. Det er ikke anbefalt \u00e5 kj\u00f8re dette mens serveren er i bruk til visning av media.",
"LabelMetadataDownloadLanguage": "Foretrukket nedlastingsspr\u00e5k:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passord er ikke n\u00f8dvendig n\u00e5r du logger inn fra lokalhost.",
"TabGuide": "Guide",
"TabChannels": "Kanaler",
- "TabCollections": "Samlinger",
"HeaderChannels": "Kanaler",
"TabRecordings": "Opptak",
"TabScheduled": "Planlagt",
"TabSeries": "Serier",
- "TabFavorites": "Favoritter",
- "TabMyLibrary": "Mitt Bibliotek",
"ButtonCancelRecording": "Avbryt Opptak",
"HeaderPrePostPadding": "Margin f\u00f8r\/etter",
"LabelPrePaddingMinutes": "Margin f\u00f8r programstart i minutter:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Innstillinger",
"ButtonRefreshGuideData": "Oppdater Guide Data",
- "ButtonRefresh": "Oppdater",
- "ButtonAdvancedRefresh": "Avansert Oppfrskning",
"OptionPriority": "Prioritet",
"OptionRecordOnAllChannels": "Ta opptak p\u00e5 alle kanaler",
"OptionRecordAnytime": "Ta opptak n\u00e5r som helst",
"OptionRecordOnlyNewEpisodes": "Ta opptak kun av nye episoder",
- "HeaderRepeatingOptions": "Gjenta alternativer",
"HeaderDays": "Dager",
"HeaderActiveRecordings": "Aktive opptak",
"HeaderLatestRecordings": "Siste opptak",
@@ -431,17 +284,16 @@
"ButtonEdit": "Rediger",
"ButtonRecord": "Opptak",
"ButtonDelete": "Slett",
- "ButtonRemove": "Fjern",
"OptionRecordSeries": "Ta opptak av Serier",
"HeaderDetails": "Detaljer",
+ "OptionFolderSort": "Mapper",
+ "OptionBackdrop": "Bakgrunn",
"TitleLiveTV": "Live TV",
"LabelNumberOfGuideDays": "Antall dager av guide data som skal lastes ned",
"LabelNumberOfGuideDaysHelp": "Nedlasting av guide data for flere dager gir muligheten for \u00e5 planlegge i forveien og for \u00e5 se flere listinger. Dette vil ogs\u00e5 ta lengre tid for nedlasting. Auto vil velge basert p\u00e5 antall kanaler.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Tjenester",
"LiveTvPluginRequired": "En Live TV tilbyder trengs for \u00e5 kunne fortsette.",
"LiveTvPluginRequiredHelp": "Vennligst installer en av v\u00e5re tilgjengelige programtillegg, f.eks Next Pvr eller ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Tilpass for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Meny",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Prim\u00e6r",
"HeaderFetchImages": "Hent Bilder:",
"HeaderImageSettings": "Bildeinnstillinger",
- "TabOther": "Andre",
"LabelMaxBackdropsPerItem": "Maks antall av backdrops for hvert element:",
"LabelMaxScreenshotsPerItem": "Maks antall av screenshots for hvert element:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop nedlastings bredde:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Mannskap",
"HeaderAdditionalParts": "Tilleggsdeler",
"ButtonSplitVersionsApart": "Splitt versjoner fra hverandre",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Mangler",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Sti erstatninger er brukt for \u00e5 koble en katalog p\u00e5 serveren til en katalog som brukeren har tilgang til. Ved \u00e5 gi brukerne direkte tilgang til media p\u00e5 serveren kan de v\u00e6re i stand til \u00e5 spille dem direkte over nettverket, og unng\u00e5 \u00e5 bruke serverens ressurser til \u00e5 streame og transcode dem.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Maks kvalitet",
"OptionEnableDebugTranscodingLogging": "Sl\u00e5 p\u00e5 debug-logging av transcoding",
"OptionEnableDebugTranscodingLoggingHelp": "Dette vil lage veldig store log-filer og er kun anbefalt ved feils\u00f8king.",
+ "ButtonNew": "Ny",
+ "TabMetadata": "Metadata",
+ "TabImages": "Bilder",
+ "TabCollectionTitles": "Titler",
+ "ButtonSearch": "S\u00f8k",
+ "ButtonRemove": "Fjern",
"EditCollectionItemsHelp": "Legg til eller fjern hvilken som helst film, serie, album, bok eller spill som du \u00f8nsker \u00e5 gruppere innen denne samlingen.",
"HeaderAddTitles": "Legg til Titler",
"LabelEnableDlnaPlayTo": "Sl\u00e5 p\u00e5 DLNA Play To",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Systemstier",
"LinkCommunity": "Samfunn",
"LinkGithub": "Github",
- "LinkApi": "API",
"LinkApiDocumentation": "API Dokumentasjon",
"LabelFriendlyServerName": "Vennlig server navn:",
"LabelFriendlyServerNameHelp": "Dette navnet vil bli brukt for \u00e5 identifisere denne serveren. Hvis feltet er tomt, vil maskinens navn bli brukt.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "Ny Samling",
- "ButtonSubmit": "Send",
"ButtonCreate": "Opprett",
- "LabelCustomCss": "Tilpass CSS:",
- "LabelCustomCssHelp": "Bruk din egen CSS p\u00e5 web-grensesnittet.",
- "LabelLocalHttpServerPortNumber": "Lokal HTTP port:",
- "LabelLocalHttpServerPortNumberHelp": "TCP-portnummeret som Emby sin http server skal koble seg til.",
- "LabelPublicHttpPort": "Offentlig HTTP port:",
- "LabelPublicHttpPortHelp": "Den offentlige porten som kobles til den lokale porten.",
- "LabelPublicHttpsPort": "Offentlig HTTPS port:",
- "LabelPublicHttpsPortHelp": "Den offentlige porten som den lokale porten kobles til.",
- "LabelEnableHttps": "Oppgi HTTPS som ekstern adresse",
- "LabelEnableHttpsHelp": "Hvis denne er aktivert vil serveren oppgi en HTTPS URL som sin eksterne adresse. Dette kan \u00f8delegge for klienter som enda ikke st\u00f8tter HTTPS",
- "LabelHttpsPort": "Lokal HTTPS port:",
- "LabelHttpsPortHelp": "TCP-portnummeret som Emby sin https server skal koble seg til.",
"LabelWebSocketPortNumber": "Web socket portnummer:",
- "LabelEnableAutomaticPortMap": "Aktiver automatisk portmapping",
- "LabelEnableAutomaticPortMapHelp": "Fors\u00f8k automatisk mapping av den offentlige port til den lokale port via UPnP. Dette fungerer ikke med alle rutere.",
"LabelExternalDDNS": "Ekstern WAN-adresse:",
"LabelExternalDDNSHelp": "Hvis du har en dynamisk DNS skriver du det her. Emby apps vil bruke den n\u00e5r du kobler til eksternt. La st\u00e5 tom for automatisk gjenkjenning.",
"TabResume": "Forsette",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Klienter",
"LabelCompleted": "Fullf\u00f8rt",
+ "LabelFailed": "Feilet",
"LabelSkipped": "Hoppet over",
"HeaderEpisodeOrganization": "Organisering av episoder",
+ "LabelSeries": "Serie:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending av episode nummer:",
"LabelEndingEpisodeNumberHelp": "Kun n\u00f8dvendig for multi-episode filer",
"HeaderSupportTheTeam": "St\u00f8tt Emby teamet!",
@@ -627,16 +473,13 @@
"OptionMove": "Flytt",
"LabelTransferMethodHelp": "Kopier eller flytt filer fra watch mappen",
"HeaderLatestNews": "Siste nyheter",
- "HeaderHelpImproveProject": "Hjelp med \u00e5 forbedre Emby",
"HeaderRunningTasks": "Kj\u00f8rende oppgaver",
"HeaderActiveDevices": "Aktive enheter",
"HeaderPendingInstallations": "Installeringer i k\u00f8",
- "HeaderServerInformation": "Serverinformasjon",
"ButtonRestartNow": "Restart N\u00e5",
"ButtonRestart": "Restart",
"ButtonShutdown": "Sl\u00e5 Av",
"ButtonUpdateNow": "Oppdater N\u00e5",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Vennligst sl\u00e5 av serveren og oppdater manuelt.",
"NewServerVersionAvailable": "En ny versjon av Emby Server er tilgjengelig!",
"ServerUpToDate": "Emby Server er oppdatert med seneste versjon",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Avgj\u00f8r tiden i sekunder mellom server levende meldinger.",
"LabelDefaultUser": "Standard bruker:",
"LabelDefaultUserHelp": "Avgj\u00f8r hvilket bruker bibliotek som skal bli vist p\u00e5 koblede enheter. Dette kan bli overskrevet for hver enhet som bruker profiler.",
+ "HeaderPlaybackSettings": "Avspillingsinnstillinger",
"TitleDlna": "DLNA",
- "TitleChannels": "Kanaler",
"HeaderServerSettings": "Serverinnstillinger",
"LabelWeatherDisplayLocation": "Omr\u00e5de for v\u00e6rvisning:",
"LabelWeatherDisplayLocationHelp": "US zip kode \/ By, Stat, Land \/ By, Land",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "N\u00e5r deaktiverte kan brukere vises en innloggingskjerm med et visuelt utvalg av brukere.",
"OptionOtherApps": "Andre applikasjoner",
"OptionMobileApps": "Mobile applikasjoner",
+ "TabNotifications": "Varslinger",
"HeaderNotificationList": "Klikk p\u00e5 en varsling for \u00e5 konfigurere dennes sending-alternativer.",
+ "LabelNotificationEnabled": "Sl\u00e5 p\u00e5 denne varslingen",
+ "NotificationOptionVideoPlayback": "Videoavspilling startet",
+ "NotificationOptionAudioPlayback": "Lydavspilling startet",
+ "NotificationOptionGamePlayback": "Spill startet",
+ "NotificationOptionNewLibraryContent": "Nytt innhold er lagt til",
+ "NotificationOptionServerRestartRequired": "Server m\u00e5 startes p\u00e5 nytt",
+ "LabelMonitorUsers": "Monitorer aktivitet fra:",
+ "LabelSendNotificationToUsers": "Send varslingen til:",
+ "LabelUseNotificationServices": "Bruk f\u00f8lgende tjeneste:",
"NotificationOptionApplicationUpdateAvailable": "Oppdatering tilgjengelig",
"NotificationOptionApplicationUpdateInstalled": "Oppdatering installert",
"NotificationOptionPluginUpdateInstalled": "Oppdatert programtillegg installert",
"NotificationOptionPluginInstalled": "Programtillegg installert",
"NotificationOptionPluginUninstalled": "Programtillegg er fjernet",
- "NotificationOptionVideoPlayback": "Videoavspilling startet",
- "NotificationOptionAudioPlayback": "Lydavspilling startet",
- "NotificationOptionGamePlayback": "Spill startet",
- "NotificationOptionVideoPlaybackStopped": "Videoavspilling stoppet",
- "NotificationOptionAudioPlaybackStopped": "Lydavspilling stoppet",
- "NotificationOptionGamePlaybackStopped": "Spill stoppet",
"NotificationOptionTaskFailed": "Planlagt oppgave feilet",
"NotificationOptionInstallationFailed": "Installasjon feilet",
- "NotificationOptionNewLibraryContent": "Nytt innhold er lagt til",
- "NotificationOptionNewLibraryContentMultiple": "Nytt innhold lagt til (flere)",
- "NotificationOptionCameraImageUploaded": "Bilde fra kamera lastet opp",
- "NotificationOptionUserLockedOut": "Bruker er utestengt",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server m\u00e5 startes p\u00e5 nytt",
- "LabelNotificationEnabled": "Sl\u00e5 p\u00e5 denne varslingen",
- "LabelMonitorUsers": "Monitorer aktivitet fra:",
- "LabelSendNotificationToUsers": "Send varslingen til:",
- "LabelUseNotificationServices": "Bruk f\u00f8lgende tjeneste:",
"CategoryUser": "Bruker",
"CategorySystem": "System",
- "CategoryApplication": "Applikasjon",
- "CategoryPlugin": "Programtillegg",
"LabelMessageTitle": "Meldingstittel:",
"LabelAvailableTokens": "Tilgjengelige tokens:",
"AdditionalNotificationServices": "Bla gjennom katalogen over programtillegg for \u00e5 installere valgfrie varslingstjenester.",
+ "LabelSelectUsers": "Velg brukere:",
"OptionAllUsers": "Alle brukere:",
"OptionAdminUsers": "Administratorer",
"OptionCustomUsers": "Tilpasset",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "H\u00f8yre",
"ButtonBack": "Tilbake",
"ButtonInfo": "Info",
- "ButtonOsd": "Skjermmeldinger",
"ButtonPageUp": "Side Opp",
"ButtonPageDown": "Side Ned",
"PageAbbreviation": "PG",
"ButtonHome": "Hjem",
- "ButtonSearch": "S\u00f8k",
"ButtonSettings": "Innstillinger",
"ButtonTakeScreenshot": "Ta Skjermbilde",
"ButtonLetterUp": "Pil Opp",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Spilles Av",
"TabNavigation": "Navigering",
- "TabControls": "Kontrollerer",
+ "ButtonFullscreen": "Veksle fullskjerm",
"ButtonScenes": "Scener",
"ButtonSubtitles": "Undertekster",
+ "ButtonAudioTracks": "Lydspor",
+ "ButtonPreviousTrack": "Forrige Spor",
+ "ButtonNextTrack": "Neste Spor",
"ButtonStop": "Stopp",
"ButtonPause": "Pause",
- "ButtonNext": "Neste",
- "ButtonPrevious": "Forrige",
"LabelGroupMoviesIntoCollections": "Grupp\u00e9r filmer i samlinger",
"LabelGroupMoviesIntoCollectionsHelp": "Ved visning av filmlister vil filmer som tilh\u00f8rer en samling bli vist som ett gruppeelement.",
+ "CategoryApplication": "Applikasjon",
+ "CategoryPlugin": "Programtillegg",
"NotificationOptionPluginError": "Programtillegg feilet",
+ "TabControls": "Kontrollerer",
"ButtonVolumeUp": "Volum opp",
"ButtonVolumeDown": "Volum ned",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Siste Media",
+ "OptionNoSubtitles": "Ingen undertekster",
"OptionSpecialFeatures": "Spesielle Funksjoner",
+ "ChannelAccessHelp": "Velg kanaler som skal deler med denne brukeren. Administratorer har mulighet til \u00e5 editere p\u00e5 alle kanaler som benytter metadata behandleren.",
"HeaderCollections": "Samlinger",
"LabelProfileCodecsHelp": "Separert med komma. Dette feltet kan forbli tomt for \u00e5 gjelde alle codecs.",
"LabelProfileContainersHelp": "Separert med komma. Dette feltet kan forbli tomt for \u00e5 gjelde alle kontainere.",
"HeaderResponseProfile": "Responsprofil",
"LabelType": "Type:",
- "LabelPersonRole": "Rolle:",
- "LabelPersonRoleHelp": "Rolle er vanligvis kun tilgjengelig for skuespillere.",
"LabelProfileContainer": "Kontainer:",
"LabelProfileVideoCodecs": "Video kodek:",
"LabelProfileAudioCodecs": "Lyd kodek:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Hvis aktivert, blir alle videoer representert i DIDL som \"object.item.videoItem\" i stedet for en mer bestemt type, for eksempel \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "St\u00f8ttede Media Typer:",
"TabIdentification": "Identifisering",
- "HeaderIdentification": "Identifisering",
"TabDirectPlay": "Direkte Avspill",
"TabContainers": "Kontainere",
"TabCodecs": "Kodeker",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Maks bitrate:",
"LabelMaxBitrateHelp": "Spesifiser en maks bitrate i for begrensede b\u00e5ndbredde milj\u00f8er, eller hvis enheten p\u00e5legger sin egen begrensning.",
- "LabelMaxStreamingBitrate": "Maks streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Spesifiser en maks bitrate n\u00e5r streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Maks synk bitrate:",
- "LabelMaxStaticBitrateHelp": "Spesifiser en maks bitrate ved synkronisering av innhold i h\u00f8y kvalitet.",
- "LabelMusicStaticBitrate": "Musikk synk bitrate:",
- "LabelMusicStaticBitrateHelp": "Spesifiser en maks bitrate for musikk syncking",
- "LabelMusicStreamingTranscodingBitrate": "Musikk transkoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Spesifiser en maks bitrate for streaming musikk",
"OptionIgnoreTranscodeByteRangeRequests": "Ignorer Transcode byte rekkevidde foresp\u00f8rsler",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Hvis aktivert vil disse foresp\u00f8rslene bli honorert men ignorert i byte rekkevidde headeren.",
"LabelFriendlyName": "Vennlig navn",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Dette kreves for noen enheter som ikke tidss\u00f8ker veldig godt.",
"HeaderSubtitleDownloadingHelp": "N\u00e5r Emby skanner videofilene dine, kan den s\u00f8ke etter manglende undertekster, og laste dem ned ved hjelp av en undertekst-leverand\u00f8r som OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Last ned undertekster for:",
- "MessageNoChapterProviders": "Installer en kapittel tilbyder som eksempelvis ChapterDb for \u00e5 aktivere kapittel muligheter.",
- "LabelSkipIfGraphicalSubsPresent": "Hopp om videoen inneholder allerede grafiske undertekster",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Undertekster",
- "TabChapters": "Kapitler",
- "HeaderDownloadChaptersFor": "Last ned kapittelnavn for:",
"LabelOpenSubtitlesUsername": "Open Subtitles brukernavn:",
"LabelOpenSubtitlesPassword": "Open Subtitles passord:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Spill av lydsporet uavhengig av spr\u00e5k",
- "LabelSubtitlePlaybackMode": "Undertekst modus:",
"LabelDownloadLanguages": "Last ned spr\u00e5k:",
"ButtonRegister": "Registrer",
+ "LabelSkipIfGraphicalSubsPresent": "Hopp om videoen inneholder allerede grafiske undertekster",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Hopp hvis standard lydsporet matcher nedlastingen spr\u00e5k",
"LabelSkipIfAudioTrackPresentHelp": "Fjern merkingen for \u00e5 sikre at alle videoene har undertekster, uavhengig av lydspr\u00e5k.",
+ "NotificationOptionNewLibraryContentMultiple": "Nytt innhold lagt til (flere)",
"HeaderSendMessage": "Send Melding",
"ButtonSend": "Send",
"LabelMessageText": "Meldingstekst:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Versjon:",
+ "LabelLastResult": "Siste resultat:",
+ "ButtonOsd": "Skjermmeldinger",
"MessageNoAvailablePlugins": "Ingen tilgjengelige programtillegg.",
"LabelDisplayPluginsFor": "Vis plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episodenavn",
- "LabelSeriesNamePlain": "Serienavn",
"ValueSeriesNamePeriod": "Serier.navn",
"ValueSeriesNameUnderscore": "Serie_navn",
"ValueEpisodeNamePeriod": "Episode.navn",
"ValueEpisodeNameUnderscore": "Episode_navn",
- "LabelSeasonNumberPlain": "Sesong nummer",
- "LabelEpisodeNumberPlain": "Episode nummer",
- "LabelEndingEpisodeNumberPlain": "Siste episode nummer",
"HeaderTypeText": "Skriv Tekst",
"LabelTypeText": "Tekst",
+ "OptionDefaultSubtitles": "Standard",
+ "OptionOnlyForcedSubtitles": "Kun tvungede undertekster",
+ "OptionAlwaysPlaySubtitles": "Alltid vis undertekster",
+ "OptionDefaultSubtitlesHelp": "Undertekster som samsvarer med foretrukket spr\u00e5k vil bli vist n\u00e5r lyden er p\u00e5 et fremmed spr\u00e5k.",
+ "OptionOnlyForcedSubtitlesHelp": "Kun undertekster markert som tvunget vil bli vist.",
+ "OptionAlwaysPlaySubtitlesHelp": "Undertekster som samsvarer med foretrukket spr\u00e5k vil bli vist uavhengig lydens spr\u00e5k.",
+ "OptionNoSubtitlesHelp": "Undertekster vil ikke bli lastet som standard.",
+ "TangibleSoftwareMessage": "Utnytte konkrete l\u00f8sninger Java \/ C # omformere gjennom en donert lisens.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Samlinger",
+ "TabFavorites": "Favoritter",
+ "TabMyLibrary": "Mitt Bibliotek",
+ "LabelCustomizeOptionsPerMediaType": "Tilpass for media type:",
+ "LabelPlayDefaultAudioTrack": "Spill av lydsporet uavhengig av spr\u00e5k",
+ "LabelSubtitlePlaybackMode": "Undertekst modus:",
+ "TabOther": "Andre",
+ "NotificationOptionVideoPlaybackStopped": "Videoavspilling stoppet",
+ "NotificationOptionAudioPlaybackStopped": "Lydavspilling stoppet",
+ "NotificationOptionGamePlaybackStopped": "Spill stoppet",
"HeaderSearchForSubtitles": "S\u00f8k etter undertekster",
- "ButtonMore": "Mer",
"MessageNoSubtitleSearchResultsFound": "Ingen s\u00f8k funnet.",
"TabDisplay": "Skjerm",
"TabLanguages": "Spr\u00e5k",
- "TabAppSettings": "App-innstillinger",
"LabelEnableThemeSongs": "Sl\u00e5 p\u00e5 tema sanger",
"LabelEnableBackdrops": "Sl\u00e5 p\u00e5 backdrops",
"LabelEnableThemeSongsHelp": "Hvis p\u00e5sl\u00e5tt vil tema sanger bli avspilt i bakgrunnen mens man blar igjennom biblioteket.",
"LabelEnableBackdropsHelp": "Hvis p\u00e5sl\u00e5tt vil backdrops bli vist i bakgrunnen p\u00e5 noen sider mens man blar igjennom biblioteket.",
- "HeaderHomePage": "Hjemmeside",
- "HeaderSettingsForThisDevice": "Innstillinger for denne enheten",
"OptionAuto": "Auto",
"OptionYes": "Ja",
"OptionNo": "Nei",
- "HeaderOptions": "Alternativer",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Hjemme side seksjon 1:",
"LabelHomePageSection2": "Hjemme side seksjon 2:",
"LabelHomePageSection3": "Hjemme side seksjon 3:",
- "LabelHomePageSection4": "Hjemme side seksjon 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Fortsette",
"OptionLatestMedia": "Siste media",
- "OptionLatestChannelMedia": "Siste kanal elementer",
- "HeaderLatestChannelItems": "Siste Kanal Elementer",
"OptionNone": "Ingen",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Rapporter",
"HeaderMetadataManager": "Metadata Behandler",
- "HeaderSettings": "Innstillinger",
"MessageLoadingChannels": "Laster kanal innhold...",
- "MessageLoadingContent": "Laster innhold...",
"ButtonMarkRead": "Marker Som Lest",
"OptionDefaultSort": "Standard",
"OptionCommunityMostWatchedSort": "Mest Sett",
"TabNextUp": "Neste",
- "PlaceholderUsername": "Brukernavn",
- "HeaderBecomeProjectSupporter": "Bli en Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "Ingen film forslag er forel\u00f8pig tilgjengelig. Start med \u00e5 se og ranger filmer. Kom deretter tilbake for \u00e5 f\u00e5 forslag p\u00e5 anbefalinger.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Spillelister tillater deg \u00e5 lage lister over innhold til \u00e5 spille etter hverandre p\u00e5 en gang. For \u00e5 legge til elementer i spillelister, h\u00f8yreklikk eller trykk og hold, og velg Legg til i spilleliste.",
- "MessageNoPlaylistItemsAvailable": "Denne spillelisten er forel\u00f8pig tom",
+ "ButtonClose": "Lukk",
+ "HeaderConfirmDeletion": "Bekreft Kansellering",
+ "HeaderHomePage": "Hjemmeside",
+ "HeaderSettingsForThisDevice": "Innstillinger for denne enheten",
"ButtonDismiss": "Avvis",
+ "ButtonMore": "Mer",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Kanaler",
"LabelChannelStreamQuality": "Foretrukket internet streaming kvalitet.",
"LabelChannelStreamQualityHelp": "P\u00e5 en linje med lav b\u00e5ndbredde, vil begrensing av kvalitet hjelpe med \u00e5 gi en mer behagelig streaming opplevelse.",
"OptionBestAvailableStreamQuality": "Beste tilgjengelig",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Slett innhold etter: (dager)",
"LabelChannelDownloadAgeHelp": "Nedlastet innhold eldre enn dette vil bli slettet. Det vil v\u00e6re avspillbart via internett streaming.",
"ChannelSettingsFormHelp": "Installer kanaler som eksempel Trailers og Vimeo i programtillegg katalogen.",
- "ButtonOptions": "Alternativer",
- "ViewTypePlaylists": "Spillelister",
+ "ButtonAddToCollection": "Legg til samling",
+ "ButtonSubmit": "Send",
"ViewTypeMovies": "Filmer",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Spill",
"ViewTypeMusic": "Musikk",
- "ViewTypeMusicGenres": "Sjangere",
- "ViewTypeMusicArtists": "Artist",
"ViewTypeBoxSets": "Samlinger",
- "ViewTypeChannels": "Kanaler",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Sendes n\u00e5",
- "ViewTypeLatestGames": "Siste spill",
- "ViewTypeRecentlyPlayedGames": "Nylig spilt",
- "ViewTypeGameFavorites": "Favoritter",
- "ViewTypeGameSystems": "Spillsystemer",
- "ViewTypeGameGenres": "Sjangere",
- "ViewTypeTvResume": "Fortsette",
- "ViewTypeTvNextUp": "Neste",
- "ViewTypeTvLatest": "Siste",
- "ViewTypeTvShowSeries": "Serier",
- "ViewTypeTvGenres": "Sjangere",
- "ViewTypeTvFavoriteSeries": "Favoritt serier",
- "ViewTypeTvFavoriteEpisodes": "Favoritt episoder",
- "ViewTypeMovieResume": "Fortsette",
- "ViewTypeMovieLatest": "Siste",
- "ViewTypeMovieMovies": "Filmer",
- "ViewTypeMovieCollections": "Samlinger",
- "ViewTypeMovieFavorites": "Favoritter",
- "ViewTypeMovieGenres": "Sjangere",
- "ViewTypeMusicLatest": "Siste",
- "ViewTypeMusicPlaylists": "Spillelister",
- "ViewTypeMusicAlbums": "Albumer",
- "ViewTypeMusicAlbumArtists": "Album artister",
"HeaderOtherDisplaySettings": "Visnings Innstillinger",
- "ViewTypeMusicSongs": "Sanger",
- "ViewTypeMusicFavorites": "Favoritter",
- "ViewTypeMusicFavoriteAlbums": "Favorittalbumer",
- "ViewTypeMusicFavoriteArtists": "Favorittartister",
- "ViewTypeMusicFavoriteSongs": "Favorittsanger",
- "HeaderMyViews": "Mitt Syn",
"LabelSelectFolderGroups": "Automatisk gruppering av innhold fra f\u00f8lgende mapper til oversikter som filmer, musikk og TV:",
"LabelSelectFolderGroupsHelp": "Mapper som ikke er valgt vil bli vist for seg selv i deres egen visning.",
+ "ViewTypeChannels": "Kanaler",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Vis Voksen materiale",
+ "MessageNoChapterProviders": "Installer en kapittel tilbyder som eksempelvis ChapterDb for \u00e5 aktivere kapittel muligheter.",
+ "TabChapters": "Kapitler",
+ "HeaderDownloadChaptersFor": "Last ned kapittelnavn for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media Mapper",
+ "LabelHomePageSection4": "Hjemme side seksjon 4:",
+ "OptionLatestChannelMedia": "Siste kanal elementer",
+ "HeaderLatestChannelItems": "Siste Kanal Elementer",
"TitleRemoteControl": "Ekstern Kontroll",
+ "HeaderMyViews": "Mitt Syn",
"OptionLatestTvRecordings": "Siste opptak",
+ "ButtonRefresh": "Oppdater",
"LabelProtocolInfo": "Protokoll info:",
"LabelProtocolInfoHelp": "Verdien som blir brukt for \u00e5 gi respons til GetProtocolInfo foresp\u00f8rsler fra enheten.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Synk bruker sett data til nfo'er for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Utgivelsesdato format:",
- "LabelKodiMetadataDateFormatHelp": "Alle datoer inenfor nfo'er vil bli lest og skrevet til med bruk av dette formatet.",
- "LabelKodiMetadataSaveImagePaths": "Lagre bilde stier inne i nfo filer",
- "LabelKodiMetadataSaveImagePathsHelp": "Dette anbefales hvis du har bilde filnavn som ikke f\u00f8lger Kodi retningslinjer.",
- "LabelKodiMetadataEnablePathSubstitution": "Aktiver sti erstatter",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiverer sti erstatning av bilde stier ved hjelp av serverens sti erstatter innstillinger.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Vis sti erstatter",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Vis en samling for \u00e5 vise film samlinger",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "kopier extrafanart inn til extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "Ved nedlasting av bilder kan de bli lagret inn til b\u00e5de extrafanart og extrathumbs for maksimum Kodi skin kompabilitet.",
+ "HeaderSubtitles": "Undertekster",
"TabServices": "Tjenester",
"TabLogs": "Logger",
"HeaderServerLogFiles": "Server log filer:",
@@ -1029,6 +820,8 @@
"LabelAppName": "Applikasjonsnavn",
"LabelAppNameExample": "Eksempel: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Brukere",
+ "TabScheduledTasks": "Planlagte Oppgaver",
"HeaderHttpHeaders": "Http Headere",
"HeaderIdentificationHeader": "Identifiseringsheader",
"LabelValue": "Verdi:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "Se",
"LabelPageSize": "Element grense:",
- "LabelPath": "Sti:",
"LabelView": "Se:",
- "TabUsers": "Brukere",
- "LabelSortName": "Sorterings navn:",
- "LabelDateAdded": "Dato lagt til:",
+ "LabelManagement": "Administrasjon",
"HeaderFeatures": "Funksjoner",
"HeaderAdvanced": "Avansert",
"ButtonSync": "Synk",
- "TabScheduledTasks": "Planlagte Oppgaver",
"HeaderChapters": "Kapitler",
"HeaderResumeSettings": "Fortsett Innstillinger",
"TabSync": "Synk",
"TitleUsers": "Brukere",
+ "LabelMaxStreamingBitrate": "Maks streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Spesifiser en maks bitrate n\u00e5r streaming.",
+ "LabelMaxStaticBitrate": "Maks synk bitrate:",
+ "LabelMaxStaticBitrateHelp": "Spesifiser en maks bitrate ved synkronisering av innhold i h\u00f8y kvalitet.",
"LabelProtocol": "Protokoll:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Synk",
"ButtonAddToPlaylist": "Legg til spilleliste",
+ "MessageNoPlaylistsAvailable": "Spillelister tillater deg \u00e5 lage lister over innhold til \u00e5 spille etter hverandre p\u00e5 en gang. For \u00e5 legge til elementer i spillelister, h\u00f8yreklikk eller trykk og hold, og velg Legg til i spilleliste.",
+ "MessageNoPlaylistItemsAvailable": "Denne spillelisten er forel\u00f8pig tom",
"TabPlaylists": "Spliielister",
- "ButtonClose": "Lukk",
"LabelAllLanguages": "Alle spr\u00e5k",
"HeaderBrowseOnlineImages": "Bla Igjennom Bilder Online",
"LabelSource": "Kilde:",
@@ -1080,7 +874,6 @@
"OptionBox": "Boks",
"OptionBoxRear": "Boks bak",
"OptionDisc": "Disk",
- "OptionIcon": "Ikon",
"OptionLogo": "Logo",
"OptionMenu": "Meny",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "uidentifisert",
"OptionMissingParentalRating": "Mangler foreldresensur",
"OptionStub": "stump",
+ "HeaderEpisodes": "Episoder:",
"OptionSeason0": "Sesong 0",
"LabelReport": "Rapport:",
"OptionReportSongs": "Sanger:",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artisert",
"OptionReportAlbums": "Albumer",
"OptionReportAdultVideos": "Voksen videoer",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Aktivitet",
"ScheduledTaskStartedWithName": "{0} startet",
"ScheduledTaskCancelledWithName": "{0} ble avbrutt",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "nedlasting av undertekster feilet for {0}",
"LabelRunningTimeValue": "Spille tide: {0}",
"LabelIpAddressValue": "Ip adresse: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "Bruker konfigurasjon har blitt oppdatert for {0}",
"UserCreatedWithName": "Bruker {0} har blitt opprettet",
"UserPasswordChangedWithName": "Passord har blitt endret for bruker {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby server har blitt oppdatert",
"AuthenticationSucceededWithUserName": "{0} autentisert med suksess",
"FailedLoginAttemptWithUserName": "P\u00e5loggingsfors\u00f8k feilet fra {0}",
- "UserDownloadingItemWithValues": "{0} laster ned {1}",
"UserStartedPlayingItemWithValues": "{0} har startet avspilling av {1}",
"UserStoppedPlayingItemWithValues": "{0} har stoppet avspilling av {1}",
"AppDeviceValues": "App: {0} , Device: {1}",
"ProviderValue": "Tilbyder: {0}",
+ "HeaderAudio": "Lyd",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Laster innhold...",
"LabelChannelDownloadSizeLimit": "Nedlastings grense (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Begrens st\u00f8rrelse for kanal nedlastings mappen.",
+ "LabelMusicStaticBitrate": "Musikk synk bitrate:",
+ "LabelMusicStaticBitrateHelp": "Spesifiser en maks bitrate for musikk syncking",
+ "LabelMusicStreamingTranscodingBitrate": "Musikk transkoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Spesifiser en maks bitrate for streaming musikk",
"HeaderRecentActivity": "Siste Aktivitet",
"HeaderPeople": "Personer",
"HeaderDownloadPeopleMetadataFor": "Last ned biografi og bilder for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Vis alle mapper som rene lagringsmapper",
"ViewTypeLiveTvRecordingGroups": "Opptak",
"ViewTypeLiveTvChannels": "Kanaler",
- "LabelEasyPinCode": "Enkel PIN-kode:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Tillat innlogging med PIN-kode via det lokale nettverket.",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Passord",
"HeaderLocalAccess": "Lokal Tilkobling",
"HeaderViewOrder": "Visnings rekkef\u00f8lge",
- "ButtonResetEasyPassword": "Tilbakestill PIN-kode",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Utgivelsesdato:",
+ "LabelEndDate": "Slutt dato:",
+ "LabelYear": "\u00c5r:",
+ "FolderTypeMixed": "Blandet innhold",
+ "FolderTypeMovies": "Filmer",
+ "FolderTypeMusic": "Musikk",
+ "FolderTypeAdultVideos": "Voksen-videoer",
+ "FolderTypePhotos": "Foto",
+ "FolderTypeMusicVideos": "Musikk-videoer",
+ "FolderTypeHomeVideos": "Hjemme-videoer",
+ "FolderTypeGames": "Spill",
+ "FolderTypeBooks": "B\u00f8ker",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artister:",
+ "LabelArtistsHelp": "Skill flere med semikolon ;",
+ "ButtonAdvancedRefresh": "Avansert Oppfrskning",
+ "LabelPersonRole": "Rolle:",
+ "LabelPersonRoleHelp": "Rolle er vanligvis kun tilgjengelig for skuespillere.",
+ "LabelPath": "Sti:",
+ "LabelSortName": "Sorterings navn:",
+ "LabelDateAdded": "Dato lagt til:",
"LabelMetadataRefreshMode": "Metadata oppfrisknings modus:",
"LabelImageRefreshMode": "Bilde oppfrisknings modus:",
"OptionDownloadMissingImages": "Last ned manglende bilder",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identifiser Element",
"HeaderIdentifyItemHelp": "Oppgi ett eller flere s\u00f8ke kriterier. Fjern kriterie for \u00e5 \u00f8ke s\u00f8ke resultater.",
- "HeaderConfirmDeletion": "Bekreft Kansellering",
"LabelFollowingFileWillBeDeleted": "F\u00f8lgende fil vil bli slettet:",
"LabelIfYouWishToContinueWithDeletion": "Hvis du \u00f8nsker \u00e5 fortsette, venligst bekreft med verdien av:",
"ButtonIdentify": "Identifiser",
"LabelAlbumArtist": "Album Artist",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Fellesskap anmeldelse:",
"LabelVoteCount": "Stemme tall:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Slagord:",
"LabelOverview": "Oversikt:",
"LabelShortOverview": "Kort oversikt:",
- "LabelReleaseDate": "Utgivelsesdato:",
- "LabelYear": "\u00c5r:",
"LabelPlaceOfBirth": "F\u00f8dested:",
- "LabelEndDate": "Slutt dato:",
"LabelAirDate": "Sendings dager:",
"LabelAirTime:": "Sendings tid:",
"LabelRuntimeMinutes": "Spilletid (minutter):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata innstilinger",
"LabelLockItemToPreventChanges": "L\u00e5s dette elementet for \u00e5 hindre fremtidige endringer",
"MessageLeaveEmptyToInherit": "La v\u00e6re blank for \u00e5 arve innstillinger fra et foreldre element, eller den globale standard verdien.",
- "TabDonate": "Don\u00e9r",
"HeaderDonationType": "Donasjon type:",
"OptionMakeOneTimeDonation": "Gi en egen donasjon",
- "OptionOneTimeDescription": "Dette er en ekstra donasjon til teamet for \u00e5 vise din st\u00f8tte. Det har ikke noen ekstra fordeler, og vil ikke produsere en supporter tasten.",
- "OptionLifeTimeSupporterMembership": "Livstids supporter medlemskap",
- "OptionYearlySupporterMembership": "\u00c5rlig supporter medlemskap",
- "OptionMonthlySupporterMembership": "M\u00e5nedlig supporter medlemskap",
"OptionNoTrailer": "Ingen trailer",
"OptionNoThemeSong": "Ingen temasang",
"OptionNoThemeVideo": "Ingen tema video",
"LabelOneTimeDonationAmount": "Donasjons bel\u00f8p:",
- "ButtonDonate": "Don\u00e9r",
- "ButtonPurchase": "Purchase",
"OptionActor": "Skuespiller",
"OptionComposer": "Komponist",
"OptionDirector": "Regiss\u00f8r",
"OptionGuestStar": "Stjerne gjest",
"OptionProducer": "Produsent",
"OptionWriter": "Manus",
+ "LabelEpisodeNamePlain": "Episodenavn",
+ "LabelSeriesNamePlain": "Serienavn",
+ "LabelSeasonNumberPlain": "Sesong nummer",
+ "LabelEpisodeNumberPlain": "Episode nummer",
+ "LabelEndingEpisodeNumberPlain": "Siste episode nummer",
+ "OptionOneTimeDescription": "Dette er en ekstra donasjon til teamet for \u00e5 vise din st\u00f8tte. Det har ikke noen ekstra fordeler, og vil ikke produsere en supporter tasten.",
"LabelAirDays": "Sendings dager:",
"LabelAirTime": "Sendings tid:",
"HeaderMediaInfo": "Media informasjon",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Utvikler informasjon",
"HeaderRevisionHistory": "Revisjonshistorikk",
"ButtonViewWebsite": "Vis nettsted",
+ "ViewTypeLiveTvNowPlaying": "Sendes n\u00e5",
+ "ViewTypeLatestGames": "Siste spill",
+ "ViewTypeRecentlyPlayedGames": "Nylig spilt",
+ "ViewTypeGameFavorites": "Favoritter",
+ "ViewTypeGameSystems": "Spillsystemer",
+ "ViewTypeGameGenres": "Sjangere",
+ "ViewTypeTvResume": "Fortsette",
+ "ViewTypeTvNextUp": "Neste",
+ "ViewTypeTvLatest": "Siste",
+ "ViewTypeTvGenres": "Sjangere",
+ "ViewTypeMovieResume": "Fortsette",
+ "ViewTypeMovieLatest": "Siste",
+ "ViewTypeMovieMovies": "Filmer",
+ "ViewTypeMovieCollections": "Samlinger",
+ "ViewTypeMovieFavorites": "Favoritter",
+ "ViewTypeMovieGenres": "Sjangere",
+ "ViewTypeMusicLatest": "Siste",
+ "ViewTypeMusicAlbums": "Albumer",
+ "ViewTypeMusicAlbumArtists": "Album artister",
+ "TabDonate": "Don\u00e9r",
+ "OptionLifeTimeSupporterMembership": "Livstids supporter medlemskap",
+ "OptionYearlySupporterMembership": "\u00c5rlig supporter medlemskap",
+ "OptionMonthlySupporterMembership": "M\u00e5nedlig supporter medlemskap",
+ "ViewTypeTvShowSeries": "Serier",
+ "ViewTypeTvFavoriteSeries": "Favoritt serier",
+ "ViewTypeTvFavoriteEpisodes": "Favoritt episoder",
"HeaderXmlSettings": "Xml innstillinger",
"HeaderXmlDocumentAttributes": "Xml dokument attributter",
"HeaderXmlDocumentAttribute": "Xml dokument attributt",
"XmlDocumentAttributeListHelp": "Disse attributtene p\u00e5f\u00f8res rot elementet for alle xml responser.",
"OptionSaveMetadataAsHidden": "Lagre metadata og bilder som skjulte filer",
+ "ViewTypeMusicSongs": "Sanger",
"LabelExtractChaptersDuringLibraryScan": "Hent ut kapittel bilder under bibliotek skann",
"LabelExtractChaptersDuringLibraryScanHelp": "Hvis aktivert, vil kapittel bilder bli hentet ut mens videoer importeres under bibliotek skanning.\nHvis deaktivert, vil de bli hentet ut under planlagte oppgaver for kapittel bilder, som medf\u00f8rer at vanlig bibliotek skanning blir fortere ferdig.",
- "LabelConnectGuestUserName": "Emby brukernavn eller epostadresse:",
+ "ViewTypeMusicFavorites": "Favoritter",
+ "ViewTypeMusicFavoriteAlbums": "Favorittalbumer",
+ "ViewTypeMusicFavoriteArtists": "Favorittartister",
+ "ViewTypeMusicFavoriteSongs": "Favorittsanger",
+ "ButtonAddLocalUser": "Legg til lokal bruker",
+ "HeaderIdentification": "Identifisering",
"LabelConnectUserName": "Emby brukernavn\/epost",
"LabelConnectUserNameHelp": "Koble denne brukeren til en Emby konto for \u00e5 aktivere enkel p\u00e5loggingstilgang fra alle Emby app uten \u00e5 vite serveren ip-adresse.",
- "ButtonLearnMoreAboutEmbyConnect": "L\u00e6r mer om Emby Connect",
+ "ButtonNext": "Neste",
+ "ButtonPrevious": "Forrige",
"LabelExternalPlayers": "Eksterne avspillere:",
"LabelExternalPlayersHelp": "Vis knapper for \u00e5 spille av innhold i eksterne avspillere. Dette er bare tilgjengelig p\u00e5 enheter som st\u00f8tter url oppsett, i hovedsak Android og iOS. Med eksterne spillere er det vanligvis ingen st\u00f8tte for fjernkontroll eller gjenopptaking.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Spesiell - {0}",
"HeaderSubtitleProfile": "Undertekst Profil",
"HeaderSubtitleProfiles": "Undertekst Profiler",
"HeaderSubtitleProfilesHelp": "Undertekst profiler beskriver undertekst formater som er suportert av enheten.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Eksempel: srt",
"ButtonLearnMore": "L\u00e6re mer",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Synk bruker sett data til nfo'er for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Utgivelsesdato format:",
+ "LabelKodiMetadataDateFormatHelp": "Alle datoer inenfor nfo'er vil bli lest og skrevet til med bruk av dette formatet.",
+ "LabelKodiMetadataSaveImagePaths": "Lagre bilde stier inne i nfo filer",
+ "LabelKodiMetadataSaveImagePathsHelp": "Dette anbefales hvis du har bilde filnavn som ikke f\u00f8lger Kodi retningslinjer.",
+ "LabelKodiMetadataEnablePathSubstitution": "Aktiver sti erstatter",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiverer sti erstatning av bilde stier ved hjelp av serverens sti erstatter innstillinger.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Vis sti erstatter",
+ "LabelKodiMetadataEnableExtraThumbs": "kopier extrafanart inn til extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Ved nedlasting av bilder kan de bli lagret inn til b\u00e5de extrafanart og extrathumbs for maksimum Kodi skin kompabilitet.",
"TabPlayback": "Spill av",
"HeaderLanguagePreferences": "Spr\u00e5kpreferanser",
"TabCinemaMode": "Kino Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Bruk kun trailere fra usett innhold",
"LabelEnableIntroParentalControl": "Aktiver smart foreldre kontroll",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Disse funksjonene krever ett aktivt supporter medlemskap og installasjon av programtillegget the Trailer channel.",
"OptionTrailersFromMyMoviesHelp": "Krever oppsett av lokale trailere.",
"LabelCustomIntrosPath": "Tilpasset intro sti:",
"LabelCustomIntrosPathHelp": "En mappe med video filer. En video vil bli tilfeldig valgt og avspilt etter trailere.",
- "ValueSpecialEpisodeName": "Spesiell - {0}",
+ "ButtonOptions": "Alternativer",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Disse funksjonene krever ett aktivt supporter medlemskap og installasjon av programtillegget the Trailer channel.",
"LabelSelectInternetTrailersForCinemaMode": "Internett trailere:",
"OptionUpcomingDvdMovies": "Inkluder trailere fra nye og kommende filmer p\u00e5 DVD & Blu-ray",
"OptionUpcomingStreamingMovies": "Inkluder trailere fra nye og kommende filmer p\u00e5 Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individuelle brukere vil ha muligheten for \u00e5 deaktivere kino modus innenfor deres egne preferanser.",
"LabelEnableCinemaMode": "Aktiver kino mode",
"HeaderCinemaMode": "Kino Modus",
+ "TabDevices": "Enheter",
+ "LabelLocalHttpServerPortNumber": "Lokal HTTP port:",
+ "LabelLocalHttpServerPortNumberHelp": "TCP-portnummeret som Emby sin http server skal koble seg til.",
+ "LabelEnableAutomaticPortMap": "Aktiver automatisk portmapping",
+ "LabelEnableAutomaticPortMapHelp": "Fors\u00f8k automatisk mapping av den offentlige port til den lokale port via UPnP. Dette fungerer ikke med alle rutere.",
"LabelDateAddedBehavior": "Dato lagt til adferd for nytt innhold:",
"OptionDateAddedImportTime": "Bruk dato skannet inn til biblioteket",
"OptionDateAddedFileTime": "Bruk fil opprettelse dato",
"LabelDateAddedBehaviorHelp": "Hvis metadata verdier er tilgjengelig vil de alltid bli brukt fremfor noen av disse valgene.",
"LabelNumberTrailerToPlay": "Antall trailere \u00e5 avspille:",
+ "LabelChannelDownloadSizeLimitHelpText": "Begrens st\u00f8rrelse for kanal nedlastings mappen.",
"TitleDevices": "Enheter",
"TabCameraUpload": "Kameraopplasting",
- "TabDevices": "Enheter",
"HeaderCameraUploadHelp": "Automatisk opplasting av bilder og videoer tatt fra dine mobile enheter til Emby.",
"MessageNoDevicesSupportCameraUpload": "Du har for \u00f8yeblikket ingen enheter som st\u00f8tter kameraopplasting.",
"LabelCameraUploadPath": "Sti til kameraopplasting:",
"LabelCameraUploadPathHelp": "Velg en tilpasset sti for opplasting dersom du \u00f8nsker det. Hvis intet er spesifiser vil standardmappen brukes. Hvis du bruker en tilpasset sti vil denne ogs\u00e5 m\u00e5tte legges til i innstillingene for bibliotek.",
"LabelCreateCameraUploadSubfolder": "Lag en underkatalog for hver enhet",
"LabelCreateCameraUploadSubfolderHelp": "Spesifikke mapper kan tildeles en enhet ved \u00e5 klikke p\u00e5 den fra Enhets-siden.",
+ "ButtonInviteUser": "Invit\u00e9r Bruker",
"LabelCustomDeviceDisplayName": "Visningsnavn:",
"LabelCustomDeviceDisplayNameHelp": "Oppgi et egendefinert visningsnavn eller la det v\u00e6re tomt for \u00e5 bruke navnet som enheten rapporterer.",
"HeaderInviteUser": "Invit\u00e9r Bruker",
- "LabelConnectGuestUserNameHelp": "Dette er brukernavnet som dine venner bruker til \u00e5 logge seg p\u00e5 Emby nettside, eller bruk e-postadresse.",
"HeaderInviteUserHelp": "Dele media med venner er enklere enn noensinne med Emby Connect.",
"ButtonSendInvitation": "Send Invitasjon",
- "HeaderSignInWithConnect": "Logg inn med Emby Connect",
"HeaderGuests": "Gjester",
"HeaderLocalUsers": "Lokale Brukere",
"HeaderPendingInvitations": "Ventende invitasjoner",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Ukedager",
"OptionWeekends": "Helger",
"MessageProfileInfoSynced": "Brukerprofilinformasjon er synkronisert med Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Valgfritt: Link til din konto p\u00e5 Emby Media",
"ButtonTrailerReel": "Start trailerserie",
"HeaderTrailerReel": "Trailerserie",
"OptionPlayUnwatchedTrailersOnly": "Bare spill usette trailere",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "Nye Brukere",
"ButtonSignUp": "Registrering",
+ "LabelConnectGuestUserName": "Emby brukernavn eller epostadresse:",
+ "LabelConnectGuestUserNameHelp": "Dette er brukernavnet som dine venner bruker til \u00e5 logge seg p\u00e5 Emby nettside, eller bruk e-postadresse.",
"ButtonForgotPassword": "Glemt passord",
"OptionDisableUserPreferences": "Deaktiver tillgang til bruker preferanser",
"OptionDisableUserPreferencesHelp": "Hvis ativert, vil kun administratorer kunne konfigurere bruker profil bilder, passord og spr\u00e5k preferanser.",
@@ -1365,49 +1222,174 @@
"HeaderShareMediaFolders": "Del media mapper",
"MessageGuestSharingPermissionsHelp": "De fleste funksjonene er i utgangspunktet utilgjengelig for gjester, men kan aktiveres ved behov.",
"HeaderInvitations": "Invitasjoner",
- "LabelForgotPasswordUsernameHelp": "Skriv inn ditt brukernavn, hvis du husker det.",
"HeaderForgotPassword": "Glemt passord",
+ "LabelForgotPasswordUsernameHelp": "Skriv inn ditt brukernavn, hvis du husker det.",
"TitleForgotPassword": "Glemt passord",
"TitlePasswordReset": "Resett passord",
"LabelPasswordRecoveryPinCode": "PIN-kode:",
"HeaderPasswordReset": "Resett passord",
"HeaderParentalRatings": "Foreldresensur",
"HeaderVideoTypes": "Videotyper",
- "HeaderYears": "\u00c5r",
+ "HeaderYears": "Years",
+ "OptionPosterCard": "Plakatkort",
+ "OptionThumbCard": "Thumb-kort",
+ "OptionAllowRemoteSharedDevices": "Tillate fjernstyring av delte enheter",
+ "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheter betraktes som delte inntil en bruker begynner \u00e5 styre dem.",
+ "HeaderRemoteControl": "Fjernstyring",
+ "ViewTypeMusicGenres": "Sjangere",
+ "ViewTypeMusicArtists": "Artist",
+ "HeaderSignInWithConnect": "Logg inn med Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "API-dokumentasjon",
+ "LabelDeveloperResources": "Ressurser for Utviklere",
"HeaderAddTag": "Legg til tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Blokker innhold med f\u00f8lgende tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Serverinformasjon",
"LabelEnableSingleImageInDidlLimit": "Maksimalt et innebygd bilde",
"LabelEnableSingleImageInDidlLimitHelp": "Noen enheter vil ikke vise bildene korrekt hvis flere bilder er innebygget i Didl.",
"TabActivity": "Aktivitet",
"TitleSync": "Synk",
+ "HeaderSettings": "Innstillinger",
"OptionAllowSyncContent": "Tillat synk",
- "OptionAllowContentDownloading": "Tillat nedlasting av media",
+ "FolderTypeInherit": "Arve",
+ "LabelContentType": "Innholdstype:",
"NameSeasonUnknown": "Ukjent sesong",
"NameSeasonNumber": "Sesong {0}",
"LabelNewUserNameHelp": "Brukernavn kan inneholder internasjonale bokstaver (a-z), tall (0-9), bindestrek (-), understrek (_), apostrof (') og punktum (.)",
+ "ButtonHelp": "Hjelp",
+ "TabAccess": "Tilgang",
+ "HeaderDeviceAccess": "Enhetstilgang",
+ "OptionEnableAccessFromAllDevices": "Gi tilgang fra alle enheter",
+ "DeviceAccessHelp": "Dette gjelder bare for enheter som som kan unikt identifiseres og vil ikke forindre tilgang fra nettleser. Filtrering av brukerens enhet vil forhindre dem fra \u00e5 bruke nye enheter inntil de har blitt godkjent her.",
+ "ButtonQuickStartGuide": "Hurtigstartveiledning",
+ "HeaderSyncJobInfo": "Synk.jobb",
"TabJobs": "Jobber",
"TabSyncJobs": "Synk-jobber",
+ "HeaderTermsOfService": "Emby vilk\u00e5r for bruk.",
+ "MessagePleaseAcceptTermsOfService": "Vennligst aksepter v\u00e5re servicevilk\u00e5r og personvernpolicy f\u00f8r du fortsetter.",
+ "OptionIAcceptTermsOfService": "Jeg aksepterer servicevilk\u00e5rene",
+ "ButtonPrivacyPolicy": "Personvernpolicy",
+ "ButtonTermsOfService": "Servicevilk\u00e5r",
+ "OptionHideUserFromLoginHelp": "Praktisk for private eller skjulte administratorer. Brukeren vil m\u00e5tte logge inn manuelt ved \u00e5 skrive inn brukernavn og passord.",
+ "LabelEnterConnectUserName": "Brukernavn eller epostadresse:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Behandle arkivfiler som media",
+ "OptionDetectArchiveFilesAsMediaHelp": "Hvis aktivert blir .rar- og .zipfiler behandlet som mediafiler.",
+ "ButtonDonate": "Don\u00e9r",
+ "HeaderOptions": "Alternativer",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Gi tilgang til alle kanaler",
+ "LabelAutomaticUpdates": "Skru p\u00e5 automatiske oppdateringer",
+ "LabelFanartApiKey": "Personlig API-n\u00f8kkel:",
+ "LabelFanartApiKeyHelp": "Foresp\u00f8rsler for fanart uten personlig API-n\u00f8kkel vil gi resultater som ble godkjent for over 7 dager siden. Med en personlig API-n\u00f8kkel synker dette til 48 timer, og med et fanart VIP-medlemskap synker det ytterliger til ca. 10 minutter.",
+ "HeaderDeveloperOptions": "Utvikler-innstillinger",
+ "OptionEnableWebClientResponseCache": "Aktiver webklient respons-caching",
+ "OptionDisableForDevelopmentHelp": "Konfigurer disse i forbindelse med utvikling av web-klienten.",
+ "OptionEnableWebClientResourceMinification": "Aktiver ressursminimering for webklient",
+ "LabelDashboardSourcePath": "Webklient kildesti:",
+ "LabelDashboardSourcePathHelp": "Hvis serveren kj\u00f8rer fra kildekode, angi sti til mappe for dashboard-ui. Alle filer for webklienten kommer fra denne mappen.",
+ "HeaderPaths": "Stier",
+ "TitleNotifications": "Beskjeder",
+ "ButtonDonateWithPayPal": "Don\u00e9r med PayPal",
+ "TitleScheduledTasks": "Planlagt oppgaver",
+ "LinkApi": "API",
+ "LabelPublicHttpPort": "Offentlig HTTP port:",
+ "LabelPublicHttpPortHelp": "Den offentlige porten som kobles til den lokale porten.",
+ "LabelPublicHttpsPort": "Offentlig HTTPS port:",
+ "LabelPublicHttpsPortHelp": "Den offentlige porten som den lokale porten kobles til.",
+ "LabelEnableHttps": "Oppgi HTTPS som ekstern adresse",
+ "LabelEnableHttpsHelp": "Hvis denne er aktivert vil serveren oppgi en HTTPS URL som sin eksterne adresse. Dette kan \u00f8delegge for klienter som enda ikke st\u00f8tter HTTPS",
+ "LabelHttpsPort": "Lokal HTTPS port:",
+ "LabelHttpsPortHelp": "TCP-portnummeret som Emby sin https server skal koble seg til.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Tilpass CSS:",
+ "LabelCustomCssHelp": "Bruk din egen CSS p\u00e5 web-grensesnittet.",
+ "ButtonConvertMedia": "Konverter media",
+ "ButtonOrganize": "Organiser",
+ "ButtonJoinTheDevelopmentTeam": "Bli med i utvikler-teamet",
+ "OptionEnableAccessToAllLibraries": "Gi tilgang til alle bibliotek",
+ "LabelSyncTempPath": "Midlertidig fil-sti:",
+ "LabelSyncTempPathHelp": "Spesifiser din egen synk-mappe. Konverterte mediefiler opprettet ved synkronisering vil lagres her.",
+ "LabelCustomCertificatePath": "Sti for eget sertifikat:",
+ "LabelCustomCertificatePathHelp": "Angi ditt eget SSL-sertifikats .ptx-fil. Hvis feltet er blankt vil serveren opprette et eget selv-signert sertifikat.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Hygg deg med en 14-dagers gratis pr\u00f8veperiode",
+ "CategorySync": "Synk",
+ "RegisterWithPayPal": "Registrer med PayPal",
+ "NotificationOptionCameraImageUploaded": "Bilde fra kamera lastet opp",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Enkel PIN-kode",
+ "LabelEasyPinCode": "Enkel PIN-kode:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Tillat innlogging med PIN-kode via det lokale nettverket.",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Tilbakestill PIN-kode",
+ "OptionAllowContentDownloading": "Tillat nedlasting av media",
+ "LabelBlockContentWithTags": "Blokker innhold med f\u00f8lgende tags:",
"LabelTagFilterMode": "Modus",
"LabelTagFilterAllowModeHelp": "Hvis tillatte tagger brukes som del av mappestrukturen, vil innhold som er tagget kreve at foreldre-mappene ogs\u00e5 er tagget.",
+ "UserDownloadingItemWithValues": "{0} laster ned {1}",
+ "LabelPinCode": "Pin kode:",
+ "ButtonExit": "Avslutt",
+ "HeaderGrownupsOnly": "Bare for voksne!",
+ "DividerOr": "-- eller --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Oppgi din enkle PIN-kode for \u00e5 f\u00e5 tilgang",
+ "KidsModeAdultInstruction": "Klikk p\u00e5 l\u00e5s-ikonet nede til h\u00f8yre for \u00e5 konfigurere eller forlate barnamodus. PIN-koden vil v\u00e6re n\u00f8dvendig.",
+ "ButtonConfigurePinCode": "Konfigurer PIN-kode",
+ "HeaderAdultsReadHere": "Voksne les her!",
+ "LabelEnableEnhancedMovies": "Aktiver forbedrede filmvisning",
+ "LabelEnableEnhancedMoviesHelp": "N\u00e5r den er aktivert, vil filmene bli vist som mapper for \u00e5 inkludere trailere, statister, cast og crew, og annet relatert innhold.",
+ "NotificationOptionUserLockedOut": "Bruker er utestengt",
+ "OptionIcon": "Ikon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "Denne brukeren er deaktivert",
"MessageReenableUser": "Se under for \u00e5 aktivere",
+ "LabelTimeLimitHours": "Tidsbegrensning (timer):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installerte programtillegg",
+ "HeaderAvailableServices": "Tilgjengelige tjenester",
+ "MessageNoServicesInstalled": "Ingen programtillegg er installert.",
+ "TitlePlugins": "Programtillegg",
+ "HeaderServices": "Tjenester",
+ "ViewTypePlaylists": "Spillelister",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Last ned internet metadata for:",
"OptionTVMovies": "TV serier",
"HeaderUpcomingMovies": "Kommende filmer",
- "HeaderUpcomingSports": "Kommende sport",
"HeaderUpcomingPrograms": "Kommende programmer",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter fordeler",
+ "HeaderAddUser": "Ny bruker",
+ "LabelAddConnectSupporterHelp": "For \u00e5 legge til en bruker som ikke er oppf\u00f8rt, m\u00e5 du f\u00f8rst koble sin konto til Emby Connect fra deres brukerprofilside.",
+ "TabPlaylist": "Spilleliste",
+ "LabelConfigureServer": "Konfigurer Emby",
+ "WelcomeToProject": "Velkommen til Emby",
+ "LinkedToEmbyConnect": "Knyttet til Emby Connect.",
+ "ProjectHasCommunity": "Emby har et voksende fellesskap av brukere og bidragsytere.",
+ "VisitProjectWebsite": "Bes\u00f8k Emby Media",
+ "VisitProjectWebsiteLong": "Bes\u00f8k Emby.media for \u00e5 f\u00e5 de siste nyhetene og holde tritt med utviklerbloggen.",
+ "HeaderHelpImproveProject": "Hjelp med \u00e5 forbedre Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Bli en Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "L\u00e6r mer om Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Valgfritt: Link til din konto p\u00e5 Emby Media",
"OptionEnableTranscodingThrottle": "Aktiver struping",
"OptionEnableTranscodingThrottleHelp": "Struping vil automatisk justere transkoding hastighet for \u00e5 minimere server cpu utnyttelse under avspilling.",
+ "OptionHideWatchedContentFromLatestMedia": "Skjul sett innhold fra siste media.",
+ "TabSuggestions": "Forslag",
+ "PlaceholderUsername": "Brukernavn",
+ "HeaderSync": "Synk.",
+ "HeaderUpcomingSports": "Kommende sport",
"LabelUploadSpeedLimit": "Last opp hastighetsgrensen (Mbps):",
"OptionAllowSyncTranscoding": "Tillat synkronisering som krever transkoding",
"HeaderPlayback": "Media avspilling",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Tillat lydavspilling som krever transkoding",
"OptionAllowVideoPlaybackTranscoding": "Tillat filmavspilling som krever transkoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Ekstern klient bitrate grense (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "En valgfri streaming bitrate grense for alle eksterne klienter. Dette er nyttig for \u00e5 hindre klienter fra \u00e5 be om en h\u00f8yere bitrate enn tilkoblingen kan h\u00e5ndtere.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Begrenser antall CPU-kjerner som skal brukes under synk-konvertering.",
"OptionEnableFullSpeedConversion": "Aktiver full hastighetskonvertering",
"OptionEnableFullSpeedConversionHelp": "Som standard er synk-konvertering utf\u00f8res ved en lav hastighet for \u00e5 minimere ressursforbruk.",
+ "HeaderRepeatingOptions": "Gjenta alternativer",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Spillelister",
+ "ViewTypeMusicPlaylists": "Spillelister",
"HeaderViewStyles": "Se stiler",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Logg inn med Emby Connect",
+ "HeaderNewServer": "Ny server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App-innstillinger",
"TabPhotos": "Bilder",
"TabVideos": "Filmer",
"HeaderWelcomeToEmby": "Velkommen til Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Hopp over",
"TextConnectToServerManually": "Koble til server manuelt",
- "ButtonSignInWithConnect": "Logg inn med Emby Connect",
"ButtonConnect": "Koble til",
"LabelServerHost": "Vert",
"LabelServerHostHelp": "192.168.1.100 eller \"https:\/\/dinserver.no\"",
"LabelServerPort": "Port:",
- "HeaderNewServer": "Ny server",
"ButtonChangeServer": "Endre server",
"HeaderConnectToServer": "Koble til server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Eksporter",
"HeaderColumns": "Kolonner",
"ButtonReset": "Resett",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Aktiver eksterne videoavspillere",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Tillat deling p\u00e5 sosiale media",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Undertekster",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/nl.json b/dashboard-ui/strings/html/nl.json
index 0d239fa324..77ed9da489 100644
--- a/dashboard-ui/strings/html/nl.json
+++ b/dashboard-ui/strings/html/nl.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Afsluiten",
"LabelVisitCommunity": "Bezoek Gemeenschap",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standaard",
- "LabelApiDocumentation": "Api documentatie",
- "LabelDeveloperResources": "Ontwikkelaars bronnen",
"LabelBrowseLibrary": "Bekijk bibliotheek",
- "LabelConfigureServer": "Emby Configureren",
"LabelOpenLibraryViewer": "Open bibliotheek verkenner",
"LabelRestartServer": "Server herstarten",
"LabelShowLogWindow": "Toon log venster",
"LabelPrevious": "Vorige",
"LabelFinish": "Voltooien",
- "FolderTypeMixed": "Gemengde inhoud",
"LabelNext": "Volgende",
"LabelYoureDone": "Gereed!",
- "ButtonAddToCollection": "Toevoegen aan Collectie",
- "ButtonMoreItems": "Meer",
- "WelcomeToProject": "Welkom bij Emby!",
+ "OptionRelease": "Offici\u00eble Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Instabiel)",
"ThisWizardWillGuideYou": "Deze wizard helpt u door het setup-proces.",
"TellUsAboutYourself": "Vertel ons over uzelf",
- "ButtonQuickStartGuide": "Snel start gids",
"LabelYourFirstName": "Uw voornaam:",
"MoreUsersCanBeAddedLater": "Meer gebruikers kunnen later via het dashboard worden toegevoegd.",
"UserProfilesIntro": "Emby heeft ingebouwde ondersteuning voor gebruikersprofielen die het mogelijk maken om elke gebruiker eigen scherminstellingen, afspeelinstellingen en ouderlijk toezicht te geven.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Uitpakken van hoofdstuk afbeeldingen biedt clients grafische scene selectie menu's. Het proces kan langzaam en processor intensief zijn en kan enkele gigabytes aan vrije ruimte vereisen. Het draait 's nachts als geplande taak, hoewel dit aangepast kan worden bij de geplande taken. Het wordt niet aanbevolen om deze taak tijdens piekuren te draaien.",
"LabelEnableAutomaticPortMapping": "Automatische poorttoewijzing inschakelen",
"LabelEnableAutomaticPortMappingHelp": "UPnP zorgt voor geautomatiseerde configuratie van de router voor gemakkelijke toegang op afstand. Dit werkt mogelijk niet met sommige routers.",
- "HeaderTermsOfService": "Emby Service Voorwaarden",
- "MessagePleaseAcceptTermsOfService": "Accepteer a.u.b. de voorwaarden en Privacybeleid voordat u doorgaat.",
- "OptionIAcceptTermsOfService": "Ik accepteer de voorwaarden",
- "ButtonPrivacyPolicy": "Privacybeleid",
- "ButtonTermsOfService": "Service voorwaarden",
- "HeaderDeveloperOptions": "Ontwikkelaar Opties",
- "OptionEnableWebClientResponseCache": "Web client reactie caching inschakelen",
- "OptionDisableForDevelopmentHelp": "Configureer deze zonodig voor web client ontwikkelingsdoeleinden.",
- "OptionEnableWebClientResourceMinification": "Web client bron verkleining inschakelen",
- "LabelDashboardSourcePath": "Web client bron pad:",
- "LabelDashboardSourcePathHelp": "Wanneer u de server draait vanaf de bron, geeft u het pad naar de map dashboard-ui op. Alle web client bestanden worden geladen vanaf deze locatie.",
- "ButtonConvertMedia": "Converteer media",
- "ButtonOrganize": "Organiseren",
- "LinkedToEmbyConnect": "Gekoppeld aan Emby Connect",
- "HeaderSupporterBenefits": "Voordelen voor Supporters",
- "HeaderAddUser": "Gebruiker Toevoegen",
- "LabelAddConnectSupporterHelp": "Om een \u200b\u200bgebruiker toe te voegen die niet in de lijst voorkomt, moet u eerst hun account koppelen aan Emby Connect vanuit hun gebruikersprofiel pagina.",
- "LabelPinCode": "Pincode:",
- "OptionHideWatchedContentFromLatestMedia": "Verberg bekeken inhoud van recent toegevoegd",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Annuleren",
- "ButtonExit": "Afsluiten",
- "ButtonNew": "Nieuw",
- "HeaderTV": "TV",
- "HeaderAudio": "Geluid",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paden",
- "CategorySync": "Sync",
- "TabPlaylist": "Afspeellijst",
- "HeaderEasyPinCode": "Eenvoudige Pincode",
- "HeaderGrownupsOnly": "Alleen voor volwassenen!",
- "DividerOr": "-- of --",
- "HeaderInstalledServices": "Ge\u00efnstalleerde diensten",
- "HeaderAvailableServices": "Beschikbare diensten",
- "MessageNoServicesInstalled": "Er zijn momenteel geen diensten ge\u00efnstalleerd.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Voor toegang toets uw pincode",
- "KidsModeAdultInstruction": "Klik op het slotje in de rechterbenedenhoek om te configureren of blijf in de kindermodus. Uw pincode is vereist.",
- "ButtonConfigurePinCode": "Configureer pincode",
- "HeaderAdultsReadHere": "Volwassenen Lees hier!",
- "RegisterWithPayPal": "Registreer met PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Vereist een Supporter lidmaatschap",
- "HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie",
- "LabelSyncTempPath": "Pad voor tijdelijke bestanden:",
- "LabelSyncTempPathHelp": "Geef een afwijkende sync werk directory op. Tijdens het sync proces aangemaakte geconverteerde media zal hier opgeslagen worden.",
- "LabelCustomCertificatePath": "Aangepast certificaat pad:",
- "LabelCustomCertificatePathHelp": "Gebruik uw eigen ssl certificaat .pfx bestand. Indien weggelaten zal de server een zelf-gesigneerd certificaat aanmaken.",
- "TitleNotifications": "Meldingen",
- "ButtonDonateWithPayPal": "Doneer met PayPal",
- "OptionDetectArchiveFilesAsMedia": "Herken archief bestanden als media",
- "OptionDetectArchiveFilesAsMediaHelp": "Indien ingeschakeld zullen bestanden met .rar en .zip extensies herkend worden als media bestanden.",
- "LabelEnterConnectUserName": "Gebruikersnaam of email:",
- "LabelEnterConnectUserNameHelp": "Dit is uw Emby Online Account gebruikersnaam of emailadres.",
- "LabelEnableEnhancedMovies": "Verbeterde film displays inschakelen",
- "LabelEnableEnhancedMoviesHelp": "Wanneer ingeschakeld, zullen films worden weergegeven als mappen inclusief trailers, extra's, cast & crew en andere gerelateerde inhoud.",
- "HeaderSyncJobInfo": "Sync Opdrachten",
- "OptionReleaseDate": "Uitgave datum",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Mislukt",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Schakelen tussen volledig scherm ",
- "ButtonAudioTracks": "Geluidssporen",
- "ButtonPreviousTrack": "Vorige track",
- "ButtonNextTrack": "Volgende track",
- "HeaderEpisodes": "Afleveringen:",
- "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",
- "FolderTypeInherit": "overerven",
- "LabelContentType": "Inhoud type:",
- "TitleScheduledTasks": "Geplande Taken",
"HeaderSetupLibrary": "Stel uw mediabibliotheek in",
"ButtonAddMediaFolder": "Mediamap toevoegen",
"LabelFolderType": "Maptype:",
"ReferToMediaLibraryWiki": "Raadpleeg de mediabibliotheek wiki.",
"LabelCountry": "Land:",
"LabelLanguage": "Taal:",
- "LabelTimeLimitHours": "Tijdslimiet (uren):",
- "ButtonJoinTheDevelopmentTeam": "Word lid van het Ontwikkel Team",
"HeaderPreferredMetadataLanguage": "Gewenste metadata taal:",
"LabelSaveLocalMetadata": "Sla afbeeldingen en metadata op in de mediamappen",
"LabelSaveLocalMetadataHelp": "Door afbeeldingen en metadata op te slaan in de mediamappen kunnen ze makkelijker worden gevonden en bewerkt.",
@@ -130,37 +47,16 @@
"TabPreferences": "Voorkeuren",
"TabPassword": "Wachtwoord",
"TabLibraryAccess": "Bibliotheek toegang",
- "TabAccess": "Toegang",
"TabImage": "Afbeelding",
"TabProfile": "Profiel",
- "TabMetadata": "Metagegevens",
- "TabImages": "Afbeeldingen",
- "TabNotifications": "Meldingen",
- "TabCollectionTitles": "Titels",
- "HeaderDeviceAccess": "Apparaat Toegang",
- "OptionEnableAccessFromAllDevices": "Toegang vanaf alle apparaten toestaan",
- "OptionEnableAccessToAllChannels": "Toegang tot alle kanalen inschakelen",
- "OptionEnableAccessToAllLibraries": "Toegang tot alle bibliotheken inschakelen",
- "DeviceAccessHelp": "Dit geldt alleen voor apparaten die uniek ge\u00efdentificeerd kunnen worden en voorkomen niet toegang via een webbrowser. Filteren van apparaat toegang voor gebruikers voorkomt dat zij nieuwe apparaten gebruiken totdat deze hier zijn goedgekeurd.",
"LabelDisplayMissingEpisodesWithinSeasons": "Toon ontbrekende afleveringen binnen een seizoen",
"LabelUnairedMissingEpisodesWithinSeasons": "Toon komende afleveringen binnen een seizoen",
"HeaderVideoPlaybackSettings": "Video afspeel instellingen",
- "HeaderPlaybackSettings": "Afspeel instellingen",
"LabelAudioLanguagePreference": "Voorkeurs taal geluid:",
"LabelSubtitleLanguagePreference": "Voorkeurs taal ondertiteling:",
- "OptionDefaultSubtitles": "Standaard",
- "OptionOnlyForcedSubtitles": "Alleen geforceerde ondertiteling",
- "OptionAlwaysPlaySubtitles": "Ondertiteling altijd weergeven",
- "OptionNoSubtitles": "Geen ondertiteling",
- "OptionDefaultSubtitlesHelp": "Ondertiteling wordt weergegeven in de voorkeurstaal als het geluid in een andere taal is.",
- "OptionOnlyForcedSubtitlesHelp": "Alleen ondertiteling gemarkeerd als \"gedwongen\" zullen worden geladen.",
- "OptionAlwaysPlaySubtitlesHelp": "Ondertiteling wordt weergegeveen in de voorkeurstaal ongeacht de taal van de audio.",
- "OptionNoSubtitlesHelp": "Ondertiteling wordt standaard niet weergegeven.",
"TabProfiles": "Profielen",
"TabSecurity": "Beveiliging",
"ButtonAddUser": "Gebruiker toevoegen",
- "ButtonAddLocalUser": "Voeg lokale gebruiker toe",
- "ButtonInviteUser": "Nodig gebruiker uit",
"ButtonSave": "Opslaan",
"ButtonResetPassword": "Wachtwoord resetten",
"LabelNewPassword": "Nieuw wachtwoord:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximaal toegestane kijkwijzer classificatie:",
"MaxParentalRatingHelp": "Media met een hogere classificatie wordt niet weergegeven",
"LibraryAccessHelp": "Selecteer de mediamappen om met deze gebruiker te delen. Beheerders kunnen alle mappen bewerken via de metadata manager.",
- "ChannelAccessHelp": "Selecteer de kanalen om te delen met deze gebruiker. Beheerders kunnen alle kanalen bewerken met de metadata manager.",
"ButtonDeleteImage": "Verwijder afbeelding",
- "LabelSelectUsers": "Selecteer gebruikers:",
"ButtonUpload": "Uploaden",
"HeaderUploadNewImage": "Nieuwe afbeelding uploaden",
"LabelDropImageHere": "Afbeelding hier neerzetten",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Lijst is leeg.",
"MessagePleaseEnsureInternetMetadata": "Zorg ervoor dat het downloaden van metadata van het internet is ingeschakeld.",
"TabSuggested": "Aanbevolen",
- "TabSuggestions": "Suggesties",
"TabLatest": "Nieuw",
"TabUpcoming": "Binnenkort op TV",
"TabShows": "Series",
@@ -217,6 +110,7 @@
"OptionAscending": "Oplopend",
"OptionDescending": "Aflopend",
"OptionRuntime": "Speelduur",
+ "OptionReleaseDate": "Uitgave datum",
"OptionPlayCount": "Afspeel telling",
"OptionDatePlayed": "Datum afgespeeld",
"OptionDateAdded": "Datum toegevoegd",
@@ -226,16 +120,10 @@
"OptionTrackName": "Naam van Nummer",
"OptionCommunityRating": "Gemeenschaps Waardering",
"OptionNameSort": "Naam",
- "OptionFolderSort": "Mappen",
"OptionBudget": "Budget",
"OptionRevenue": "Inkomsten",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster kaart",
- "OptionBackdrop": "Achtergrond",
"OptionTimeline": "Tijdlijn",
- "OptionThumb": "Miniatuur",
- "OptionThumbCard": "Miniaturen kaart",
- "OptionBanner": "Banner",
"OptionCriticRating": "Kritieken",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Hervatbaar",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Geplande taken",
"TabMyPlugins": "Mijn Plugins",
"TabCatalog": "Catalogus",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatische updates",
"HeaderNowPlaying": "Wordt nu afgespeeld",
"HeaderLatestAlbums": "Nieuwste Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recent afgespeeld",
"HeaderFrequentlyPlayed": "Vaak afgespeeld",
"DevBuildWarning": "Development versies zijn geheel voor eigen risico. Deze versies worden vaak vrijgegeven en zijn niet getest! De Applicatie kan crashen en sommige functies kunnen mogelijk niet meer werken.",
+ "OptionThumb": "Miniatuur",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Blu-ray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Kenmerken:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Versie:",
- "LabelLastResult": "Laatste resultaat:",
"OptionHasSubtitles": "Ondertiteling",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Thema Song",
@@ -268,8 +153,6 @@
"TabMovies": "Films",
"TabStudios": "Studio's",
"TabTrailers": "Trailers",
- "LabelArtists": "Artiest:",
- "LabelArtistsHelp": "Scheidt meerdere met een ;",
"HeaderLatestMovies": "Nieuwste Films",
"HeaderLatestTrailers": "Nieuwste Trailers",
"OptionHasSpecialFeatures": "Extra's",
@@ -290,32 +173,24 @@
"OptionFriday": "Vrijdag",
"OptionSaturday": "Zaterdag",
"HeaderManagement": "Beheer",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "IMDb Id ontbreekt",
"OptionMissingTvdbId": "TheTVDB Id ontbreekt",
"OptionMissingOverview": "Overzicht ontbreekt",
"OptionFileMetadataYearMismatch": "Jaartal in Bestands\/metadata komt niet overeen",
"TabGeneral": "Algemeen",
"TitleSupport": "Ondersteuning",
- "LabelSeasonNumber": "Seizoensnummer",
"TabLog": "Logboek",
- "LabelEpisodeNumber": "Afleveringsnummer",
"TabAbout": "Over",
"TabSupporterKey": "Supporter Sleutel",
"TabBecomeSupporter": "Word Supporter",
- "ProjectHasCommunity": "Emby heeft een bloeiende gemeenschap van gebruikers en medewerkers.",
"CheckoutKnowledgeBase": "Bekijk onze knowledge base om u te helpen het meeste uit Emby halen.",
"SearchKnowledgeBase": "Zoek in de Kennisbank",
"VisitTheCommunity": "Bezoek de Gemeenschap",
- "VisitProjectWebsite": "Bezoek de Emby Website",
- "VisitProjectWebsiteLong": "Bezoek de Emby Web-website voor het laatste nieuws en blijf op de hoogte via het ontwikkelaars blog.",
"OptionHideUser": "Verberg deze gebruiker op de aanmeldschermen",
- "OptionHideUserFromLoginHelp": "Handig voor piv\u00e9 of verborgen beheer accounts. De gebruiker zal handmatig m.b.v. gebruikersnaam en wachtwoord aan moeten melden.",
"OptionDisableUser": "Dit account uitschakelen",
"OptionDisableUserHelp": "Indien uitgeschakeld zal de server geen verbindingen van deze gebruiker toestaan. Bestaande verbindingen zullen abrupt worden be\u00ebindigd.",
"HeaderAdvancedControl": "Geavanceerd Beheer",
"LabelName": "Naam:",
- "ButtonHelp": "Hulp",
"OptionAllowUserToManageServer": "Deze gebruiker kan de server beheren",
"HeaderFeatureAccess": "Functie toegang",
"OptionAllowMediaPlayback": "Media afspelen toestaan",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Media verwijderen toestaan",
"OptionAllowManageLiveTv": "Live TV opname beheer toestaan",
"OptionAllowRemoteControlOthers": "Op afstand besturen van andere gebruikers toestaan",
- "OptionAllowRemoteSharedDevices": "Op afstand besturen van gedeelde apparaten toestaan",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna apparaten worden als gedeeld apparaat gezien totdat een gebruiker deze gaat gebruiken.",
- "OptionAllowLinkSharing": "Sta social media delen toe",
- "OptionAllowLinkSharingHelp": "Alleen webpagina's met media-informatie worden gedeeld. Media-bestanden worden nooit publiekelijk gedeeld. Aandelen zijn beperkt in de tijd en zal verlopen op basis van uw instellingen voor delen server.",
- "HeaderSharing": "Delen",
- "HeaderRemoteControl": "Gebruik op afstand",
"OptionMissingTmdbId": "TMDB Id ontbreekt",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Selecteer",
"ButtonGroupVersions": "Groepeer Versies",
"PismoMessage": "Pismo File Mount (met een geschonken licentie).",
- "TangibleSoftwareMessage": "Gebruik makend van concrete oplossingen als Java \/ C converters door een geschonken licentie.",
- "HeaderCredits": "Credits",
"PleaseSupportOtherProduces": "Steun a.u.b. ook andere gratis producten die wij gebruiken:",
"VersionNumber": "Versie {0}",
"TabPaths": "Paden",
"TabServer": "Server",
"TabTranscoding": "Transcoderen",
"TitleAdvanced": "Geavanceerd",
- "OptionRelease": "Offici\u00eble Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Instabiel)",
"LabelAllowServerAutoRestart": "Automatisch herstarten van de server toestaan om updates toe te passen",
"LabelAllowServerAutoRestartHelp": "De server zal alleen opnieuw opstarten tijdens inactieve perioden, wanneer er geen gebruikers actief zijn.",
"LabelEnableDebugLogging": "Foutopsporings logboek inschakelen",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Geef aangepaste paden op waar gewenst. Laat velden leeg om de standaardinstellingen te gebruiken.",
"LabelCachePath": "Cache pad:",
"LabelCachePathHelp": "Geef een aangepaste lokatie voor cache bestanden zoals afbeeldingen. Laat leeg om de standaard lokatie te gebruiken.",
- "LabelRecordingPath": "Opname pad:",
- "LabelRecordingPathHelp": "Geef een aangepaste lokatie voor opnamen. Laat leeg om de standaard lokatie te gebruiken.",
"LabelImagesByNamePath": "Afbeeldingen op naam pad:",
"LabelImagesByNamePathHelp": "Geef een locatie op voor gedownloade afbeeldingen van acteurs, genre en studio.",
"LabelMetadataPath": "Metadata pad:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Afleveringen",
"OptionOtherVideos": "Overige Video's",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Automatische updates inschakelen",
"LabelAutomaticUpdatesTmdb": "Schakel de automatische update in van TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Schakel de automatische update in van TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "Bij inschakelen zullen nieuwe afbeeldingen die toegevoegd worden op fanart.tv automatisch gedownload worden. Bestaande afbeeldingen worden niet overschreven. Hierdoor zal het scannen van de bibliotheek langer duren en zal er meer diskactiviteit zijn.",
"LabelAutomaticUpdatesTmdbHelp": "Bij inschakelen zullen nieuwe afbeeldingen die toegevoegd worden op TheMovieDB.org automatisch gedownload worden. Bestaande afbeeldingen worden niet overschreven. Hierdoor zal het scannen van de bibliotheek langer duren en zal er meer diskactiviteit zijn.",
"LabelAutomaticUpdatesTvdbHelp": "Bij inschakelen zullen nieuwe afbeeldingen die toegevoegd worden op TheTVDB.com automatisch gedownload worden. Bestaande afbeeldingen worden niet overschreven. Hierdoor zal het scannen van de bibliotheek langer duren en zal er meer diskactiviteit zijn.",
- "LabelFanartApiKey": "Persoonlijke api sleutel:",
- "LabelFanartApiKeyHelp": "Verzoeken om fanart zonder een persoonlijke API sleutel geven resultaten terug die meer dan 7 dagen geleden goedgekeurd zijn. Een persoonlijke API sleutel brengt dat terug tot 48 uur en als u ook een fanart VIP lid bent wordt dit tot 10 minuten teruggebracht.",
"ExtractChapterImagesHelp": "Uitpakken van hoofdstuk afbeeldingen biedt clients grafische scene selectie menu's. Het proces kan langzaam en processor intensief zijn en kan enkele gigabytes aan vrije ruimte vereisen. Het draait wanneer video's worden gevonden en als een voor 's nachts geplande taak. Het schema kan bij de geplande taken worden aangepast. Het wordt niet aanbevolen om deze taak tijdens piekuren te draaien.",
"LabelMetadataDownloadLanguage": "Voorkeurs taal:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Wachtwoorden zijn niet vereist bij het aanmelden van localhost.",
"TabGuide": "Gids",
"TabChannels": "Kanalen",
- "TabCollections": "Collecties",
"HeaderChannels": "Kanalen",
"TabRecordings": "Opnamen",
"TabScheduled": "Gepland",
"TabSeries": "Serie",
- "TabFavorites": "Favorieten",
- "TabMyLibrary": "Mijn bibliotheek",
"ButtonCancelRecording": "Opname annuleren",
"HeaderPrePostPadding": "Vooraf\/Achteraf insteling",
"LabelPrePaddingMinutes": "Tijd voor het programma (Minuten):",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Instellingen",
"ButtonRefreshGuideData": "Gidsgegevens Vernieuwen",
- "ButtonRefresh": "Vernieuwen",
- "ButtonAdvancedRefresh": "Geavanceerd vernieuwen",
"OptionPriority": "Prioriteit",
"OptionRecordOnAllChannels": "Op alle kanalen opnemen",
"OptionRecordAnytime": "Op elk tijdstip opnemen",
"OptionRecordOnlyNewEpisodes": "Alleen nieuwe afleveringen opnemen",
- "HeaderRepeatingOptions": "Herhaling opties",
"HeaderDays": "Dagen",
"HeaderActiveRecordings": "Actieve Opnames",
"HeaderLatestRecordings": "Nieuwe Opnames",
@@ -431,17 +284,16 @@
"ButtonEdit": "Bewerken",
"ButtonRecord": "Opnemen",
"ButtonDelete": "Verwijderen",
- "ButtonRemove": "Verwijderen",
"OptionRecordSeries": "Series Opnemen",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Mappen",
+ "OptionBackdrop": "Achtergrond",
"TitleLiveTV": "Live TV",
"LabelNumberOfGuideDays": "Aantal dagen van de gids om te downloaden:",
"LabelNumberOfGuideDaysHelp": "Het downloaden van meer dagen van de gids gegevens biedt de mogelijkheid verder vooruit te plannen en een beter overzicht geven, maar het zal ook langer duren om te downloaden. Auto kiest op basis van het aantal kanalen.",
"OptionAutomatic": "Automatisch",
- "HeaderServices": "Diensten",
"LiveTvPluginRequired": "Een Live TV service provider Plug-in is vereist om door te gaan.",
"LiveTvPluginRequiredHelp": "Installeer a.u b een van onze beschikbare Plugins, zoals Next PVR of ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Aanpassen voor mediatype",
"OptionDownloadThumbImage": "Miniatuur",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primair",
"HeaderFetchImages": "Afbeeldingen ophalen:",
"HeaderImageSettings": "Afbeeldingsinstellingen",
- "TabOther": "Overig",
"LabelMaxBackdropsPerItem": "Maximum aantal achtergronden per item:",
"LabelMaxScreenshotsPerItem": "Maximum aantal schermafbeeldingen per item:",
"LabelMinBackdropDownloadWidth": "Minimale achtergrond breedte om te downloaden:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Extra onderdelen",
"ButtonSplitVersionsApart": "Splits Versies Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Ontbreekt",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Pad vervangen worden gebruikt voor het in kaart brengen van een pad op de server naar een pad dat de client in staat stelt om toegang te krijgen. Doordat de client directe toegang tot de media op de server heeft is deze in staat om ze direct af te spelen via het netwerk. Daardoor wordt het gebruik van server resources om te streamen en te transcoderen vermeden.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Max kwaliteit",
"OptionEnableDebugTranscodingLogging": "Transcodeer foutopsporings logboek inschakelen",
"OptionEnableDebugTranscodingLoggingHelp": "Dit zal zeer grote logboekbestanden genereren en wordt alleen aanbevolen wanneer het nodig is voor het oplossen van problemen.",
+ "ButtonNew": "Nieuw",
+ "TabMetadata": "Metagegevens",
+ "TabImages": "Afbeeldingen",
+ "TabCollectionTitles": "Titels",
+ "ButtonSearch": "Zoeken",
+ "ButtonRemove": "Verwijderen",
"EditCollectionItemsHelp": "Toevoegen of verwijderen van alle films, series, albums, boeken of games die u wilt groeperen in deze collectie.",
"HeaderAddTitles": "Titels toevoegen",
"LabelEnableDlnaPlayTo": "DLNA Afspelen Met inschakelen",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Systeem Paden",
"LinkCommunity": "Gemeenschap",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentatie",
"LabelFriendlyServerName": "Aangepaste servernaam",
"LabelFriendlyServerNameHelp": "Deze naam wordt gebruikt om deze server te identificeren. Indien leeg gelaten, zal de naam van de computer worden gebruikt.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Vertaling van Emby is een voortdurend project.",
"LabelReadHowYouCanContribute": "Lees meer over hoe u kunt bijdragen.",
"HeaderNewCollection": "Nieuwe Collectie",
- "ButtonSubmit": "Uitvoeren",
"ButtonCreate": "Cre\u00ebren",
- "LabelCustomCss": "Aangepaste css:",
- "LabelCustomCssHelp": "Uw eigen aangepaste css voor de web-interface toepassen.",
- "LabelLocalHttpServerPortNumber": "Lokale http poort nummer:",
- "LabelLocalHttpServerPortNumberHelp": "Het tcp poort nummer waar Emby's http server aan moet verbinden.",
- "LabelPublicHttpPort": "Publieke http poort nummer:",
- "LabelPublicHttpPortHelp": "Het publieke poortnummer dat moet worden toegewezen aan de lokale http poort.",
- "LabelPublicHttpsPort": "Publieke https poort nummer:",
- "LabelPublicHttpsPortHelp": "Het publieke poortnummer dat moet worden toegewezen aan de lokale https poort.",
- "LabelEnableHttps": "Rapporteer https als extern adres",
- "LabelEnableHttpsHelp": "Indien ingeschakeld, zal de server een https url rapporteren aan de client als het externe adres.",
- "LabelHttpsPort": "Lokale https poort nummer:",
- "LabelHttpsPortHelp": "Het tcp poort nummer waar Emby's http server aan moet verbinden.",
"LabelWebSocketPortNumber": "Web socket poortnummer:",
- "LabelEnableAutomaticPortMap": "Schakel automatisch poort vertalen in",
- "LabelEnableAutomaticPortMapHelp": "Probeer om de publieke poort automatisch te vertalen naar de lokale poort via UPnP. Dit werkt niet op alle routers.",
"LabelExternalDDNS": "Extern WAN Adres:",
"LabelExternalDDNSHelp": "Als u een dynamische DNS heeft moet dit hier worden ingevoerd. Emby apps zullen het gebruiken als externe verbinding. Laat leeg voor automatische detectie",
"TabResume": "Hervatten",
@@ -591,8 +433,12 @@
"HeaderProgram": "Programma",
"HeaderClients": "Clients",
"LabelCompleted": "Compleet",
+ "LabelFailed": "Mislukt",
"LabelSkipped": "Overgeslagen",
"HeaderEpisodeOrganization": "Afleveringen Organisatie",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Seizoensnummer",
+ "LabelEpisodeNumber": "Afleveringsnummer",
"LabelEndingEpisodeNumber": "Laatste aflevering nummer:",
"LabelEndingEpisodeNumberHelp": "Alleen vereist voor bestanden met meerdere afleveringen",
"HeaderSupportTheTeam": "Ondersteun het Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Verplaats",
"LabelTransferMethodHelp": "Bestanden kopi\u00ebren of verplaatsen van de bewaakte map",
"HeaderLatestNews": "Nieuws",
- "HeaderHelpImproveProject": "Help Emby te verbeteren",
"HeaderRunningTasks": "Actieve taken",
"HeaderActiveDevices": "Actieve apparaten",
"HeaderPendingInstallations": "In afwachting van installaties",
- "HeaderServerInformation": "Server informatie",
"ButtonRestartNow": "Nu opnieuw opstarten",
"ButtonRestart": "Herstart",
"ButtonShutdown": "Afsluiten",
"ButtonUpdateNow": "Nu bijwerken",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Sluit de server a.u.b. af en werk handmatig bij.",
"NewServerVersionAvailable": "Er is een nieuwe versie van Emby Server beschikbaar!",
"ServerUpToDate": "Emby Server is up-to-date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Bepaalt de duur in seconden tussen server Alive berichten.",
"LabelDefaultUser": "Standaard gebruiker:",
"LabelDefaultUserHelp": "Bepaalt welke gebruikers bibliotheek op aangesloten apparaten moet worden weergegeven. Dit kan worden overschreven voor elk apparaat met behulp van profielen.",
+ "HeaderPlaybackSettings": "Afspeel instellingen",
"TitleDlna": "DLNA",
- "TitleChannels": "Kanalen",
"HeaderServerSettings": "Server Instellingen",
"LabelWeatherDisplayLocation": "Weersbericht locatie:",
"LabelWeatherDisplayLocationHelp": "US postcode \/ Plaats, Staat, Land \/ Stad, Land \/ Weer ID",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Indien uitgeschakeld toont de client een aanmeldscherm met een visuele selectie van gebruikers.",
"OptionOtherApps": "Overige apps",
"OptionMobileApps": "Mobiele apps",
+ "TabNotifications": "Meldingen",
"HeaderNotificationList": "Klik op een melding om de opties voor het versturen ervan te configureren.",
+ "LabelNotificationEnabled": "Deze melding inschakelen",
+ "NotificationOptionVideoPlayback": "Video afspelen gestart",
+ "NotificationOptionAudioPlayback": "Geluid afspelen gestart",
+ "NotificationOptionGamePlayback": "Game gestart",
+ "NotificationOptionNewLibraryContent": "Nieuwe content toegevoegd",
+ "NotificationOptionServerRestartRequired": "Server herstart nodig",
+ "LabelMonitorUsers": "Monitor activiteit van:",
+ "LabelSendNotificationToUsers": "Stuur de melding naar:",
+ "LabelUseNotificationServices": "Gebruik de volgende diensten:",
"NotificationOptionApplicationUpdateAvailable": "Programma-update beschikbaar",
"NotificationOptionApplicationUpdateInstalled": "Programma-update ge\u00efnstalleerd",
"NotificationOptionPluginUpdateInstalled": "Plug-in-update ge\u00efnstalleerd",
"NotificationOptionPluginInstalled": "Plug-in ge\u00efnstalleerd",
"NotificationOptionPluginUninstalled": "Plug-in verwijderd",
- "NotificationOptionVideoPlayback": "Video afspelen gestart",
- "NotificationOptionAudioPlayback": "Geluid afspelen gestart",
- "NotificationOptionGamePlayback": "Game gestart",
- "NotificationOptionVideoPlaybackStopped": "Video afspelen gestopt",
- "NotificationOptionAudioPlaybackStopped": "Geluid afspelen gestopt",
- "NotificationOptionGamePlaybackStopped": "Afspelen spel gestopt",
"NotificationOptionTaskFailed": "Mislukken van de geplande taak",
"NotificationOptionInstallationFailed": "Mislukken van de installatie",
- "NotificationOptionNewLibraryContent": "Nieuwe content toegevoegd",
- "NotificationOptionNewLibraryContentMultiple": "Nieuwe content toegevoegd (meerdere)",
- "NotificationOptionCameraImageUploaded": "Camera afbeelding ge\u00fcpload",
- "NotificationOptionUserLockedOut": "Gebruikersaccount vergrendeld",
- "HeaderSendNotificationHelp": "Notificaties worde in uw Emby inbox afgelelverd. Additionele opties kunnen via de tab Services ge\u00efnstalleerd worden.",
- "NotificationOptionServerRestartRequired": "Server herstart nodig",
- "LabelNotificationEnabled": "Deze melding inschakelen",
- "LabelMonitorUsers": "Monitor activiteit van:",
- "LabelSendNotificationToUsers": "Stuur de melding naar:",
- "LabelUseNotificationServices": "Gebruik de volgende diensten:",
"CategoryUser": "Gebruiker",
"CategorySystem": "Systeem",
- "CategoryApplication": "Toepassing",
- "CategoryPlugin": "Plug-in",
"LabelMessageTitle": "Titel van het bericht:",
"LabelAvailableTokens": "Beschikbaar tokens:",
"AdditionalNotificationServices": "Blader door de Plug-in catalogus om aanvullende meldingsdiensten te installeren.",
+ "LabelSelectUsers": "Selecteer gebruikers:",
"OptionAllUsers": "Alle gebruikers",
"OptionAdminUsers": "Beheerders",
"OptionCustomUsers": "Aangepast",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Rechts",
"ButtonBack": "Terug",
"ButtonInfo": "Info",
- "ButtonOsd": "Weergave op het scherm",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Start",
- "ButtonSearch": "Zoeken",
"ButtonSettings": "Instellingen",
"ButtonTakeScreenshot": "Vang Schermafbeelding",
"ButtonLetterUp": "Letter omhoog",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Wordt nu afgespeeld",
"TabNavigation": "Navigatie",
- "TabControls": "Besturing",
+ "ButtonFullscreen": "Schakelen tussen volledig scherm ",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Ondertiteling",
+ "ButtonAudioTracks": "Geluidssporen",
+ "ButtonPreviousTrack": "Vorige track",
+ "ButtonNextTrack": "Volgende track",
"ButtonStop": "Stop",
"ButtonPause": "Pauze",
- "ButtonNext": "Volgende",
- "ButtonPrevious": "Vorige",
"LabelGroupMoviesIntoCollections": "Groepeer films in collecties",
"LabelGroupMoviesIntoCollectionsHelp": "Bij de weergave van film lijsten, zullen films die tot een collectie behoren worden weergegeven als een gegroepeerd object.",
+ "CategoryApplication": "Toepassing",
+ "CategoryPlugin": "Plug-in",
"NotificationOptionPluginError": "Plug-in fout",
+ "TabControls": "Besturing",
"ButtonVolumeUp": "Volume omhoog",
"ButtonVolumeDown": "Volume omlaag",
"ButtonMute": "Dempen",
"HeaderLatestMedia": "Nieuw in bibliotheek",
+ "OptionNoSubtitles": "Geen ondertiteling",
"OptionSpecialFeatures": "Extra's",
+ "ChannelAccessHelp": "Selecteer de kanalen om te delen met deze gebruiker. Beheerders kunnen alle kanalen bewerken met de metadata manager.",
"HeaderCollections": "Collecties",
"LabelProfileCodecsHelp": "Gescheiden door een komma. Deze kan leeg gelaten worden om te laten gelden voor alle codecs.",
"LabelProfileContainersHelp": "Gescheiden door een komma. Deze kan leeg gelaten worden om te laten gelden voor alle containers.",
"HeaderResponseProfile": "Antwoord Profiel",
"LabelType": "Type:",
- "LabelPersonRole": "Rol:",
- "LabelPersonRoleHelp": "Rol is alleen van toepassing op acteurs.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Geluidscodecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Indien ingeschakeld worden alle video's in DIDL weergegeven als 'object.item.videoItem' in plaats van een meer specifiek type, zoals 'object.item.videoItem.movie'.",
"LabelSupportedMediaTypes": "Ondersteunde Media Types:",
"TabIdentification": "Identificatie",
- "HeaderIdentification": "Identificatie",
"TabDirectPlay": "Direct Afspelen",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "Deze waarden bepalen hoe Emby Server zich zal presenteren aan het apparaat.",
"LabelMaxBitrate": "Max. bitrate:",
"LabelMaxBitrateHelp": "Geef een max. bitrate in bandbreedte beperkte omgevingen, of als het apparaat zijn eigen limiet heeft.",
- "LabelMaxStreamingBitrate": "Maximale streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Geef een maximale bitrate voor streaming op.",
- "LabelMaxChromecastBitrate": "Maximale bitrate Chromecast:",
- "LabelMaxStaticBitrate": "Maximale Synchronisatie bitrate:",
- "LabelMaxStaticBitrateHelp": "Geef een maximale bitrate op voor synchroniseren in hoge kwaliteit.",
- "LabelMusicStaticBitrate": "Muzieksynchronisatie bitrate:",
- "LabelMusicStaticBitrateHelp": "Geef een maximum bitrate op voor het synchroniseren van muziek",
- "LabelMusicStreamingTranscodingBitrate": "Muziek transcodering bitrate: ",
- "LabelMusicStreamingTranscodingBitrateHelp": "Geef een maximum bitrate op voor het streamen van muziek",
"OptionIgnoreTranscodeByteRangeRequests": "Transcodeer byte range-aanvragen negeren",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Indien ingeschakeld, zullen deze verzoeken worden gehonoreerd, maar zal de byte bereik header worden genegeerd.",
"LabelFriendlyName": "Aangepaste naam",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Dit is vereist voor bepaalde apparaten die zo goed op tijd zoeken.",
"HeaderSubtitleDownloadingHelp": "Tijdens het scannen van uw videobestanden kan Emby zoeken naar missende ondertiteling en deze downloaden met behulp van een ondertitel provider zoals OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download ondertiteling voor:",
- "MessageNoChapterProviders": "Installeer een hoofdstuk provider Plug-in zoals ChapterDb om extra hoofdstuk opties in te schakelen.",
- "LabelSkipIfGraphicalSubsPresent": "Overslaan als de video al grafische ondertiteling bevat",
- "LabelSkipIfGraphicalSubsPresentHelp": "Tekstversies van ondertiteling opslaan zal video's effici\u00ebnter overbrengen en de kans op transcodering van video's verkleinen.",
"TabSubtitles": "Ondertiteling",
- "TabChapters": "Hoofdstukken",
- "HeaderDownloadChaptersFor": "Download hoofdstuk namen voor:",
"LabelOpenSubtitlesUsername": "Gebruikersnaam Open Subtitles:",
"LabelOpenSubtitlesPassword": "Wachtwoord Open Subtitles:",
- "HeaderChapterDownloadingHelp": "Wanneer Emby uw videobestanden scant kan het vriendelijke hoofdstuk namen downloaden van het internet met behulp van hoofdstuk plugins zoals ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Speel standaard audio spoor ongeacht taal",
- "LabelSubtitlePlaybackMode": "Ondertitelingsmode:",
"LabelDownloadLanguages": "Download talen:",
"ButtonRegister": "Aanmelden",
+ "LabelSkipIfGraphicalSubsPresent": "Overslaan als de video al grafische ondertiteling bevat",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Tekstversies van ondertiteling opslaan zal video's effici\u00ebnter overbrengen en de kans op transcodering van video's verkleinen.",
"LabelSkipIfAudioTrackPresent": "Overslaan als het standaard geluidsspoor overeenkomt met de taal van de download",
"LabelSkipIfAudioTrackPresentHelp": "Vink dit uit om ervoor te zorgen dat alle video's ondertiteings krijgen, ongeacht de geluidstaal.",
+ "NotificationOptionNewLibraryContentMultiple": "Nieuwe content toegevoegd (meerdere)",
"HeaderSendMessage": "Stuur bericht",
"ButtonSend": "Stuur",
"LabelMessageText": "Bericht tekst:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Versie:",
+ "LabelLastResult": "Laatste resultaat:",
+ "ButtonOsd": "Weergave op het scherm",
"MessageNoAvailablePlugins": "Geen beschikbare Plugins.",
"LabelDisplayPluginsFor": "Toon Plugins voor:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Naam aflevering",
- "LabelSeriesNamePlain": "Naam serie",
"ValueSeriesNamePeriod": "Serie.Naam",
"ValueSeriesNameUnderscore": "Serie_naam",
"ValueEpisodeNamePeriod": "Aflevering.naam",
"ValueEpisodeNameUnderscore": "Aflevering_naam",
- "LabelSeasonNumberPlain": "nummer seizoen",
- "LabelEpisodeNumberPlain": "Nummer aflevering",
- "LabelEndingEpisodeNumberPlain": "Laatste nummer aflevering",
"HeaderTypeText": "Voer tekst in",
"LabelTypeText": "Tekst",
+ "OptionDefaultSubtitles": "Standaard",
+ "OptionOnlyForcedSubtitles": "Alleen geforceerde ondertiteling",
+ "OptionAlwaysPlaySubtitles": "Ondertiteling altijd weergeven",
+ "OptionDefaultSubtitlesHelp": "Ondertiteling wordt weergegeven in de voorkeurstaal als het geluid in een andere taal is.",
+ "OptionOnlyForcedSubtitlesHelp": "Alleen ondertiteling gemarkeerd als \"gedwongen\" zullen worden geladen.",
+ "OptionAlwaysPlaySubtitlesHelp": "Ondertiteling wordt weergegeveen in de voorkeurstaal ongeacht de taal van de audio.",
+ "OptionNoSubtitlesHelp": "Ondertiteling wordt standaard niet weergegeven.",
+ "TangibleSoftwareMessage": "Gebruik makend van concrete oplossingen als Java \/ C converters door een geschonken licentie.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collecties",
+ "TabFavorites": "Favorieten",
+ "TabMyLibrary": "Mijn bibliotheek",
+ "LabelCustomizeOptionsPerMediaType": "Aanpassen voor mediatype",
+ "LabelPlayDefaultAudioTrack": "Speel standaard audio spoor ongeacht taal",
+ "LabelSubtitlePlaybackMode": "Ondertitelingsmode:",
+ "TabOther": "Overig",
+ "NotificationOptionVideoPlaybackStopped": "Video afspelen gestopt",
+ "NotificationOptionAudioPlaybackStopped": "Geluid afspelen gestopt",
+ "NotificationOptionGamePlaybackStopped": "Afspelen spel gestopt",
"HeaderSearchForSubtitles": "Zoeken naar ondertitels",
- "ButtonMore": "Meer",
"MessageNoSubtitleSearchResultsFound": "Geen zoekresultaten gevonden.",
"TabDisplay": "Weergave",
"TabLanguages": "Talen",
- "TabAppSettings": "App Instellingen",
"LabelEnableThemeSongs": "Theme songs inschakelen:",
"LabelEnableBackdrops": "Achtergronden inschakelen:",
"LabelEnableThemeSongsHelp": "Indien ingeschakeld, zullen theme songs in de achtergrond worden afgespeeld tijdens het browsen door de bibliotheek.",
"LabelEnableBackdropsHelp": "Indien ingeschakeld, zullen achtergrondafbeeldingen in de achtergrond worden getoond van een aantal pagina's tijdens het browsen door de bibliotheek.",
- "HeaderHomePage": "Startpagina",
- "HeaderSettingsForThisDevice": "Instellingen voor dit apparaat",
"OptionAuto": "Auto",
"OptionYes": "Ja",
"OptionNo": "Nee",
- "HeaderOptions": "Opties",
- "HeaderIdentificationResult": "Identificatie Resultaat",
"LabelHomePageSection1": "Startpagina sectie 1:",
"LabelHomePageSection2": "Startpagina sectie 2:",
"LabelHomePageSection3": "Startpagina sectie 3:",
- "LabelHomePageSection4": "Startpagina sectie 4:",
- "OptionMyMediaButtons": "Mijn media (knoppen)",
- "OptionMyMedia": "Mijn media",
- "OptionMyMediaSmall": "Mijn media (klein)",
"OptionResumablemedia": "Hervatten",
"OptionLatestMedia": "Nieuwste media",
- "OptionLatestChannelMedia": "Nieuwste kanaal items",
- "HeaderLatestChannelItems": "Nieuwste kanaal items",
"OptionNone": "Geen",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Rapporten",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Instellingen",
"MessageLoadingChannels": "Laden kanaal inhoud ...",
- "MessageLoadingContent": "Inhoud wordt geladen ...",
"ButtonMarkRead": "Markeren als gelezen",
"OptionDefaultSort": "Standaard",
"OptionCommunityMostWatchedSort": "Meest bekeken",
"TabNextUp": "Volgend",
- "PlaceholderUsername": "Gebruikersnaam",
- "HeaderBecomeProjectSupporter": "Word Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "Er zijn momenteel geen film suggesties beschikbaar. Begin met het bekijken en waardeer uw films, kom daarna terug om uw aanbevelingen te bekijken.",
"MessageNoCollectionsAvailable": "Collecties maken het u mogelijk om Films, Series, Albums, Boeken en Games te groeperen. Klik op de + knop om Collecties aan te maken.",
- "MessageNoPlaylistsAvailable": "Met afspeellijsten kunt u een lijst maken waarvan de items achter elkaar afgespeeld worden. Om een item toe te voegen klikt u met rechts of tik en houd het vast om het te selecteren, klik vervolgens op Toevoegen aan afspeellijst.",
- "MessageNoPlaylistItemsAvailable": "De afspeellijst is momenteel leeg.",
+ "ButtonClose": "Sluiten",
+ "HeaderConfirmDeletion": "Bevestigen Verwijdering",
+ "HeaderHomePage": "Startpagina",
+ "HeaderSettingsForThisDevice": "Instellingen voor dit apparaat",
"ButtonDismiss": "Afwijzen",
+ "ButtonMore": "Meer",
"ButtonEditOtherUserPreferences": "Wijzig het profiel, afbeelding en persoonlijke voorkeuren van deze gebruiker.",
+ "TitleChannels": "Kanalen",
"LabelChannelStreamQuality": "Voorkeurs kwaliteit internet stream:",
"LabelChannelStreamQualityHelp": "Bij weinig beschikbare bandbreedte kan het verminderen van de kwaliteit betere streams opleveren.",
"OptionBestAvailableStreamQuality": "Best beschikbaar",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Verwijder inhoud na: (dagen)",
"LabelChannelDownloadAgeHelp": "Gedownloade inhoud die ouder is zal worden verwijderd. Afspelen via internet streaming blijft mogelijk.",
"ChannelSettingsFormHelp": "Installeer kanalen zoals Trailers en Vimeo in de Plug-in catalogus.",
- "ButtonOptions": "Opties",
- "ViewTypePlaylists": "Afspeellijsten",
+ "ButtonAddToCollection": "Toevoegen aan Collectie",
+ "ButtonSubmit": "Uitvoeren",
"ViewTypeMovies": "Films",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Muziek",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artiesten",
"ViewTypeBoxSets": "Collecties",
- "ViewTypeChannels": "Kanalen",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Nu uitgezonden",
- "ViewTypeLatestGames": "Nieuwste games",
- "ViewTypeRecentlyPlayedGames": "Recent gespeelt",
- "ViewTypeGameFavorites": "Favorieten",
- "ViewTypeGameSystems": "Gam systemen",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Hervatten",
- "ViewTypeTvNextUp": "Volgende",
- "ViewTypeTvLatest": "Nieuwste",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favoriete Series",
- "ViewTypeTvFavoriteEpisodes": "Favoriete Afleveringen",
- "ViewTypeMovieResume": "Hervatten",
- "ViewTypeMovieLatest": "Nieuwste",
- "ViewTypeMovieMovies": "Films",
- "ViewTypeMovieCollections": "Collecties",
- "ViewTypeMovieFavorites": "Favorieten",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Nieuwste",
- "ViewTypeMusicPlaylists": "Afspeellijsten",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album artiesten",
"HeaderOtherDisplaySettings": "Beeld instellingen",
- "ViewTypeMusicSongs": "Nummers",
- "ViewTypeMusicFavorites": "Favorieten",
- "ViewTypeMusicFavoriteAlbums": "Favoriete albums",
- "ViewTypeMusicFavoriteArtists": "Favoriete artiesten",
- "ViewTypeMusicFavoriteSongs": "Favoriete nummers",
- "HeaderMyViews": "Mijn Overzichten",
"LabelSelectFolderGroups": "De inhoud van de volgende mappen automatisch groeperen in de secties zoals Films, Muziek en TV:",
"LabelSelectFolderGroupsHelp": "Mappen die niet aangevinkt zijn worden getoond in hun eigen weergave.",
+ "ViewTypeChannels": "Kanalen",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Toon Inhoud voor volwassen",
+ "MessageNoChapterProviders": "Installeer een hoofdstuk provider Plug-in zoals ChapterDb om extra hoofdstuk opties in te schakelen.",
+ "TabChapters": "Hoofdstukken",
+ "HeaderDownloadChaptersFor": "Download hoofdstuk namen voor:",
+ "HeaderChapterDownloadingHelp": "Wanneer Emby uw videobestanden scant kan het vriendelijke hoofdstuk namen downloaden van het internet met behulp van hoofdstuk plugins zoals ChapterDb.",
"OptionLibraryFolders": "Media mappen",
+ "LabelHomePageSection4": "Startpagina sectie 4:",
+ "OptionLatestChannelMedia": "Nieuwste kanaal items",
+ "HeaderLatestChannelItems": "Nieuwste kanaal items",
"TitleRemoteControl": "Beheer op afstand",
+ "HeaderMyViews": "Mijn Overzichten",
"OptionLatestTvRecordings": "Nieuwste opnames",
+ "ButtonRefresh": "Vernieuwen",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "De waarde die wordt gebruikt bij het reageren op GetProtocolInfo verzoeken van het apparaat.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby omvat ondersteunt Nfo metadata bestanden. Om Nfo metadata in- of uit te schakelen, gebruikt u het tabblad Geavanceerd om opties voor uw mediatypen in te stellen.",
- "LabelKodiMetadataUser": "Synchroniseer kijk informatie naar nfo's voor:",
- "LabelKodiMetadataUserHelp": "Schakel dit in om gemonitorde gegevens tussen Emby Server en Nfo bestanden te synchroniseren",
- "LabelKodiMetadataDateFormat": "Uitgave datum formaat:",
- "LabelKodiMetadataDateFormatHelp": "Alle datums in NFO's zullen gelezen en geschreven worden met dit formaat.",
- "LabelKodiMetadataSaveImagePaths": "Bewaar afbeeldingspaden in NFO-bestanden",
- "LabelKodiMetadataSaveImagePathsHelp": "Dit wordt aanbevolen als u bestandsnamen heeft die niet voldoen aan Kodi richtlijnen.",
- "LabelKodiMetadataEnablePathSubstitution": "Pad vervanging inschakelen",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Stelt pad vervanging in voor afbeeldingspaden en maakt gebruik van de Pad Vervangen instellingen van de server.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Bekijk pad vervanging.",
- "OptionDisplayChannelsInline": "Toon kanalen samen met andere media",
- "OptionDisplayChannelsInlineHelp": "Als dit ingeschakeld is zullen kanalen samen met andere mediasoorten getoond worden. Als dit uitgeschakeld is worden de kanalen gegroepeerd in een eigen weergave.",
"LabelDisplayCollectionsView": "Toon collecties in mijn overzichten om film verzamelingen weer te geven",
- "LabelDisplayCollectionsViewHelp": "Hiermee wordt een aparte weergave gemaakt waarin collecties worden weergegeven die u hebt aangemaakt of toegang toe hebt. Klik rechts op een film of druk en houd vast en kies 'Toevoegen aan Collectie'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Kopieer extrafanart naar extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "Gedownloade afbeeldingen kunnen direct in extrafanart en extrathumbs opgeslagen worden voor maximale Kodi skin compatibiliteit.",
+ "HeaderSubtitles": "Ondertiteling",
"TabServices": "Meta Diensten",
"TabLogs": "Logboeken",
"HeaderServerLogFiles": "Server logboek bestanden:",
@@ -1029,6 +820,8 @@
"LabelAppName": "Applicatie Naam",
"LabelAppNameExample": "Voorbeeld: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Geef een applicatie toestemming om te communiceren met Emby Server.",
+ "TabUsers": "Gebruikers",
+ "TabScheduledTasks": "Geplande taken",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identificatie Header",
"LabelValue": "Waarde:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "Weergave",
"LabelPageSize": "Itemlimiet:",
- "LabelPath": "Pad:",
"LabelView": "Weergave:",
- "TabUsers": "Gebruikers",
- "LabelSortName": "Sorteer naam:",
- "LabelDateAdded": "Datum toegevoegd:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Toevoegingen",
"HeaderAdvanced": "Geavanceerd",
"ButtonSync": "Synchronisatie",
- "TabScheduledTasks": "Geplande taken",
"HeaderChapters": "Hoofdstukken",
"HeaderResumeSettings": "Instellingen voor Hervatten",
"TabSync": "Synchronisatie",
"TitleUsers": "Gebruikers",
+ "LabelMaxStreamingBitrate": "Maximale streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Geef een maximale bitrate voor streaming op.",
+ "LabelMaxStaticBitrate": "Maximale Synchronisatie bitrate:",
+ "LabelMaxStaticBitrateHelp": "Geef een maximale bitrate op voor synchroniseren in hoge kwaliteit.",
"LabelProtocol": "Protokol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Synchronisatie",
"ButtonAddToPlaylist": "Toevoegen aan afspeellijst",
+ "MessageNoPlaylistsAvailable": "Met afspeellijsten kunt u een lijst maken waarvan de items achter elkaar afgespeeld worden. Om een item toe te voegen klikt u met rechts of tik en houd het vast om het te selecteren, klik vervolgens op Toevoegen aan afspeellijst.",
+ "MessageNoPlaylistItemsAvailable": "De afspeellijst is momenteel leeg.",
"TabPlaylists": "Afspeellijst",
- "ButtonClose": "Sluiten",
"LabelAllLanguages": "Alle talen",
"HeaderBrowseOnlineImages": "Bekijk online afbeeldingen",
"LabelSource": "Bron:",
@@ -1080,7 +874,6 @@
"OptionBox": "Hoes",
"OptionBoxRear": "Achterkant hoes",
"OptionDisc": "Schijf",
- "OptionIcon": "Pictogram",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Schermafbeelding",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Onge\u00efdentificeerd",
"OptionMissingParentalRating": "Ontbrekende kijkwijzer classificatie",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Afleveringen:",
"OptionSeason0": "Seizoen 0",
"LabelReport": "Rapport:",
"OptionReportSongs": "Nummers",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artiesten",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult video's",
+ "ButtonMoreItems": "Meer",
"HeaderActivity": "Activiteit",
"ScheduledTaskStartedWithName": "{0} is gestart",
"ScheduledTaskCancelledWithName": "{0} is geannuleerd",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Downloaden van ondertiteling voor {0} is mislukt",
"LabelRunningTimeValue": "Looptijd: {0}",
"LabelIpAddressValue": "IP adres: {0}",
- "UserLockedOutWithName": "Gebruikersaccount {0} is vergrendeld",
"UserConfigurationUpdatedWithName": "Gebruikersinstellingen voor {0} zijn bijgewerkt",
"UserCreatedWithName": "Gebruiker {0} is aangemaakt",
"UserPasswordChangedWithName": "Wachtwoord voor {0} is gewijzigd",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server is bijgewerkt",
"AuthenticationSucceededWithUserName": "{0} is succesvol geverifieerd",
"FailedLoginAttemptWithUserName": "Mislukte aanmeld poging van {0}",
- "UserDownloadingItemWithValues": "{0} download {1}",
"UserStartedPlayingItemWithValues": "{0} heeft afspelen van {1} gestart",
"UserStoppedPlayingItemWithValues": "{0} heeft afspelen van {1} gestopt",
"AppDeviceValues": "App: {0}, Apparaat: {1}",
"ProviderValue": "Aanbieder: {0}",
+ "HeaderAudio": "Geluid",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Inhoud wordt geladen ...",
"LabelChannelDownloadSizeLimit": "Downloadlimiet (GB): ",
- "LabelChannelDownloadSizeLimitHelpText": "Limiteer de grootte van de channel download map.",
+ "LabelMusicStaticBitrate": "Muzieksynchronisatie bitrate:",
+ "LabelMusicStaticBitrateHelp": "Geef een maximum bitrate op voor het synchroniseren van muziek",
+ "LabelMusicStreamingTranscodingBitrate": "Muziek transcodering bitrate: ",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Geef een maximum bitrate op voor het streamen van muziek",
"HeaderRecentActivity": "Recente activiteit",
"HeaderPeople": "Personen",
"HeaderDownloadPeopleMetadataFor": "Download biografie en afbeeldingen voor:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Toon een mappenweergave als u gewoon Mediamappen wilt weergeven",
"ViewTypeLiveTvRecordingGroups": "Opnamen",
"ViewTypeLiveTvChannels": "Kanalen",
- "LabelEasyPinCode": "Eenvoudige pincode:",
- "EasyPasswordHelp": "Uw gemakkelijk pincode wordt gebruikt voor offline toegang met ondersteunde Emby apps, en kan ook worden gebruikt voor eenvoudige in-netwerk aanmelden.",
- "LabelInNetworkSignInWithEasyPassword": "Schakel eenvoudige lokale aanmelding in met mijn easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "Indien ingeschakeld, zult u in staat zijn om uw gemakkelijke pincode gebruiken om u aan te melden bij Emby apps van binnen uw thuisnetwerk. Uw reguliere wachtwoord is nodig buiten uw thuisnetwerk. Als u de pincode leeg laat, heeft u geen wachtwoord nodig in uw thuisnetwerk.",
"HeaderPassword": "Wachtwoord",
"HeaderLocalAccess": "Lokale toegang",
"HeaderViewOrder": "Weergave volgorde",
- "ButtonResetEasyPassword": "Reset eenvoudige pincode",
"LabelSelectUserViewOrder": "Kies de volgorde van uw weergaven zoals deze worden weergegeven binnen Emby apps",
+ "LabelReleaseDate": "Uitgave datum:",
+ "LabelEndDate": "Eind datum|",
+ "LabelYear": "Jaar:",
+ "FolderTypeMixed": "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",
+ "LabelArtists": "Artiest:",
+ "LabelArtistsHelp": "Scheidt meerdere met een ;",
+ "ButtonAdvancedRefresh": "Geavanceerd vernieuwen",
+ "LabelPersonRole": "Rol:",
+ "LabelPersonRoleHelp": "Rol is alleen van toepassing op acteurs.",
+ "LabelPath": "Pad:",
+ "LabelSortName": "Sorteer naam:",
+ "LabelDateAdded": "Datum toegevoegd:",
"LabelMetadataRefreshMode": "Metadata vernieuw mode:",
"LabelImageRefreshMode": "Afbeelding vernieuw mode:",
"OptionDownloadMissingImages": "Ontbrekende afbeeldingen downloaden",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Persoon informatie",
"HeaderIdentifyItem": "Identificeer item",
"HeaderIdentifyItemHelp": "Vul \u00e9\u00e9n of meer zoek criteria in. Verwijder criteria om zoekresultaten te vergroten.",
- "HeaderConfirmDeletion": "Bevestigen Verwijdering",
"LabelFollowingFileWillBeDeleted": "Het volgende bestand wordt verwijderd.",
"LabelIfYouWishToContinueWithDeletion": "Geef om door te gaan het resultaat in:",
"ButtonIdentify": "Identificeer",
"LabelAlbumArtist": "Album artiest:",
- "LabelAlbumArtists": "Album artiesten:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Beoordeling gemeenschap:",
"LabelVoteCount": "Aantal stemmen:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overzicht:",
"LabelShortOverview": "Kort overzicht:",
- "LabelReleaseDate": "Uitgave datum:",
- "LabelYear": "Jaar:",
"LabelPlaceOfBirth": "Geboorteplaats:",
- "LabelEndDate": "Eind datum|",
"LabelAirDate": "Uitzend dagen:",
"LabelAirTime:": "Uitzend tijd:",
"LabelRuntimeMinutes": "Speelduur (minuten):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metagegevens instellingen",
"LabelLockItemToPreventChanges": "Blokkeer dit item tegen wijzigingen",
"MessageLeaveEmptyToInherit": "Leeg laten om instellingen van bovenliggend item of de algemene waarde over te nemen.",
- "TabDonate": "Doneer",
"HeaderDonationType": "Donatie soort:",
"OptionMakeOneTimeDonation": "Doe een aparte donatie",
- "OptionOneTimeDescription": "Dit is een extra donatie voor het team om te laten zien dat u hen steunt. Het geeft geen extra voordelen en geeft u geen supporter sleutel.",
- "OptionLifeTimeSupporterMembership": "Levenslang supporter lidmaatschap",
- "OptionYearlySupporterMembership": "Jaarlijks supporter lidmaatschap",
- "OptionMonthlySupporterMembership": "Maandelijks supporter lidmaatschap",
"OptionNoTrailer": "Geen trailer",
"OptionNoThemeSong": "Geen thema muziek",
"OptionNoThemeVideo": "Geen thema film",
"LabelOneTimeDonationAmount": "Donatie bedrag:",
- "ButtonDonate": "Doneren",
- "ButtonPurchase": "Aankoop",
"OptionActor": "Acteur",
"OptionComposer": "Componist",
"OptionDirector": "Regiseur",
"OptionGuestStar": "Gast ster",
"OptionProducer": "Producent",
"OptionWriter": "Schrijver",
+ "LabelEpisodeNamePlain": "Naam aflevering",
+ "LabelSeriesNamePlain": "Naam serie",
+ "LabelSeasonNumberPlain": "nummer seizoen",
+ "LabelEpisodeNumberPlain": "Nummer aflevering",
+ "LabelEndingEpisodeNumberPlain": "Laatste nummer aflevering",
+ "OptionOneTimeDescription": "Dit is een extra donatie voor het team om te laten zien dat u hen steunt. Het geeft geen extra voordelen en geeft u geen supporter sleutel.",
"LabelAirDays": "Uitzend dagen:",
"LabelAirTime": "Uitzend tijd:",
"HeaderMediaInfo": "Media informatie",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Informatie ontwikkelaar",
"HeaderRevisionHistory": "Versie geschiedenis",
"ButtonViewWebsite": "Bekijk website",
+ "ViewTypeLiveTvNowPlaying": "Nu uitgezonden",
+ "ViewTypeLatestGames": "Nieuwste games",
+ "ViewTypeRecentlyPlayedGames": "Recent gespeelt",
+ "ViewTypeGameFavorites": "Favorieten",
+ "ViewTypeGameSystems": "Gam systemen",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Hervatten",
+ "ViewTypeTvNextUp": "Volgende",
+ "ViewTypeTvLatest": "Nieuwste",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Hervatten",
+ "ViewTypeMovieLatest": "Nieuwste",
+ "ViewTypeMovieMovies": "Films",
+ "ViewTypeMovieCollections": "Collecties",
+ "ViewTypeMovieFavorites": "Favorieten",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Nieuwste",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album artiesten",
+ "TabDonate": "Doneer",
+ "OptionLifeTimeSupporterMembership": "Levenslang supporter lidmaatschap",
+ "OptionYearlySupporterMembership": "Jaarlijks supporter lidmaatschap",
+ "OptionMonthlySupporterMembership": "Maandelijks supporter lidmaatschap",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favoriete Series",
+ "ViewTypeTvFavoriteEpisodes": "Favoriete Afleveringen",
"HeaderXmlSettings": "Xml Instellingen",
"HeaderXmlDocumentAttributes": "Xml Document Attributen",
"HeaderXmlDocumentAttribute": "Xml Document Attribuut",
"XmlDocumentAttributeListHelp": "Deze kenmerken worden toegepast op het hoofd-element van elk XML-antwoord.",
"OptionSaveMetadataAsHidden": "Metagegevens en afbeeldingen opslaan als verborgen bestanden",
+ "ViewTypeMusicSongs": "Nummers",
"LabelExtractChaptersDuringLibraryScan": "Hoofdstuk afbeeldingen uitpakken tijdens het scannen van de bibliotheek",
"LabelExtractChaptersDuringLibraryScanHelp": "Wanneer ingeschakeld worden hoofdstuk afbeeldingen uitgepakt wanneer video's worden ge\u00efmporteerd tijdens het scannen van de bibliotheek. Wanneer uitgeschakeld worden de hoofdstuk afbeeldingen uitgepakt tijdens de geplande taak \"Hoofdstukken uitpakken\", waardoor de standaard bibliotheek scan sneller voltooid is.",
- "LabelConnectGuestUserName": "Hun Emby gebruikersnaam of email adres:",
+ "ViewTypeMusicFavorites": "Favorieten",
+ "ViewTypeMusicFavoriteAlbums": "Favoriete albums",
+ "ViewTypeMusicFavoriteArtists": "Favoriete artiesten",
+ "ViewTypeMusicFavoriteSongs": "Favoriete nummers",
+ "ButtonAddLocalUser": "Voeg lokale gebruiker toe",
+ "HeaderIdentification": "Identificatie",
"LabelConnectUserName": "Emby gebruikersnaam\/email:",
"LabelConnectUserNameHelp": "Verbind deze gebruiker aan een Emby account om eenvoudig aanmelden vanaf elke Emby app toe te staan zonder dat u het IP-adres hoeft te weten.",
- "ButtonLearnMoreAboutEmbyConnect": "Leer meer over Emby Connect",
+ "ButtonNext": "Volgende",
+ "ButtonPrevious": "Vorige",
"LabelExternalPlayers": "Externe spelers:",
"LabelExternalPlayersHelp": "Toon knoppen om inhoud in externe spelers of te spelen. Dit is alleen mogelijk op apparaten die 'url schemes' ondersteunen, meest Android en iOS. Met externe spelers is er over het algemeen geen ondersteuning voor afstandsbediening of hervatten.",
- "LabelNativeExternalPlayersHelp": "Toon knoppen om media in externe spelers te kunnen spelen.",
- "LabelEnableItemPreviews": "Schakel item preview in",
- "LabelEnableItemPreviewsHelp": "Bij inschakelen zal op sommige schermen een preview getoond worden als op een item geklikt wordt.",
+ "ValueSpecialEpisodeName": "Speciaal - {0}",
"HeaderSubtitleProfile": "Ondertitelingsprofiel",
"HeaderSubtitleProfiles": "Ondertitelingsprofielen",
"HeaderSubtitleProfilesHelp": "Ondertitelingsprofielen beschrijven de ondertitelings formaten ondersteund door het apparaat.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls gesegmenteerde ondertiteling",
"LabelSubtitleFormatHelp": "Voorbeeld: srt",
"ButtonLearnMore": "Meer informatie",
+ "HeaderKodiMetadataHelp": "Emby omvat ondersteunt Nfo metadata bestanden. Om Nfo metadata in- of uit te schakelen, gebruikt u het tabblad Geavanceerd om opties voor uw mediatypen in te stellen.",
+ "LabelKodiMetadataUser": "Synchroniseer kijk informatie naar nfo's voor:",
+ "LabelKodiMetadataUserHelp": "Schakel dit in om gemonitorde gegevens tussen Emby Server en Nfo bestanden te synchroniseren",
+ "LabelKodiMetadataDateFormat": "Uitgave datum formaat:",
+ "LabelKodiMetadataDateFormatHelp": "Alle datums in NFO's zullen gelezen en geschreven worden met dit formaat.",
+ "LabelKodiMetadataSaveImagePaths": "Bewaar afbeeldingspaden in NFO-bestanden",
+ "LabelKodiMetadataSaveImagePathsHelp": "Dit wordt aanbevolen als u bestandsnamen heeft die niet voldoen aan Kodi richtlijnen.",
+ "LabelKodiMetadataEnablePathSubstitution": "Pad vervanging inschakelen",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Stelt pad vervanging in voor afbeeldingspaden en maakt gebruik van de Pad Vervangen instellingen van de server.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Bekijk pad vervanging.",
+ "LabelKodiMetadataEnableExtraThumbs": "Kopieer extrafanart naar extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Gedownloade afbeeldingen kunnen direct in extrafanart en extrathumbs opgeslagen worden voor maximale Kodi skin compatibiliteit.",
"TabPlayback": "Afspelen",
"HeaderLanguagePreferences": "Taal voorkeuren",
"TabCinemaMode": "Cinema mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Gebruik alleen trailers van films die nog niet gekeken zijn",
"LabelEnableIntroParentalControl": "Schakel slimme ouderlijke toezicht in",
"LabelEnableIntroParentalControlHelp": "Trailers worden alleen geselecteerd als de ouderlijke toezicht lager of gelijk is aan de film die gekeken wordt.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Deze functies vereisen een actieve ondersteuners lidmaatschap en installatie van de Trailer-kanaal plugin.",
"OptionTrailersFromMyMoviesHelp": "Vereist instellingen voor lokale trailers.",
"LabelCustomIntrosPath": "Eigen intro's pad:",
"LabelCustomIntrosPathHelp": "Een map met video bestanden. na de trailers wordt er een willekeurige video afgespeeld.",
- "ValueSpecialEpisodeName": "Speciaal - {0}",
+ "ButtonOptions": "Opties",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Deze functies vereisen een actieve ondersteuners lidmaatschap en installatie van de Trailer-kanaal plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Inclusief trailers van nieuwe en aankomende films op Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Inclusief trailers van nieuwe en aankomende films op Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Gebruikers kunnen in hun eigen instellingen Cinema Mode uitschakelen",
"LabelEnableCinemaMode": "Cinema Mode inschakelen",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Apparaten",
+ "LabelLocalHttpServerPortNumber": "Lokale http poort nummer:",
+ "LabelLocalHttpServerPortNumberHelp": "Het tcp poort nummer waar Emby's http server aan moet verbinden.",
+ "LabelEnableAutomaticPortMap": "Schakel automatisch poort vertalen in",
+ "LabelEnableAutomaticPortMapHelp": "Probeer om de publieke poort automatisch te vertalen naar de lokale poort via UPnP. Dit werkt niet op alle routers.",
"LabelDateAddedBehavior": "Datum toegevoegd gedrag voor nieuwe content:",
"OptionDateAddedImportTime": "Gebruik scan datum",
"OptionDateAddedFileTime": "Gebruik aanmaak datum bestand",
"LabelDateAddedBehaviorHelp": "Als metadata gegevens aanwezig zijn hebben deze voorrang op deze opties.",
"LabelNumberTrailerToPlay": "Aantal af te spelen trailers:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limiteer de grootte van de channel download map.",
"TitleDevices": "Apparaten",
"TabCameraUpload": "Camera upload",
- "TabDevices": "Apparaten",
"HeaderCameraUploadHelp": "Foto's en video's genomen met uw mobiele apparaten automatisch uploaden naar Emby .",
"MessageNoDevicesSupportCameraUpload": "U heeft op dit moment geen apparaten die camera upload ondersteunen.",
"LabelCameraUploadPath": "Camera upload pad:",
"LabelCameraUploadPathHelp": "Geef een eigen upload pad op, indien gewenst. Deze map moet ook aan de bibliotheek instellingen toegevoegd worden. Als er niets opgegeven is wordt de standaard map gebruikt.",
"LabelCreateCameraUploadSubfolder": "Maak een submap voor elk apparaat",
"LabelCreateCameraUploadSubfolderHelp": "Specifieke mappen kunnen aan een apparaat toegekend worden door er op te klikken in de apparaten pagina.",
+ "ButtonInviteUser": "Nodig gebruiker uit",
"LabelCustomDeviceDisplayName": "Weergave naam:",
"LabelCustomDeviceDisplayNameHelp": "Geef een eigen weergave naam op of laat deze leeg om de naam te gebruiken die het apparaat opgeeft.",
"HeaderInviteUser": "Nodig gebruiker uit",
- "LabelConnectGuestUserNameHelp": "Dit is de gebruikersnaam die uw vriend gebruikt om zich aan te melden bij de Emby website, of hun e-mailadres",
"HeaderInviteUserHelp": "Delen van uw media met vrienden is eenvoudiger dan ooit met Emby Connect.",
"ButtonSendInvitation": "Stuur uitnodiging",
- "HeaderSignInWithConnect": "Aanmelden met Emby Connect",
"HeaderGuests": "Gasten",
"HeaderLocalUsers": "Lokale gebruikers",
"HeaderPendingInvitations": "Uitstaande uitnodigingen",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Week dagen",
"OptionWeekends": "Weekend",
"MessageProfileInfoSynced": "Gebruikersprofiel informatie gesynchroniseerd met Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optioneel: Koppel uw Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer reel",
"OptionPlayUnwatchedTrailersOnly": "Speel alleen ongeziene trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "Geen trailers gevonden. Installeer het Trailers kanaal en verbeter uw film ervaring door middel van een bibliotheek met internet trailers.",
"HeaderNewUsers": "Nieuwe gebruikers",
"ButtonSignUp": "Aanmelden",
+ "LabelConnectGuestUserName": "Hun Emby gebruikersnaam of email adres:",
+ "LabelConnectGuestUserNameHelp": "Dit is de gebruikersnaam die uw vriend gebruikt om zich aan te melden bij de Emby website, of hun e-mailadres",
"ButtonForgotPassword": "Wachtwoord vergeten",
"OptionDisableUserPreferences": "Voorkom toegang tot gebruikers voorkeuren",
"OptionDisableUserPreferencesHelp": "Indien ingeschakeld kunnen alleen beheerders profielafbeeldingen, wachtwoorden en taalinstellingen wijzigen.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Deel media mappen",
"MessageGuestSharingPermissionsHelp": "De meeste features zijn niet direct beschikbaar voor gasten maar kunnen aangezet worden waar gewenst.",
"HeaderInvitations": "Uitnodigingen",
- "LabelForgotPasswordUsernameHelp": "Vul uw gebruikersnaam in, als u deze weet.",
"HeaderForgotPassword": "Wachtwoord vergeten",
+ "LabelForgotPasswordUsernameHelp": "Vul uw gebruikersnaam in, als u deze weet.",
"TitleForgotPassword": "Wachtwoord vergeten",
"TitlePasswordReset": "Wachtwoord resetten",
"LabelPasswordRecoveryPinCode": "Pincode:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Ouderlijke toezicht",
"HeaderVideoTypes": "Video types",
"HeaderYears": "Jaren",
+ "OptionPosterCard": "Poster kaart",
+ "OptionThumbCard": "Miniaturen kaart",
+ "OptionAllowRemoteSharedDevices": "Op afstand besturen van gedeelde apparaten toestaan",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna apparaten worden als gedeeld apparaat gezien totdat een gebruiker deze gaat gebruiken.",
+ "HeaderRemoteControl": "Gebruik op afstand",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artiesten",
+ "HeaderSignInWithConnect": "Aanmelden met Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api documentatie",
+ "LabelDeveloperResources": "Ontwikkelaars bronnen",
"HeaderAddTag": "Voeg tag toe",
- "HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder- of met niet herkende classificatiegegevens:",
- "LabelBlockContentWithTags": "Blokkeer inhoud met labels:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server informatie",
"LabelEnableSingleImageInDidlLimit": "Beperk tot \u00e9\u00e9n enkele ingesloten afbeelding",
"LabelEnableSingleImageInDidlLimitHelp": "Sommige apparaten zullen niet goed weergeven als er meerdere afbeeldingen ingesloten zijn in Didl.",
"TabActivity": "Activiteit",
"TitleSync": "Synchroniseer",
+ "HeaderSettings": "Instellingen",
"OptionAllowSyncContent": "Sync toestaan",
- "OptionAllowContentDownloading": "Media downloaden toestaan",
+ "FolderTypeInherit": "overerven",
+ "LabelContentType": "Inhoud type:",
"NameSeasonUnknown": "Seizoen Onbekend",
"NameSeasonNumber": "Seizoen {0}",
"LabelNewUserNameHelp": "Gebruikersnamen kunnen letters (az), cijfers (0-9), streepjes, underscores (_), apostrofs (') en punten (.) bevatten\n",
+ "ButtonHelp": "Hulp",
+ "TabAccess": "Toegang",
+ "HeaderDeviceAccess": "Apparaat Toegang",
+ "OptionEnableAccessFromAllDevices": "Toegang vanaf alle apparaten toestaan",
+ "DeviceAccessHelp": "Dit geldt alleen voor apparaten die uniek ge\u00efdentificeerd kunnen worden en voorkomen niet toegang via een webbrowser. Filteren van apparaat toegang voor gebruikers voorkomt dat zij nieuwe apparaten gebruiken totdat deze hier zijn goedgekeurd.",
+ "ButtonQuickStartGuide": "Snel start gids",
+ "HeaderSyncJobInfo": "Sync Opdrachten",
"TabJobs": "Opdrachten",
"TabSyncJobs": "Sync Opdrachten",
+ "HeaderTermsOfService": "Emby Service Voorwaarden",
+ "MessagePleaseAcceptTermsOfService": "Accepteer a.u.b. de voorwaarden en Privacybeleid voordat u doorgaat.",
+ "OptionIAcceptTermsOfService": "Ik accepteer de voorwaarden",
+ "ButtonPrivacyPolicy": "Privacybeleid",
+ "ButtonTermsOfService": "Service voorwaarden",
+ "OptionHideUserFromLoginHelp": "Handig voor piv\u00e9 of verborgen beheer accounts. De gebruiker zal handmatig m.b.v. gebruikersnaam en wachtwoord aan moeten melden.",
+ "LabelEnterConnectUserName": "Gebruikersnaam of email:",
+ "LabelEnterConnectUserNameHelp": "Dit is uw Emby Online Account gebruikersnaam of emailadres.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Herken archief bestanden als media",
+ "OptionDetectArchiveFilesAsMediaHelp": "Indien ingeschakeld zullen bestanden met .rar en .zip extensies herkend worden als media bestanden.",
+ "ButtonDonate": "Doneren",
+ "HeaderOptions": "Opties",
+ "HeaderIdentificationResult": "Identificatie Resultaat",
+ "OptionEnableAccessToAllChannels": "Toegang tot alle kanalen inschakelen",
+ "LabelAutomaticUpdates": "Automatische updates inschakelen",
+ "LabelFanartApiKey": "Persoonlijke api sleutel:",
+ "LabelFanartApiKeyHelp": "Verzoeken om fanart zonder een persoonlijke API sleutel geven resultaten terug die meer dan 7 dagen geleden goedgekeurd zijn. Een persoonlijke API sleutel brengt dat terug tot 48 uur en als u ook een fanart VIP lid bent wordt dit tot 10 minuten teruggebracht.",
+ "HeaderDeveloperOptions": "Ontwikkelaar Opties",
+ "OptionEnableWebClientResponseCache": "Web client reactie caching inschakelen",
+ "OptionDisableForDevelopmentHelp": "Configureer deze zonodig voor web client ontwikkelingsdoeleinden.",
+ "OptionEnableWebClientResourceMinification": "Web client bron verkleining inschakelen",
+ "LabelDashboardSourcePath": "Web client bron pad:",
+ "LabelDashboardSourcePathHelp": "Wanneer u de server draait vanaf de bron, geeft u het pad naar de map dashboard-ui op. Alle web client bestanden worden geladen vanaf deze locatie.",
+ "HeaderPaths": "Paden",
+ "TitleNotifications": "Meldingen",
+ "ButtonDonateWithPayPal": "Doneer met PayPal",
+ "TitleScheduledTasks": "Geplande Taken",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Publieke http poort nummer:",
+ "LabelPublicHttpPortHelp": "Het publieke poortnummer dat moet worden toegewezen aan de lokale http poort.",
+ "LabelPublicHttpsPort": "Publieke https poort nummer:",
+ "LabelPublicHttpsPortHelp": "Het publieke poortnummer dat moet worden toegewezen aan de lokale https poort.",
+ "LabelEnableHttps": "Rapporteer https als extern adres",
+ "LabelEnableHttpsHelp": "Indien ingeschakeld, zal de server een https url rapporteren aan de client als het externe adres.",
+ "LabelHttpsPort": "Lokale https poort nummer:",
+ "LabelHttpsPortHelp": "Het tcp poort nummer waar Emby's http server aan moet verbinden.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Aangepaste css:",
+ "LabelCustomCssHelp": "Uw eigen aangepaste css voor de web-interface toepassen.",
+ "ButtonConvertMedia": "Converteer media",
+ "ButtonOrganize": "Organiseren",
+ "ButtonJoinTheDevelopmentTeam": "Word lid van het Ontwikkel Team",
+ "OptionEnableAccessToAllLibraries": "Toegang tot alle bibliotheken inschakelen",
+ "LabelSyncTempPath": "Pad voor tijdelijke bestanden:",
+ "LabelSyncTempPathHelp": "Geef een afwijkende sync werk directory op. Tijdens het sync proces aangemaakte geconverteerde media zal hier opgeslagen worden.",
+ "LabelCustomCertificatePath": "Aangepast certificaat pad:",
+ "LabelCustomCertificatePathHelp": "Gebruik uw eigen ssl certificaat .pfx bestand. Indien weggelaten zal de server een zelf-gesigneerd certificaat aanmaken.",
+ "LabelDisplayCollectionsViewHelp": "Hiermee wordt een aparte weergave gemaakt waarin collecties worden weergegeven die u hebt aangemaakt of toegang toe hebt. Klik rechts op een film of druk en houd vast en kies 'Toevoegen aan Collectie'. ",
+ "HeaderSyncRequiresSupporterMembership": "Synchroniseren vereist een Supporter Lidmaatschap",
+ "HeaderEnjoyDayTrial": "Geniet van een 14-daagse gratis proefversie",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Registreer met PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera afbeelding ge\u00fcpload",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Eenvoudige Pincode",
+ "LabelEasyPinCode": "Eenvoudige pincode:",
+ "EasyPasswordHelp": "Uw gemakkelijk pincode wordt gebruikt voor offline toegang met ondersteunde Emby apps, en kan ook worden gebruikt voor eenvoudige in-netwerk aanmelden.",
+ "LabelInNetworkSignInWithEasyPassword": "Schakel eenvoudige lokale aanmelding in met mijn easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "Indien ingeschakeld, zult u in staat zijn om uw gemakkelijke pincode gebruiken om u aan te melden bij Emby apps van binnen uw thuisnetwerk. Uw reguliere wachtwoord is nodig buiten uw thuisnetwerk. Als u de pincode leeg laat, heeft u geen wachtwoord nodig in uw thuisnetwerk.",
+ "ButtonResetEasyPassword": "Reset eenvoudige pincode",
+ "OptionAllowContentDownloading": "Media downloaden toestaan",
+ "LabelBlockContentWithTags": "Blokkeer inhoud met labels:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "Als toegestane tags worden gebruikt in een diep geneste mappenstructuur, zal getagde inhoud vereisen dat de bovenliggende mappen ook getagd zijn.",
+ "UserDownloadingItemWithValues": "{0} download {1}",
+ "LabelPinCode": "Pincode:",
+ "ButtonExit": "Afsluiten",
+ "HeaderGrownupsOnly": "Alleen voor volwassenen!",
+ "DividerOr": "-- of --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Voor toegang toets uw pincode",
+ "KidsModeAdultInstruction": "Klik op het slotje in de rechterbenedenhoek om te configureren of blijf in de kindermodus. Uw pincode is vereist.",
+ "ButtonConfigurePinCode": "Configureer pincode",
+ "HeaderAdultsReadHere": "Volwassenen Lees hier!",
+ "LabelEnableEnhancedMovies": "Verbeterde film displays inschakelen",
+ "LabelEnableEnhancedMoviesHelp": "Wanneer ingeschakeld, zullen films worden weergegeven als mappen inclusief trailers, extra's, cast & crew en andere gerelateerde inhoud.",
+ "NotificationOptionUserLockedOut": "Gebruikersaccount vergrendeld",
+ "OptionIcon": "Pictogram",
+ "UserLockedOutWithName": "Gebruikersaccount {0} is vergrendeld",
"HeaderThisUserIsCurrentlyDisabled": "Deze gebruiker is momenteel uitgesloten",
"MessageReenableUser": "Zie hieronder hoe opnieuw in te schakelen",
+ "LabelTimeLimitHours": "Tijdslimiet (uren):",
+ "HeaderSendNotificationHelp": "Notificaties worde in uw Emby inbox afgelelverd. Additionele opties kunnen via de tab Services ge\u00efnstalleerd worden.",
+ "HeaderInstalledServices": "Ge\u00efnstalleerde diensten",
+ "HeaderAvailableServices": "Beschikbare diensten",
+ "MessageNoServicesInstalled": "Er zijn momenteel geen diensten ge\u00efnstalleerd.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Diensten",
+ "ViewTypePlaylists": "Afspeellijsten",
+ "LabelAlbumArtists": "Album artiesten:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata voor:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Films binnenkort",
- "HeaderUpcomingSports": "Sport binnenkort",
"HeaderUpcomingPrograms": "Programma's binnenkort",
"LabelShowLibraryTileNames": "Toon bibliotheek tegel namen",
"LabelShowLibraryTileNamesHelp": "Bepaalt of labels onder de bibliotheek tegels zullen worden weergegeven op de startpagina",
+ "HeaderSupporterBenefits": "Voordelen voor Supporters",
+ "HeaderAddUser": "Gebruiker Toevoegen",
+ "LabelAddConnectSupporterHelp": "Om een \u200b\u200bgebruiker toe te voegen die niet in de lijst voorkomt, moet u eerst hun account koppelen aan Emby Connect vanuit hun gebruikersprofiel pagina.",
+ "TabPlaylist": "Afspeellijst",
+ "LabelConfigureServer": "Emby Configureren",
+ "WelcomeToProject": "Welkom bij Emby!",
+ "LinkedToEmbyConnect": "Gekoppeld aan Emby Connect",
+ "ProjectHasCommunity": "Emby heeft een bloeiende gemeenschap van gebruikers en medewerkers.",
+ "VisitProjectWebsite": "Bezoek de Emby Website",
+ "VisitProjectWebsiteLong": "Bezoek de Emby Web-website voor het laatste nieuws en blijf op de hoogte via het ontwikkelaars blog.",
+ "HeaderHelpImproveProject": "Help Emby te verbeteren",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Word Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Leer meer over Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optioneel: Koppel uw Emby account",
"OptionEnableTranscodingThrottle": "Throtteling inschakelen",
"OptionEnableTranscodingThrottleHelp": "Throtteling zal automatisch de snelheid van het transcoderen aanpassen om de cpu belasting laag te houden tijdens het afspelen.",
+ "OptionHideWatchedContentFromLatestMedia": "Verberg bekeken inhoud van recent toegevoegd",
+ "TabSuggestions": "Suggesties",
+ "PlaceholderUsername": "Gebruikersnaam",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Sport binnenkort",
"LabelUploadSpeedLimit": "Upload limiet (Mbps):",
"OptionAllowSyncTranscoding": "Synchronisatie die transcodering vereist toestaan",
"HeaderPlayback": "Media afspelen",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Gebruikers zullen een bericht ontvangen als afspelen niet is toegestaan op basis van het beleid",
"OptionAllowAudioPlaybackTranscoding": "Afspelen van geluid via transcoding toestaan",
"OptionAllowVideoPlaybackTranscoding": "Afspelen van video via transcoding toestaan",
- "OptionAllowMediaPlaybackTranscodingHelp": "Gebruikers zullen een bericht ontvangen als afspelen niet is toegestaan op basis van het beleid",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Client bitrate limiet (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "Een optionele streaming bitrate limiet voor alle clients. Dit wordt gebruikt om te voorkomen dat clients een hogere bitrate aanvragen dan de internet connectie kan leveren.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limiteer het aantal CPU cores dat gebruikt mag worden bij een omzetting om te synchroniseren.",
"OptionEnableFullSpeedConversion": "Inschakelen conversie op hoge snelheid",
"OptionEnableFullSpeedConversionHelp": "Standaard wordt het converteren voor synchronisatie opdrachten op lage snelheid uitgevoerd zodat er zo min mogelijk impact is op de server.",
+ "HeaderRepeatingOptions": "Herhaling opties",
+ "OptionMyMediaButtons": "Mijn media (knoppen)",
+ "OptionMyMedia": "Mijn media",
+ "OptionMyMediaSmall": "Mijn media (klein)",
"HeaderPlaylists": "Afspeellijsten",
+ "ViewTypeMusicPlaylists": "Afspeellijsten",
"HeaderViewStyles": "Bekijk stijlen",
"LabelSelectViewStyles": "Schakel verbeterde presentatie in voor:",
"LabelSelectViewStylesHelp": "Bij inschakelen zullen overzichten met met categorie\u00ebn zoals suggesties, recente, genres en meer getoond worden. Bij uitschakelen worden simpele mappen getoond.",
+ "ButtonSignInWithConnect": "Aanmelden met Emby Connect",
+ "HeaderNewServer": "Nieuwe Server",
+ "LabelMaxChromecastBitrate": "Maximale bitrate Chromecast:",
+ "TabAppSettings": "App Instellingen",
"TabPhotos": "Foto's",
"TabVideos": "Video's",
"HeaderWelcomeToEmby": "Welkom bij Emby",
"EmbyIntroMessage": "Met Emby kunt u eenvoudig films, muziek en foto's naar uw telefoon, tablet en andere apparatuur streamen.",
"ButtonSkip": "Overslaan",
"TextConnectToServerManually": "Verbind handmatig met de server",
- "ButtonSignInWithConnect": "Aanmelden met Emby Connect",
"ButtonConnect": "Verbind",
"LabelServerHost": "Server:",
"LabelServerHostHelp": "192.168.1.100 of https:\/\/myserver.com",
"LabelServerPort": "Poort:",
- "HeaderNewServer": "Nieuwe Server",
"ButtonChangeServer": "Wijzig server",
"HeaderConnectToServer": "Verbind met server",
"OptionReportList": "Lijst weergave",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Kolommen",
"ButtonReset": "Rest",
+ "ButtonPurchase": "Aankoop",
"OptionEnableExternalVideoPlayers": "Inschakelen van externe video-spelers",
+ "LabelNativeExternalPlayersHelp": "Toon knoppen om media in externe spelers te kunnen spelen.",
+ "LabelEnableItemPreviews": "Schakel item preview in",
+ "LabelEnableItemPreviewsHelp": "Bij inschakelen zal op sommige schermen een preview getoond worden als op een item geklikt wordt.",
"ButtonUnlockGuide": "Gids vrijgeven",
+ "ButtonManageServer": "Beheer server",
"LabelEnableFullScreen": "Schakel Full Screen in",
"LabelEnableChromecastAc3Passthrough": "Schakel Chromecast AC3 Passthrough in",
- "OptionSyncToSDCard": "Gesynchroniseerd naar een SD kaart",
+ "LabelSyncPath": "Gesynchroniseerde inhoud pad:",
"LabelEmail": "Email adres:",
"LabelUsername": "Gebruikersnaam:",
"HeaderSignUp": "Meld aan",
"LabelPasswordConfirm": "Wachtworod (Bevestig)",
"ButtonAddServer": "Voeg server toe",
+ "ButtonShare": "Delen",
+ "OptionAllowLinkSharing": "Sta social media delen toe",
+ "OptionAllowLinkSharingHelp": "Alleen webpagina's met media-informatie worden gedeeld. Media-bestanden worden nooit publiekelijk gedeeld. Aandelen zijn beperkt in de tijd en zal verlopen op basis van uw instellingen voor delen server.",
+ "HeaderSharing": "Delen",
"TabHomeScreen": "Begin scherm",
"HeaderDisplay": "Weergave",
"HeaderNavigation": "Navigatie",
"LegendTheseSettingsShared": "Deze instellingen worden gedeeld op alle apparaten",
+ "LabelRecordingPath": "Opname pad:",
+ "LabelRecordingPathHelp": "Geef een aangepaste lokatie voor opnamen. Laat leeg om de standaard lokatie te gebruiken.",
"OptionEnableAutomaticServerUpdates": "Schakel automatische server updates in",
"OptionOtherTrailers": "Voeg trailers van oudere films toe",
"HeaderOverview": "Overzicht",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Voeg apparaat toe",
"HeaderAddDevice": "Voeg apparaat toe",
"HeaderExternalServices": "Externe diensten",
- "LabelTunerIpAddress": "Tuner IP adres:",
"TabExternalServices": "Externe diensten",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Gids aanbieders",
"AddGuideProviderHelp": "Voeg een bron voor TV gids informatie toe",
"LabelZipCode": "Postcode:",
- "GuideProviderSelectListings": "Selecteer lijst",
- "GuideProviderLogin": "Log in",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Wordt uw tuner niet getoond? Porbeer een externe service provider te installeren om meer Live TV opties te krijgen.",
+ "OptionSyncToSDCard": "Gesynchroniseerd naar een SD kaart",
+ "LabelTunerIpAddress": "Tuner IP adres:",
+ "GuideProviderSelectListings": "Selecteer lijst",
+ "GuideProviderLogin": "Log in",
"LabelImportOnlyFavoriteChannels": "Gebruik alleen kanalen die favoriet zijn",
"ImportFavoriteChannelsHelp": "Bij inschakelen zullen alleen kanalen ge\u00efmporteerd worden die op de tuner als favoriet aangemerkt zijn.",
"ButtonRepeat": "Herhaling",
- "LabelEnableThisTuner": "Schakel deze tuner in",
- "LabelEnableThisTunerHelp": "Schakel uit om te voorkomen dat er van deze tuner zenders ge\u00efmporteerd worden.",
- "HeaderLocked": "Vergrendeld",
"HeaderUnidentified": "One\u00efdentificaard",
"HeaderImagePrimary": "Primair",
"HeaderImageBackdrop": "Achtergrond",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "Afbeelding gebruiker",
+ "LabelEnableThisTuner": "Schakel deze tuner in",
+ "LabelEnableThisTunerHelp": "Schakel uit om te voorkomen dat er van deze tuner zenders ge\u00efmporteerd worden.",
+ "HeaderLocked": "Vergrendeld",
"ButtonDisplaySettings": "Weergave instellingen",
"ButtonHomeScreenSettings": "Begin scherm instellingen",
"ButtonPlaybackSettings": "Afspeel instellingen",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Selecteer het maximale aantal threads die gebruikt mogen worden om te transcoderen. Bij een lager aantal zal het CPU gebruik lager zijn, maar kan de afspeelkwaliteit minder zijn.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby gids",
- "LabelSyncPath": "Gesynchroniseerde inhoud pad:",
"OptionSyncOnlyOnWifi": "Synchroniseer alleen via Wifi",
+ "OptionDisplayChannelsInline": "Toon kanalen samen met andere media",
+ "OptionDisplayChannelsInlineHelp": "Als dit ingeschakeld is zullen kanalen samen met andere mediasoorten getoond worden. Als dit uitgeschakeld is worden de kanalen gegroepeerd in een eigen weergave.",
"OptionSyncLosslessAudioOriginal": "Synchroniseer lossless geluid in originele kwaliteit",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Opnamen opties",
- "ButtonShare": "Delen",
"HeaderUpcomingForKids": "Binnenkort voor kinderen",
"HeaderSetupLiveTV": "Configureer Live TV",
"LabelTunerType": "Soort Tuner:",
"HelpMoreTunersCanBeAdded": "Extra tuners kunnen later in de Live TV sectie worden toegevoegd.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Andere Live TV aanbieders kunnen later in de LIVE TV sectie toegevoegd worden.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "Er is een actief Emby Supporter lidmaatschap benodigd om een automatische serie opname aan te maken.",
"HeaderSetupTVGuide": "TV Gids configureren",
"LabelDataProvider": "Gegevensleverancier:",
"OptionSendRecordingsToAutoOrganize": "Schakel Automatisch Organiseren in voor nieuwe opnamen",
"OptionSendRecordingsToAutoOrganizeHelp": "Nieuwe opnamen zullen door de Automatisch Organiseren functionaliteit in uw media bilbiliotheek ge\u00efmporteerd worden.",
"HeaderDefaultPadding": "Standaard 'Padding'",
- "HeaderSubtitles": "Ondertiteling",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Andere Live TV aanbieders kunnen later in de LIVE TV sectie toegevoegd worden.",
"HeaderVideos": "Video's",
"OptionEnableVideoFrameAnalysis": "Frame voor frame video-analyse inschakelen",
"OptionEnableVideoFrameAnalysisHelp": "Extraheer informatie over video die gebruikt kan worden om transcodering zo effici\u00ebnt mogelijk te maken. Dit zal leiden tot langer durende bibliotheek scans .",
"LabelVideoFrameAnalysisLimit": "Beperk frame voor frame analyse voor video's kleiner dan:",
+ "HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder- of met niet herkende classificatiegegevens:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/pl.json b/dashboard-ui/strings/html/pl.json
index 249371c72c..5a93d1d2eb 100644
--- a/dashboard-ui/strings/html/pl.json
+++ b/dashboard-ui/strings/html/pl.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Wyj\u015b\u0107",
"LabelVisitCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standardowy",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Przejrzyj bibliotek\u0119",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Otw\u00f3rz przegl\u0105dark\u0119 biblioteki",
"LabelRestartServer": "Uruchom serwer ponownie",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Wstecz",
"LabelFinish": "Koniec",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Dalej",
"LabelYoureDone": "Sko\u0144czy\u0142e\u015b!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Oficjalne wydanie",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Niestabilne)",
"ThisWizardWillGuideYou": "Asystent pomo\u017ce Ci podczas instalacji. Na pocz\u0105tku, wybierz tw\u00f3j preferowany j\u0119zyk.",
"TellUsAboutYourself": "Opowiedz nam o sobie",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Twoje imi\u0119:",
"MoreUsersCanBeAddedLater": "Mo\u017cesz doda\u0107 wi\u0119cej u\u017cytkownik\u00f3w p\u00f3\u017aniej przez tablic\u0119 rozdzielcz\u0105.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "W\u0142\u0105cz automatyczne mapowanie port\u00f3w",
"LabelEnableAutomaticPortMappingHelp": "UPnP umo\u017cliwia automatyczne ustawienie routera dla \u0142atwego zdalnego dost\u0119pu. Ta opcja mo\u017ce nie dzia\u0142a\u0107 na niekt\u00f3rych modelach router\u00f3w.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Anuluj",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Ustaw swoj\u0105 bibliotek\u0119",
"ButtonAddMediaFolder": "Dodaj folder",
"LabelFolderType": "Typ folderu:",
"ReferToMediaLibraryWiki": "Odnie\u015b si\u0119 do wiki biblioteki.",
"LabelCountry": "Kraj:",
"LabelLanguage": "J\u0119zyk:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferowany j\u0119zyk metadanych:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferencje",
"TabPassword": "Has\u0142o",
"TabLibraryAccess": "Dost\u0119p do biblioteki",
- "TabAccess": "Access",
"TabImage": "Obraz",
"TabProfile": "Profil",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Wy\u015bwietl brakuj\u0105ce odcinki w sezonach",
"LabelUnairedMissingEpisodesWithinSeasons": "Wy\u015bwietl nie wydanie odcinki w sezonach",
"HeaderVideoPlaybackSettings": "Ustawienia odtwarzania wideo",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Preferencje j\u0119zyka audio:",
"LabelSubtitleLanguagePreference": "Preferencje j\u0119zyka napis\u00f3w:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profile",
"TabSecurity": "Zabezpieczenie",
"ButtonAddUser": "Dodaj u\u017cytkownika",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Zapisz",
"ButtonResetPassword": "Zresetuj has\u0142o",
"LabelNewPassword": "Nowe has\u0142o:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maksymalna dozwolona ocena rodzicielska:",
"MaxParentalRatingHelp": "Zawarto\u015b\u0107 z wy\u017csz\u0105 ocen\u0105 b\u0119dzie schowana dla tego u\u017cytkownika.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Usu\u0144 obrazek",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Wy\u015blij",
"HeaderUploadNewImage": "Wy\u015blij nowy obrazek",
"LabelDropImageHere": "Wstaw obraz tutaj",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nic tutaj nie ma.",
"MessagePleaseEnsureInternetMetadata": "Upewnij si\u0119 \u017ce pobieranie metadanych z internetu jest w\u0142\u0105czone.",
"TabSuggested": "Sugerowane",
- "TabSuggestions": "Suggestions",
"TabLatest": "Ostatnie",
"TabUpcoming": "Upcoming",
"TabShows": "Seriale",
@@ -217,6 +110,7 @@
"OptionAscending": "Rosn\u0105co",
"OptionDescending": "Malej\u0105co",
"OptionRuntime": "D\u0142ugo\u015b\u0107 filmu",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Ilo\u015b\u0107 odtworze\u0144",
"OptionDatePlayed": "Data odtworzenia",
"OptionDateAdded": "Data dodania",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nazwa utworu",
"OptionCommunityRating": "Ocena spo\u0142eczno\u015bci",
"OptionNameSort": "Nazwa",
- "OptionFolderSort": "Folders",
"OptionBudget": "Bud\u017cet",
"OptionRevenue": "Doch\u00f3d",
"OptionPoster": "Plakat",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Ocena krytyk\u00f3w",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Zaplanowane zadania",
"TabMyPlugins": "Moje wtyczki",
"TabCatalog": "Katalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatyczne aktualizacje",
"HeaderNowPlaying": "Teraz odtwarzany",
"HeaderLatestAlbums": "Ostatnie albumy",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Ostatnio grane",
"HeaderFrequentlyPlayed": "Cz\u0119sto grane",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Type widea",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "W\u0142a\u015bciwo\u015bci",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Napisy",
"OptionHasTrailer": "Zwiastun",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Filmy",
"TabStudios": "Studia",
"TabTrailers": "Zwiastuny",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Ostatnie filmy",
"HeaderLatestTrailers": "Ostatnie zwiastuny",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Pi\u0105tek",
"OptionSaturday": "Sobota",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Brakuje Id IMDb",
"OptionMissingTvdbId": "Brakuje Id TheTVDB",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "Og\u00f3lne",
"TitleSupport": "Wesprzyj",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "A propos",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Szukaj w Bazy Wiedzy",
"VisitTheCommunity": "Odwied\u017a spo\u0142eczno\u015b\u0107",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Imi\u0119:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Pozw\u00f3l temu u\u017cytkownikowi zarz\u0105dza\u0107 serwerem",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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": "Wersja {0}",
"TabPaths": "\u015acie\u017cki",
"TabServer": "Serwer",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Oficjalne wydanie",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Niestabilne)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Odcinki",
"OptionOtherVideos": "Inne widea",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/pt-BR.json b/dashboard-ui/strings/html/pt-BR.json
index 6f636a2095..7a479bbe96 100644
--- a/dashboard-ui/strings/html/pt-BR.json
+++ b/dashboard-ui/strings/html/pt-BR.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Sair",
"LabelVisitCommunity": "Visitar a Comunidade",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Padr\u00e3o",
- "LabelApiDocumentation": "Documenta\u00e7\u00e3o da Api",
- "LabelDeveloperResources": "Recursos do Desenvolvedor",
"LabelBrowseLibrary": "Explorar Biblioteca",
- "LabelConfigureServer": "Configurar o Emby",
"LabelOpenLibraryViewer": "Abrir Visualizador da Biblioteca",
"LabelRestartServer": "Reiniciar Servidor",
"LabelShowLogWindow": "Exibir Janela de Log",
"LabelPrevious": "Anterior",
"LabelFinish": "Finalizar",
- "FolderTypeMixed": "Conte\u00fado misto",
"LabelNext": "Pr\u00f3ximo",
"LabelYoureDone": "Pronto!",
- "ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
- "ButtonMoreItems": "Mais",
- "WelcomeToProject": "Bem vindo ao Emby!",
+ "OptionRelease": "Lan\u00e7amento Oficial",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Inst\u00e1vel)",
"ThisWizardWillGuideYou": "Este assistente ir\u00e1 gui\u00e1-lo pelo processo de instala\u00e7\u00e3o. Para come\u00e7ar, por favor selecione seu idioma preferido.",
"TellUsAboutYourself": "Conte-nos sobre voc\u00ea",
- "ButtonQuickStartGuide": "Guia r\u00e1pido",
"LabelYourFirstName": "Seu primeiro nome:",
"MoreUsersCanBeAddedLater": "Mais usu\u00e1rios poder\u00e3o ser adicionados depois dentro do Painel.",
"UserProfilesIntro": "Emby inclui suporte nativo para perfis de usu\u00e1rios, permitindo que cada usu\u00e1rio tenha seus pr\u00f3prios ajustes de visualiza\u00e7\u00e3o, estado da reprodu\u00e7\u00e3o e controles parentais.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extrair imagens de cap\u00edtulos permitir\u00e1 aos clientes exibir menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, ocasionar uso intensivo de cpu e pode exigir bastante espa\u00e7o em disco. Ele ser\u00e1 executado como uma tarefa noturna, embora isto possa ser configur\u00e1vel na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de pico de uso.",
"LabelEnableAutomaticPortMapping": "Ativar mapeamento de porta autom\u00e1tico",
"LabelEnableAutomaticPortMappingHelp": "UPnP permite uma configura\u00e7\u00e3o automatizada do roteador para acesso remoto f\u00e1cil. Isto pode n\u00e3o funcionar em alguns modelos de roteadores.",
- "HeaderTermsOfService": "Termos de Servi\u00e7o do Emby",
- "MessagePleaseAcceptTermsOfService": "Por favor, aceite os termos de servi\u00e7o e pol\u00edtica de privacidade antes de continuar.",
- "OptionIAcceptTermsOfService": "Aceito os termos de servi\u00e7o",
- "ButtonPrivacyPolicy": "Pol\u00edtica de privacidade",
- "ButtonTermsOfService": "Termos de Servi\u00e7o",
- "HeaderDeveloperOptions": "Op\u00e7\u00f5es de Desenvolvedor",
- "OptionEnableWebClientResponseCache": "Ativar o cache de resposta do client web",
- "OptionDisableForDevelopmentHelp": "Configure esta op\u00e7\u00e3o de acordo ao prop\u00f3sito de desenvolvimento do cliente web",
- "OptionEnableWebClientResourceMinification": "Ativar a minimiza\u00e7\u00e3o de recursos do cliente web",
- "LabelDashboardSourcePath": "Caminho fonte do cliente web:",
- "LabelDashboardSourcePathHelp": "Se executar o servidor a partir do c\u00f3digo, especifique o caminho para a pasta da interface do painel. Todos os arquivos do cliente web ser\u00e3o usados nesta localiza\u00e7\u00e3o.",
- "ButtonConvertMedia": "Converter m\u00eddia",
- "ButtonOrganize": "Organizar",
- "LinkedToEmbyConnect": "Associado ao Emby Connect",
- "HeaderSupporterBenefits": "Benef\u00edcios do Colaborador",
- "HeaderAddUser": "Adicionar Usu\u00e1rio",
- "LabelAddConnectSupporterHelp": "Para adicionar um usu\u00e1rio que n\u00e3o esteja listado, voc\u00ea precisar\u00e1 associar sua conta ao Emby Connect na sua p\u00e1gina de perfil.",
- "LabelPinCode": "C\u00f3digo Pin:",
- "OptionHideWatchedContentFromLatestMedia": "Ocultar conte\u00fado j\u00e1 assistido das m\u00eddias recentes",
- "HeaderSync": "Sincroniza\u00e7\u00e3o",
"ButtonOk": "Ok",
"ButtonCancel": "Cancelar",
- "ButtonExit": "Sair",
- "ButtonNew": "Novo",
- "HeaderTV": "TV",
- "HeaderAudio": "\u00c1udio",
- "HeaderVideo": "V\u00eddeo",
- "HeaderPaths": "Caminhos",
- "CategorySync": "Sincroniza\u00e7\u00e3o",
- "TabPlaylist": "Lista de Reprodu\u00e7\u00e3o",
- "HeaderEasyPinCode": "C\u00f3digo de Pin Facil",
- "HeaderGrownupsOnly": "Adultos Apenas!",
- "DividerOr": "-- ou --",
- "HeaderInstalledServices": "Servi\u00e7os Instalados",
- "HeaderAvailableServices": "Servi\u00e7os Dispon\u00edveis",
- "MessageNoServicesInstalled": "N\u00e3o existem servi\u00e7os instalados atualmente.",
- "HeaderToAccessPleaseEnterEasyPinCode": "Para acessar, por favor digite seu c\u00f3digo pin f\u00e1cil",
- "KidsModeAdultInstruction": "Clique no \u00edcone de bloqueio no canto inferior direito para configurar ou deixar o modo infantil. Seu c\u00f3digo pin ser\u00e1 necess\u00e1rio.",
- "ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
- "HeaderAdultsReadHere": "Adultos Leiam Aqui!",
- "RegisterWithPayPal": "Registrar com PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o requer uma Ades\u00e3o de Colaborador do Emby ativa.",
- "HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes",
- "LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
- "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. M\u00eddias convertidas criadas durante o processo de sincroniza\u00e7\u00e3o ser\u00e3o aqui armazenadas.",
- "LabelCustomCertificatePath": "Caminho do certificado personalizado:",
- "LabelCustomCertificatePathHelp": "Forne\u00e7a seu pr\u00f3prio arquivo .pfx do certificado ssl. Se omitido, o servidor criar\u00e1 um certificado auto-assinado.",
- "TitleNotifications": "Notifica\u00e7\u00f5es",
- "ButtonDonateWithPayPal": "Doe atrav\u00e9s do PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detectar arquivos compactados como m\u00eddia",
- "OptionDetectArchiveFilesAsMediaHelp": "Se ativado, arquivos com extens\u00f5es .rar e .zip ser\u00e3o detectados como arquivos de m\u00eddia.",
- "LabelEnterConnectUserName": "Nome de usu\u00e1rio ou e-mail:",
- "LabelEnterConnectUserNameHelp": "Este \u00e9 o nome do usu\u00e1rio ou email da sua conta online do Emby.",
- "LabelEnableEnhancedMovies": "Ativar exibi\u00e7\u00f5es de filme avan\u00e7adas",
- "LabelEnableEnhancedMoviesHelp": "Quando ativado, os filmes ser\u00e3o exibidos como pastas para incluir trailers, extras, elenco & equipe e outros conte\u00fados relacionados.",
- "HeaderSyncJobInfo": "Tarefa de Sincroniza\u00e7\u00e3o",
- "OptionReleaseDate": "Data de Lan\u00e7amento",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Falhou",
- "LabelSeries": "S\u00e9rie:",
- "ButtonFullscreen": "Alternar para tela cheia",
- "ButtonAudioTracks": "Faixas de \u00e1udio",
- "ButtonPreviousTrack": "Faixa anterior",
- "ButtonNextTrack": "Faixa seguinte",
- "HeaderEpisodes": "Epis\u00f3dios",
- "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",
- "FolderTypeInherit": "Herdar",
- "LabelContentType": "Tipo de conte\u00fado:",
- "TitleScheduledTasks": "Tarefas Agendadas",
"HeaderSetupLibrary": "Configurar sua biblioteca de m\u00eddias",
"ButtonAddMediaFolder": "Adicionar pasta de m\u00eddias",
"LabelFolderType": "Tipo de pasta:",
"ReferToMediaLibraryWiki": "Consultar wiki da biblioteca de m\u00eddias",
"LabelCountry": "Pa\u00eds:",
"LabelLanguage": "Idioma:",
- "LabelTimeLimitHours": "Limite de tempo (horas):",
- "ButtonJoinTheDevelopmentTeam": "Junte-se ao Time de Desenvolvimento",
"HeaderPreferredMetadataLanguage": "Idioma preferido dos metadados:",
"LabelSaveLocalMetadata": "Salvar artwork e metadados dentro das pastas da m\u00eddia",
"LabelSaveLocalMetadataHelp": "Salvar artwork e metadados diretamente nas pastas da m\u00eddia as deixar\u00e1 em um local f\u00e1cil para edit\u00e1-las.",
@@ -130,37 +47,16 @@
"TabPreferences": "Prefer\u00eancias",
"TabPassword": "Senha",
"TabLibraryAccess": "Acesso \u00e0 Biblioteca",
- "TabAccess": "Acesso",
"TabImage": "Imagem",
"TabProfile": "Perfil",
- "TabMetadata": "Metadados",
- "TabImages": "Imagens",
- "TabNotifications": "Notifica\u00e7\u00f5es",
- "TabCollectionTitles": "T\u00edtulos",
- "HeaderDeviceAccess": "Acesso ao Dispositivo",
- "OptionEnableAccessFromAllDevices": "Ativar o acesso de todos os dispositivos",
- "OptionEnableAccessToAllChannels": "Ativar o acesso a todos os canais",
- "OptionEnableAccessToAllLibraries": "Ativar o acesso a todas as bibliotecas",
- "DeviceAccessHelp": "Isto apenas aplica para dispositivos que podem ser identificados como \u00fanicos e n\u00e3o evitar\u00e3o o acesso do navegador. Filtrar o acesso ao dispositivo do usu\u00e1rio evitar\u00e1 que sejam usados novos dispositivos at\u00e9 que sejam aprovados aqui.",
"LabelDisplayMissingEpisodesWithinSeasons": "Exibir epis\u00f3dios que faltam dentro das temporadas",
"LabelUnairedMissingEpisodesWithinSeasons": "Exibir epis\u00f3dios por estrear dentro das temporadas",
"HeaderVideoPlaybackSettings": "Ajustes da Reprodu\u00e7\u00e3o de V\u00eddeo",
- "HeaderPlaybackSettings": "Ajustes de Reprodu\u00e7\u00e3o",
"LabelAudioLanguagePreference": "Prefer\u00eancia do idioma do \u00e1udio:",
"LabelSubtitleLanguagePreference": "Prefer\u00eancia do idioma da legenda:",
- "OptionDefaultSubtitles": "Padr\u00e3o",
- "OptionOnlyForcedSubtitles": "Apenas legendas for\u00e7adas",
- "OptionAlwaysPlaySubtitles": "Sempre reproduzir legendas",
- "OptionNoSubtitles": "Nenhuma legenda",
- "OptionDefaultSubtitlesHelp": "As legendas que forem iguais ao idioma preferido ser\u00e3o carregadas quando o \u00e1udio estiver em um idioma estrangeiro.",
- "OptionOnlyForcedSubtitlesHelp": "Apenas legendas marcadas como for\u00e7adas ser\u00e3o carregadas.",
- "OptionAlwaysPlaySubtitlesHelp": "As legendas que forem iguais ao idioma preferido ser\u00e3o carregadas independente do idioma do \u00e1udio.",
- "OptionNoSubtitlesHelp": "As legendas n\u00e3o ser\u00e3o carregadas por padr\u00e3o.",
"TabProfiles": "Perfis",
"TabSecurity": "Seguran\u00e7a",
"ButtonAddUser": "Adicionar Usu\u00e1rio",
- "ButtonAddLocalUser": "Adicionar Usu\u00e1rio Local",
- "ButtonInviteUser": "Convidar Usu\u00e1rio",
"ButtonSave": "Salvar",
"ButtonResetPassword": "Redefinir Senha",
"LabelNewPassword": "Nova senha:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Classifica\u00e7\u00e3o parental m\u00e1xima permitida:",
"MaxParentalRatingHelp": "Conte\u00fado com classifica\u00e7\u00e3o maior ser\u00e1 ocultado do usu\u00e1rio.",
"LibraryAccessHelp": "Selecione as pastas de m\u00eddia para compartilhar com este usu\u00e1rio. Administradores poder\u00e3o editar todas as pastas usando o gerenciador de metadados.",
- "ChannelAccessHelp": "Selecione os canais a compartilhar com este usu\u00e1rio. Administradores poder\u00e3o editar todos os canais usando o gerenciador de metadados.",
"ButtonDeleteImage": "Excluir Imagem",
- "LabelSelectUsers": "Selecionar usu\u00e1rios:",
"ButtonUpload": "Carregar",
"HeaderUploadNewImage": "Carregar Nova Imagem",
"LabelDropImageHere": "Soltar imagem aqui",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nada aqui.",
"MessagePleaseEnsureInternetMetadata": "Por favor, certifique-se que o download de metadados da internet est\u00e1 habilitado.",
"TabSuggested": "Sugeridos",
- "TabSuggestions": "Sugest\u00f5es",
"TabLatest": "Recentes",
"TabUpcoming": "Por Estrear",
"TabShows": "S\u00e9ries",
@@ -217,6 +110,7 @@
"OptionAscending": "Crescente",
"OptionDescending": "Decrescente",
"OptionRuntime": "Dura\u00e7\u00e3o",
+ "OptionReleaseDate": "Data de Lan\u00e7amento",
"OptionPlayCount": "N\u00famero Reprodu\u00e7\u00f5es",
"OptionDatePlayed": "Data da Reprodu\u00e7\u00e3o",
"OptionDateAdded": "Data da Adi\u00e7\u00e3o",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nome da Faixa",
"OptionCommunityRating": "Avalia\u00e7\u00e3o da Comunidade",
"OptionNameSort": "Nome",
- "OptionFolderSort": "Pastas",
"OptionBudget": "Or\u00e7amento",
"OptionRevenue": "Faturamento",
"OptionPoster": "Capa",
- "OptionPosterCard": "Cart\u00e3o da capa",
- "OptionBackdrop": "Imagem de Fundo",
"OptionTimeline": "Linha do tempo",
- "OptionThumb": "\u00cdcone",
- "OptionThumbCard": "Cart\u00e3o do \u00edcone",
- "OptionBanner": "Banner",
"OptionCriticRating": "Avalia\u00e7\u00e3o da Cr\u00edtica",
"OptionVideoBitrate": "Taxa do V\u00eddeo",
"OptionResumable": "Por retomar",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Tarefas Agendadas",
"TabMyPlugins": "Meus Plugins",
"TabCatalog": "Cat\u00e1logo",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Atualiza\u00e7\u00f5es Autom\u00e1ticas",
"HeaderNowPlaying": "Reproduzindo Agora",
"HeaderLatestAlbums": "\u00c1lbuns Recentes",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Reprodu\u00e7\u00f5es Recentes",
"HeaderFrequentlyPlayed": "Reprodu\u00e7\u00f5es Frequentes",
"DevBuildWarning": "Vers\u00f5es Dev s\u00e3o as mais atuais. Lan\u00e7adas frequentemente, estas vers\u00f5es n\u00e3o foram testadas. A aplica\u00e7\u00e3o pode falhar e v\u00e1rios recursos podem n\u00e3o funcionar.",
+ "OptionThumb": "\u00cdcone",
+ "OptionBanner": "Banner",
"LabelVideoType": "Tipo de V\u00eddeo:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Recursos:",
- "LabelService": "Servi\u00e7o:",
- "LabelStatus": "Status:",
- "LabelVersion": "Vers\u00e3o:",
- "LabelLastResult": "\u00daltimo resultado:",
"OptionHasSubtitles": "Legendas",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "M\u00fasica-Tema",
@@ -268,8 +153,6 @@
"TabMovies": "Filmes",
"TabStudios": "Est\u00fadios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artistas:",
- "LabelArtistsHelp": "Separar m\u00faltiplos usando ;",
"HeaderLatestMovies": "Filmes Recentes",
"HeaderLatestTrailers": "Trailers Recentes",
"OptionHasSpecialFeatures": "Recursos Especiais",
@@ -290,32 +173,24 @@
"OptionFriday": "Sexta-feira",
"OptionSaturday": "S\u00e1bado",
"HeaderManagement": "Gerenciamento",
- "LabelManagement": "Gerenciamento:",
"OptionMissingImdbId": "Faltando Id IMDb",
"OptionMissingTvdbId": "Faltando Id TheTVDB",
"OptionMissingOverview": "Faltando Sinopse",
"OptionFileMetadataYearMismatch": "Anos do Arquivo e Metadados n\u00e3o conferem",
"TabGeneral": "Geral",
"TitleSupport": "Suporte",
- "LabelSeasonNumber": "N\u00famero da temporada",
"TabLog": "Log",
- "LabelEpisodeNumber": "N\u00famero do epis\u00f3dio",
"TabAbout": "Sobre",
"TabSupporterKey": "Chave de Colaborador",
"TabBecomeSupporter": "Torne-se um Colaborador",
- "ProjectHasCommunity": "Emby tem uma comunidade crescente de usu\u00e1rios e contribuidores.",
"CheckoutKnowledgeBase": "Visite nossa base de conhecimento para obter ajuda para extrair o m\u00e1ximo do Emby.",
"SearchKnowledgeBase": "Pesquisar na Base de Conhecimento",
"VisitTheCommunity": "Visitar a Comunidade",
- "VisitProjectWebsite": "Visite o Web Site do Emby",
- "VisitProjectWebsiteLong": "Visite o web site do Emby para obter as \u00faltimas novidades e se manter informado com o blog dos desenvolvedores.",
"OptionHideUser": "Ocultar este usu\u00e1rio das telas de login",
- "OptionHideUserFromLoginHelp": "\u00datil para contas de administrador privadas ou ocultas. O usu\u00e1rio necessitar\u00e1 entrar manualmente, digitando seu nome de usu\u00e1rio e senha.",
"OptionDisableUser": "Desativar este usu\u00e1rio",
"OptionDisableUserHelp": "Se estiver desativado o servidor n\u00e3o permitir\u00e1 nenhuma conex\u00e3o deste usu\u00e1rio. Conex\u00f5es existentes ser\u00e3o abruptamente terminadas.",
"HeaderAdvancedControl": "Controle Avan\u00e7ado",
"LabelName": "Nome:",
- "ButtonHelp": "Ajuda",
"OptionAllowUserToManageServer": "Permitir a este usu\u00e1rio administrar o servidor",
"HeaderFeatureAccess": "Acesso aos Recursos",
"OptionAllowMediaPlayback": "Permitir reprodu\u00e7\u00e3o de m\u00eddia",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Permitir exclus\u00e3o de m\u00eddia",
"OptionAllowManageLiveTv": "Permitir gerenciamento de grava\u00e7\u00f5es da TV ao Vivo",
"OptionAllowRemoteControlOthers": "Permitir controle remoto de outros usu\u00e1rios",
- "OptionAllowRemoteSharedDevices": "Permitir controle remoto de dispositivos compartilhados",
- "OptionAllowRemoteSharedDevicesHelp": "Dispositivos dlna s\u00e3o considerados compartilhados at\u00e9 que um usu\u00e1rio comece a control\u00e1-lo.",
- "OptionAllowLinkSharing": "Permitir compartilhamento com m\u00eddia social",
- "OptionAllowLinkSharingHelp": "Apenas p\u00e1ginas web que contenham informa\u00e7\u00f5es de m\u00eddia ser\u00e3o compartilhadas. Arquivos de m\u00eddia nunca ser\u00e3o compartilhados publicamente. Os compartilhamentos ter\u00e3o um limite de tempo e expirar\u00e3o com base nas defini\u00e7\u00f5es de compartilhamento do seu servidor.",
- "HeaderSharing": "Compartilhar",
- "HeaderRemoteControl": "Controle Remoto",
"OptionMissingTmdbId": "Faltando Id Tmdb",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Selecionar",
"ButtonGroupVersions": "Agrupar Vers\u00f5es",
"PismoMessage": "Utilizando Pismo File Mount atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o",
- "TangibleSoftwareMessage": "Utilizando conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o.",
- "HeaderCredits": "Cr\u00e9ditos",
"PleaseSupportOtherProduces": "Por favor, apoie outros produtos gr\u00e1tis que utilizamos:",
"VersionNumber": "Vers\u00e3o {0}",
"TabPaths": "Caminhos",
"TabServer": "Servidor",
"TabTranscoding": "Transcodifica\u00e7\u00e3o",
"TitleAdvanced": "Avan\u00e7ado",
- "OptionRelease": "Lan\u00e7amento Oficial",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Inst\u00e1vel)",
"LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es",
"LabelAllowServerAutoRestartHelp": "O servidor s\u00f3 reiniciar\u00e1 durante os per\u00edodos ociosos, quando nenhum usu\u00e1rio estiver ativo.",
"LabelEnableDebugLogging": "Ativar log de depura\u00e7\u00e3o",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Defina caminhos personalizados. Deixe os campos em branco para usar o padr\u00e3o.",
"LabelCachePath": "Caminho do cache:",
"LabelCachePathHelp": "Defina uma localiza\u00e7\u00e3o para os arquivos de cache como, por exemplo, imagens. Por favor, deixe em branco para usar o padr\u00e3o do servidor.",
- "LabelRecordingPath": "Caminho da grava\u00e7\u00e3o:",
- "LabelRecordingPathHelp": "Defina uma localiza\u00e7\u00e3o personalizada para salvar as grava\u00e7\u00f5es. Deixe em branco para usar o padr\u00e3o do servidor.",
"LabelImagesByNamePath": "Caminho do Images by name:",
"LabelImagesByNamePathHelp": "Defina uma localiza\u00e7\u00e3o para imagens baixadas para ator, g\u00eanero e est\u00fadio.",
"LabelMetadataPath": "Caminho dos Metadados:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Epis\u00f3dios",
"OptionOtherVideos": "Outros V\u00eddeos",
"TitleMetadata": "Metadados",
- "LabelAutomaticUpdates": "Ativar atualiza\u00e7\u00f5es autom\u00e1ticas",
"LabelAutomaticUpdatesTmdb": "Ativar atualiza\u00e7\u00f5es autom\u00e1ticas de The MovieDB.org",
"LabelAutomaticUpdatesTvdb": "Ativar atualiza\u00e7\u00f5es autom\u00e1ticas de TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "Se ativado, novas imagens ser\u00e3o automaticamente baixadas ao serem adicionadas ao fanart.tv. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas. Isto far\u00e1 com que a varredura da biblioteca leve mais tempo e haja mais atividade no disco.",
"LabelAutomaticUpdatesTmdbHelp": "Se ativado, novas imagens ser\u00e3o automaticamente baixadas ao serem adicionadas ao TheMovieDB.org. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas. Isto far\u00e1 com que a varredura da biblioteca leve mais tempo e haja mais atividade no disco.",
"LabelAutomaticUpdatesTvdbHelp": "Se ativado, novas imagens ser\u00e3o automaticamente baixadas ao serem adicionadas ao TheTVDB.com. As Imagens atuais n\u00e3o ser\u00e3o substitu\u00eddas. Isto far\u00e1 com que a varredura da biblioteca leve mais tempo e haja mais atividade no disco.",
- "LabelFanartApiKey": "Chave de api pessoal:",
- "LabelFanartApiKeyHelp": "Solicita\u00e7\u00f5es para fanart sem uma chave de API pessoal retornar\u00e3o resultados que foram aprovados h\u00e1 mais de 7 dias atr\u00e1s. Com uma chave de API pessoal isso diminui para 48 horas e se voc\u00ea for um membro VIP da fanart, isso diminuir\u00e1 para 10 minutos.",
"ExtractChapterImagesHelp": "Extrair imagens de cap\u00edtulos permitir\u00e1 aos clientes exibir menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, demandar uso intensivo de cpu e pode exigir bastante espa\u00e7o em disco. Ele ser\u00e1 executado quando os v\u00eddeos forem descobertos e tamb\u00e9m como uma tarefa noturna. O agendamento pode ser configurado na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de pico de uso.",
"LabelMetadataDownloadLanguage": "Idioma preferido para download:",
"ButtonAutoScroll": "Auto-rolagem",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Senhas n\u00e3o s\u00e3o exigidas quando iniciar a sess\u00e3o no host local.",
"TabGuide": "Guia",
"TabChannels": "Canais",
- "TabCollections": "Cole\u00e7\u00f5es",
"HeaderChannels": "Canais",
"TabRecordings": "Grava\u00e7\u00f5es",
"TabScheduled": "Agendada",
"TabSeries": "S\u00e9ries",
- "TabFavorites": "Favoritos",
- "TabMyLibrary": "Minha Biblioteca",
"ButtonCancelRecording": "Cancelar Grava\u00e7\u00e3o",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Minutos de Pre-padding:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Ajustes",
"ButtonRefreshGuideData": "Atualizar Dados do Guia",
- "ButtonRefresh": "Atualizar",
- "ButtonAdvancedRefresh": "Atualiza\u00e7\u00e3o Avan\u00e7ada",
"OptionPriority": "Prioridade",
"OptionRecordOnAllChannels": "Gravar em todos os canais",
"OptionRecordAnytime": "Gravar a qualquer hora",
"OptionRecordOnlyNewEpisodes": "Gravar apenas novos epis\u00f3dios",
- "HeaderRepeatingOptions": "Op\u00e7\u00f5es de Repeti\u00e7\u00e3o",
"HeaderDays": "Dias",
"HeaderActiveRecordings": "Grava\u00e7\u00f5es Ativas",
"HeaderLatestRecordings": "Grava\u00e7\u00f5es Recentes",
@@ -431,17 +284,16 @@
"ButtonEdit": "Editar",
"ButtonRecord": "Gravar",
"ButtonDelete": "Excluir",
- "ButtonRemove": "Remover",
"OptionRecordSeries": "Gravar S\u00e9ries",
"HeaderDetails": "Detalhes",
+ "OptionFolderSort": "Pastas",
+ "OptionBackdrop": "Imagem de Fundo",
"TitleLiveTV": "TV ao Vivo",
"LabelNumberOfGuideDays": "N\u00famero de dias de dados do guia para download:",
"LabelNumberOfGuideDaysHelp": "Fazer download de mais dias de dados do guia permite agendar com mais anteced\u00eancia e ver mais itens, mas tamb\u00e9m levar\u00e1 mais tempo para o download. Auto escolher\u00e1 com base no n\u00famero de canais.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Servi\u00e7os",
"LiveTvPluginRequired": "Um provedor de servi\u00e7o de TV ao Vivo \u00e9 necess\u00e1rio para continuar.",
"LiveTvPluginRequiredHelp": "Por favor, instale um de nossos plugins dispon\u00edveis como, por exemplo, Next Pvr ou ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Personalizar para o tipo de m\u00eddia:",
"OptionDownloadThumbImage": "\u00cdcone",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Capa",
"HeaderFetchImages": "Buscar Imagens:",
"HeaderImageSettings": "Ajustes da Imagem",
- "TabOther": "Outros",
"LabelMaxBackdropsPerItem": "N\u00famero m\u00e1ximo de imagens de fundo por item:",
"LabelMaxScreenshotsPerItem": "N\u00famero m\u00e1ximo de imagens de tela por item:",
"LabelMinBackdropDownloadWidth": "Tamanho m\u00ednimo da imagem de fundo para download:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Elenco & Equipe",
"HeaderAdditionalParts": "Partes Adicionais",
"ButtonSplitVersionsApart": "Separar Vers\u00f5es",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Faltando",
"LabelOffline": "Desconectado",
"PathSubstitutionHelp": "Substitui\u00e7\u00f5es de caminho s\u00e3o usadas para mapear um caminho no servidor que possa ser acessado pelos clientes. Ao permitir o acesso dos clientes \u00e0 m\u00eddia no servidor, eles podem reproduzir diretamente atrav\u00e9s da rede e evitar o uso de recursos do servidor para fazer stream ou transcodifica\u00e7\u00e3o.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Max qualidade",
"OptionEnableDebugTranscodingLogging": "Ativar log de depura\u00e7\u00e3o de transcodifica\u00e7\u00e3o",
"OptionEnableDebugTranscodingLoggingHelp": "Isto criar\u00e1 arquivos de log muito grandes e s\u00f3 \u00e9 recomendado para identificar problemas.",
+ "ButtonNew": "Novo",
+ "TabMetadata": "Metadados",
+ "TabImages": "Imagens",
+ "TabCollectionTitles": "T\u00edtulos",
+ "ButtonSearch": "Busca",
+ "ButtonRemove": "Remover",
"EditCollectionItemsHelp": "Adicione ou remova qualquer filme, s\u00e9rie, \u00e1lbum, livro ou jogo que desejar agrupar dentro desta cole\u00e7\u00e3o.",
"HeaderAddTitles": "Adicionar T\u00edtulos",
"LabelEnableDlnaPlayTo": "Ativar Reproduzir Em usando DLNA",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Caminhos do Sistema",
"LinkCommunity": "Comunidade",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Documenta\u00e7\u00e3o da Api",
"LabelFriendlyServerName": "Nome amig\u00e1vel do servidor:",
"LabelFriendlyServerNameHelp": "Este nome ser\u00e1 usado para identificar este servidor. Se deixado em branco, ser\u00e1 usado o nome do computador.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "A tradu\u00e7\u00e3o do Emby \u00e9 um projeto cont\u00ednuo.",
"LabelReadHowYouCanContribute": "Aprenda como voc\u00ea pode contribuir.",
"HeaderNewCollection": "Nova Cole\u00e7\u00e3o",
- "ButtonSubmit": "Enviar",
"ButtonCreate": "Criar",
- "LabelCustomCss": "Css personalizado:",
- "LabelCustomCssHelp": "Aplique o seu css personalizado para a interface web",
- "LabelLocalHttpServerPortNumber": "N\u00famero da porta local de http:",
- "LabelLocalHttpServerPortNumberHelp": "O n\u00famero da porta tcp que o servidor http do Emby deveria se conectar.",
- "LabelPublicHttpPort": "N\u00famero da porta p\u00fablica de http:",
- "LabelPublicHttpPortHelp": "O n\u00famero da porta p\u00fablica que dever\u00e1 ser mapeada para a porta local de http.",
- "LabelPublicHttpsPort": "N\u00famero da porta p\u00fablica de https:",
- "LabelPublicHttpsPortHelp": "O n\u00famero da porta p\u00fablica que dever\u00e1 ser mapeada para a porta local de https.",
- "LabelEnableHttps": "Reportar https como um endere\u00e7o externo",
- "LabelEnableHttpsHelp": "Se ativado, o servidor ir\u00e1 reportar uma url https para os clientes como um endere\u00e7o externo.",
- "LabelHttpsPort": "N\u00famero da porta local de https:",
- "LabelHttpsPortHelp": "O n\u00famero da porta tcp que o servidor https do Emby deveria se conectar.",
"LabelWebSocketPortNumber": "N\u00famero da porta do web socket:",
- "LabelEnableAutomaticPortMap": "Ativar mapeamento autom\u00e1tico de portas",
- "LabelEnableAutomaticPortMapHelp": "Tentativa de mapear automaticamente a porta p\u00fablica para a porta local atrav\u00e9s de UPnP. Isto poder\u00e1 n\u00e3o funcionar em alguns modelos de roteadores.",
"LabelExternalDDNS": "Endere\u00e7o WAN externo:",
"LabelExternalDDNSHelp": "Se possuir um DNS din\u00e2mico digite aqui. As apps do Emby o usar\u00e3o para conectar-se remotamente. Deixe em branco para detec\u00e7\u00e3o autom\u00e1tica.",
"TabResume": "Retomar",
@@ -591,8 +433,12 @@
"HeaderProgram": "Programa",
"HeaderClients": "Clientes",
"LabelCompleted": "Conclu\u00eddo",
+ "LabelFailed": "Falhou",
"LabelSkipped": "Ignorada",
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o do Epis\u00f3dio",
+ "LabelSeries": "S\u00e9rie:",
+ "LabelSeasonNumber": "N\u00famero da temporada",
+ "LabelEpisodeNumber": "N\u00famero do epis\u00f3dio",
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
"HeaderSupportTheTeam": "Colabore com o Time do Emby",
@@ -627,16 +473,13 @@
"OptionMove": "Mover",
"LabelTransferMethodHelp": "Copiar ou mover arquivos da pasta de monitora\u00e7\u00e3o",
"HeaderLatestNews": "Not\u00edcias Recentes",
- "HeaderHelpImproveProject": "Ajude a Melhorar o Emby",
"HeaderRunningTasks": "Tarefas em Execu\u00e7\u00e3o",
"HeaderActiveDevices": "Dispositivos Ativos",
"HeaderPendingInstallations": "Instala\u00e7\u00f5es Pendentes",
- "HeaderServerInformation": "Informa\u00e7\u00e3o do Servidor",
"ButtonRestartNow": "Reiniciar Agora",
"ButtonRestart": "Reiniciar",
"ButtonShutdown": "Desligar",
"ButtonUpdateNow": "Atualizar Agora",
- "TabHosting": "Hospedagem",
"PleaseUpdateManually": "Por favor, desligue o servidor e atualize-o manualmente.",
"NewServerVersionAvailable": "Uma nova vers\u00e3o do Emby est\u00e1 dispon\u00edvel!",
"ServerUpToDate": "O Servidor Emby est\u00e1 atualizado",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determina a dura\u00e7\u00e3o em segundos entre as mensagens de explora\u00e7\u00e3o enviadas pelo servidor.",
"LabelDefaultUser": "Usu\u00e1rio padr\u00e3o:",
"LabelDefaultUserHelp": "Determina qual usu\u00e1rio ser\u00e1 exibido nos dispositivos conectados. Isto pode ser ignorado para cada dispositivo usando perfis.",
+ "HeaderPlaybackSettings": "Ajustes de Reprodu\u00e7\u00e3o",
"TitleDlna": "DLNA",
- "TitleChannels": "Canais",
"HeaderServerSettings": "Ajustes do Servidor",
"LabelWeatherDisplayLocation": "Local da exibi\u00e7\u00e3o do tempo:",
"LabelWeatherDisplayLocationHelp": "CEP dos EUA \/ Cidade, Estado, Pa\u00eds \/ Cidade, Pa\u00eds",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Quando desativados, os clientes podem mostrar a tela de login com uma sele\u00e7\u00e3o visual de usu\u00e1rios.",
"OptionOtherApps": "Outras apps",
"OptionMobileApps": "Apps m\u00f3veis",
+ "TabNotifications": "Notifica\u00e7\u00f5es",
"HeaderNotificationList": "Clique em uma notifica\u00e7\u00e3o para configurar suas op\u00e7\u00f5es de envio.",
+ "LabelNotificationEnabled": "Ativar esta notifica\u00e7\u00e3o",
+ "NotificationOptionVideoPlayback": "Reprodu\u00e7\u00e3o de v\u00eddeo iniciada",
+ "NotificationOptionAudioPlayback": "Reprodu\u00e7\u00e3o de \u00e1udio iniciada",
+ "NotificationOptionGamePlayback": "Reprodu\u00e7\u00e3o de jogo iniciada",
+ "NotificationOptionNewLibraryContent": "Novo conte\u00fado adicionado",
+ "NotificationOptionServerRestartRequired": "Necessidade de reiniciar servidor",
+ "LabelMonitorUsers": "Monitorar atividade de:",
+ "LabelSendNotificationToUsers": "Enviar notifica\u00e7\u00e3o para:",
+ "LabelUseNotificationServices": "Usar os seguintes servi\u00e7os:",
"NotificationOptionApplicationUpdateAvailable": "Atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o disponivel",
"NotificationOptionApplicationUpdateInstalled": "Atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o instalada",
"NotificationOptionPluginUpdateInstalled": "Atualiza\u00e7\u00e3o do plugin instalada",
"NotificationOptionPluginInstalled": "Plugin instalado",
"NotificationOptionPluginUninstalled": "Plugin desinstalado",
- "NotificationOptionVideoPlayback": "Reprodu\u00e7\u00e3o de v\u00eddeo iniciada",
- "NotificationOptionAudioPlayback": "Reprodu\u00e7\u00e3o de \u00e1udio iniciada",
- "NotificationOptionGamePlayback": "Reprodu\u00e7\u00e3o de jogo iniciada",
- "NotificationOptionVideoPlaybackStopped": "Reprodu\u00e7\u00e3o de v\u00eddeo parada",
- "NotificationOptionAudioPlaybackStopped": "Reprodu\u00e7\u00e3o de \u00e1udio parada",
- "NotificationOptionGamePlaybackStopped": "Reprodu\u00e7\u00e3o de jogo parada",
"NotificationOptionTaskFailed": "Falha na tarefa agendada",
"NotificationOptionInstallationFailed": "Falha na instala\u00e7\u00e3o",
- "NotificationOptionNewLibraryContent": "Novo conte\u00fado adicionado",
- "NotificationOptionNewLibraryContentMultiple": "Novo conte\u00fado adicionado (m\u00faltiplo)",
- "NotificationOptionCameraImageUploaded": "Imagem da c\u00e2mera carregada",
- "NotificationOptionUserLockedOut": "Usu\u00e1rio bloqueado",
- "HeaderSendNotificationHelp": "As notifica\u00e7\u00f5es s\u00e3o entregues na caixa de entrada do Emby. Op\u00e7\u00f5es adicionais podem ser instaladas na guia Servi\u00e7os.",
- "NotificationOptionServerRestartRequired": "Necessidade de reiniciar servidor",
- "LabelNotificationEnabled": "Ativar esta notifica\u00e7\u00e3o",
- "LabelMonitorUsers": "Monitorar atividade de:",
- "LabelSendNotificationToUsers": "Enviar notifica\u00e7\u00e3o para:",
- "LabelUseNotificationServices": "Usar os seguintes servi\u00e7os:",
"CategoryUser": "Usu\u00e1rio",
"CategorySystem": "Sistema",
- "CategoryApplication": "Aplica\u00e7\u00e3o",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "T\u00edtulo da mensagem:",
"LabelAvailableTokens": "Tokens dispon\u00edveis:",
"AdditionalNotificationServices": "Explore o cat\u00e1logo do plugin para instalar servi\u00e7os adicionais de notifica\u00e7\u00e3o.",
+ "LabelSelectUsers": "Selecionar usu\u00e1rios:",
"OptionAllUsers": "Todos os usu\u00e1rios",
"OptionAdminUsers": "Administradores",
"OptionCustomUsers": "Personalizado",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Direita",
"ButtonBack": "Voltar",
"ButtonInfo": "Info",
- "ButtonOsd": "Exibi\u00e7\u00e3o na tela",
"ButtonPageUp": "Subir P\u00e1gina",
"ButtonPageDown": "Descer P\u00e1gina",
"PageAbbreviation": "PG",
"ButtonHome": "In\u00edcio",
- "ButtonSearch": "Busca",
"ButtonSettings": "Ajustes",
"ButtonTakeScreenshot": "Capturar Tela",
"ButtonLetterUp": "Letra Acima",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Reproduzindo Agora",
"TabNavigation": "Navega\u00e7\u00e3o",
- "TabControls": "Controles",
+ "ButtonFullscreen": "Alternar para tela cheia",
"ButtonScenes": "Cenas",
"ButtonSubtitles": "Legendas",
+ "ButtonAudioTracks": "Faixas de \u00e1udio",
+ "ButtonPreviousTrack": "Faixa anterior",
+ "ButtonNextTrack": "Faixa seguinte",
"ButtonStop": "Parar",
"ButtonPause": "Pausar",
- "ButtonNext": "Pr\u00f3xima",
- "ButtonPrevious": "Anterior",
"LabelGroupMoviesIntoCollections": "Agrupar filmes nas cole\u00e7\u00f5es",
"LabelGroupMoviesIntoCollectionsHelp": "Ao exibir listas de filmes, filmes que perten\u00e7am a uma cole\u00e7\u00e3o ser\u00e3o exibidos como um \u00fanico item agrupado.",
+ "CategoryApplication": "Aplica\u00e7\u00e3o",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Falha no plugin",
+ "TabControls": "Controles",
"ButtonVolumeUp": "Aumentar volume",
"ButtonVolumeDown": "Diminuir volume",
"ButtonMute": "Mudo",
"HeaderLatestMedia": "M\u00eddias Recentes",
+ "OptionNoSubtitles": "Nenhuma legenda",
"OptionSpecialFeatures": "Recursos Especiais",
+ "ChannelAccessHelp": "Selecione os canais a compartilhar com este usu\u00e1rio. Administradores poder\u00e3o editar todos os canais usando o gerenciador de metadados.",
"HeaderCollections": "Cole\u00e7\u00f5es",
"LabelProfileCodecsHelp": "Separados por v\u00edrgula. Pode ser deixado em branco para usar com todos os codecs.",
"LabelProfileContainersHelp": "Separados por v\u00edrgula. Pode ser deixado em branco para usar com todos os containers.",
"HeaderResponseProfile": "Perfil de Resposta",
"LabelType": "Tipo:",
- "LabelPersonRole": "Personagem:",
- "LabelPersonRoleHelp": "O personagem geralmente s\u00f3 aplica para atores.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Codecs de v\u00eddeo:",
"LabelProfileAudioCodecs": "Codecs de \u00e1udio:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Se ativado, todos os v\u00eddeos s\u00e3o representados no DIDL como \"object.item.videoItem\" ao inv\u00e9s de um tipo mais espec\u00edfico como, por exemplo, \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Tipos de M\u00eddia Suportados:",
"TabIdentification": "Identifica\u00e7\u00e3o",
- "HeaderIdentification": "Identifica\u00e7\u00e3o",
"TabDirectPlay": "Reprodu\u00e7\u00e3o Direta",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "Estes valores controlam como o Servidor Emby apresentar\u00e1 a si mesmo para o dispositivo.",
"LabelMaxBitrate": "Taxa de bits m\u00e1xima:",
"LabelMaxBitrateHelp": "Especifique uma taxa de bits m\u00e1xima para ambientes com restri\u00e7\u00e3o de tamanho de banda, ou se o dispositivo imp\u00f5e esse limite.",
- "LabelMaxStreamingBitrate": "Taxa m\u00e1xima para streaming:",
- "LabelMaxStreamingBitrateHelp": "Defina uma taxa m\u00e1xima para fazer streaming.",
- "LabelMaxChromecastBitrate": "Taxa de bits m\u00e1xima do Chromecast:",
- "LabelMaxStaticBitrate": "Taxa m\u00e1xima para sincronizar:",
- "LabelMaxStaticBitrateHelp": "Defina uma taxa m\u00e1xima quando sincronizar conte\u00fado em alta qualidade.",
- "LabelMusicStaticBitrate": "Taxa de sincroniza\u00e7\u00e3o das m\u00fasicas:",
- "LabelMusicStaticBitrateHelp": "Defina a taxa m\u00e1xima ao sincronizar m\u00fasicas",
- "LabelMusicStreamingTranscodingBitrate": "Taxa de transcodifica\u00e7\u00e3o das m\u00fasicas:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Defina a taxa m\u00e1xima ao fazer streaming das m\u00fasicas",
"OptionIgnoreTranscodeByteRangeRequests": "Ignorar requisi\u00e7\u00f5es de extens\u00e3o do byte de transcodifica\u00e7\u00e3o",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Se ativadas, estas requisi\u00e7\u00f5es ser\u00e3o honradas mas ir\u00e3o ignorar o cabe\u00e7alho da extens\u00e3o do byte.",
"LabelFriendlyName": "Nome amig\u00e1vel",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Isto \u00e9 necess\u00e1rio para alguns dispositivos que n\u00e3o buscam o tempo muito bem.",
"HeaderSubtitleDownloadingHelp": "Quando o Emby rastreia seus arquivos de v\u00eddeo pode procurar por legendas ausentes e baix\u00e1-las usando um provedor de legendas como o OpenSubtitles.org",
"HeaderDownloadSubtitlesFor": "Fazer download de legendas para:",
- "MessageNoChapterProviders": "Instale um plugin provedor de cap\u00edtulos como o ChapterDb para habilitar mais op\u00e7\u00f5es de cap\u00edtulos.",
- "LabelSkipIfGraphicalSubsPresent": "Ignorar se o v\u00eddeo j\u00e1 possuir legendas gr\u00e1ficas",
- "LabelSkipIfGraphicalSubsPresentHelp": "Manter vers\u00f5es das legendas em texto resultar\u00e1 em uma entrega mais eficiente e diminuir\u00e1 a necessidade de transcodifica\u00e7\u00e3o do v\u00eddeo.",
"TabSubtitles": "Legendas",
- "TabChapters": "Cap\u00edtulos",
- "HeaderDownloadChaptersFor": "Fazer download de nomes de cap\u00edtulos para:",
"LabelOpenSubtitlesUsername": "Nome do usu\u00e1rio do Open Subtitles:",
"LabelOpenSubtitlesPassword": "Senha do Open Subtitles:",
- "HeaderChapterDownloadingHelp": "Quando o Emby rastreia seus arquivos de v\u00eddeo pode fazer o download de nomes amig\u00e1veis para cap\u00edtulos usando plugins de cap\u00edtulos como o ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Reproduzir a faixa de \u00e1udio padr\u00e3o, independente do idioma",
- "LabelSubtitlePlaybackMode": "Modo da Legenda:",
"LabelDownloadLanguages": "Idiomas para download:",
"ButtonRegister": "Registrar",
+ "LabelSkipIfGraphicalSubsPresent": "Ignorar se o v\u00eddeo j\u00e1 possuir legendas gr\u00e1ficas",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Manter vers\u00f5es das legendas em texto resultar\u00e1 em uma entrega mais eficiente e diminuir\u00e1 a necessidade de transcodifica\u00e7\u00e3o do v\u00eddeo.",
"LabelSkipIfAudioTrackPresent": "Ignorar se a faixa de \u00e1udio padr\u00e3o coincidir com o idioma de download",
"LabelSkipIfAudioTrackPresentHelp": "Desmarque esta op\u00e7\u00e3o para garantir que todos os v\u00eddeos t\u00eam legendas, independente do idioma do \u00e1udio.",
+ "NotificationOptionNewLibraryContentMultiple": "Novo conte\u00fado adicionado (m\u00faltiplo)",
"HeaderSendMessage": "Enviar mensagem",
"ButtonSend": "Enviar",
"LabelMessageText": "Texto da mensagem:",
+ "LabelService": "Servi\u00e7o:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Vers\u00e3o:",
+ "LabelLastResult": "\u00daltimo resultado:",
+ "ButtonOsd": "Exibi\u00e7\u00e3o na tela",
"MessageNoAvailablePlugins": "N\u00e3o existem plugins dispon\u00edveis.",
"LabelDisplayPluginsFor": "Exibir plugins para:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Nome do epis\u00f3dio",
- "LabelSeriesNamePlain": "Nome da s\u00e9rie",
"ValueSeriesNamePeriod": "Nome.s\u00e9rie",
"ValueSeriesNameUnderscore": "Nome_s\u00e9rie",
"ValueEpisodeNamePeriod": "Nome.epis\u00f3dio",
"ValueEpisodeNameUnderscore": "Nome_epis\u00f3dio",
- "LabelSeasonNumberPlain": "N\u00famero da temporada",
- "LabelEpisodeNumberPlain": "N\u00famero do epis\u00f3dio",
- "LabelEndingEpisodeNumberPlain": "N\u00famero do epis\u00f3dio final",
"HeaderTypeText": "Digitar texto",
"LabelTypeText": "Texto",
+ "OptionDefaultSubtitles": "Padr\u00e3o",
+ "OptionOnlyForcedSubtitles": "Apenas legendas for\u00e7adas",
+ "OptionAlwaysPlaySubtitles": "Sempre reproduzir legendas",
+ "OptionDefaultSubtitlesHelp": "As legendas que forem iguais ao idioma preferido ser\u00e3o carregadas quando o \u00e1udio estiver em um idioma estrangeiro.",
+ "OptionOnlyForcedSubtitlesHelp": "Apenas legendas marcadas como for\u00e7adas ser\u00e3o carregadas.",
+ "OptionAlwaysPlaySubtitlesHelp": "As legendas que forem iguais ao idioma preferido ser\u00e3o carregadas independente do idioma do \u00e1udio.",
+ "OptionNoSubtitlesHelp": "As legendas n\u00e3o ser\u00e3o carregadas por padr\u00e3o.",
+ "TangibleSoftwareMessage": "Utilizando conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a de doa\u00e7\u00e3o.",
+ "HeaderCredits": "Cr\u00e9ditos",
+ "TabCollections": "Cole\u00e7\u00f5es",
+ "TabFavorites": "Favoritos",
+ "TabMyLibrary": "Minha Biblioteca",
+ "LabelCustomizeOptionsPerMediaType": "Personalizar para o tipo de m\u00eddia:",
+ "LabelPlayDefaultAudioTrack": "Reproduzir a faixa de \u00e1udio padr\u00e3o, independente do idioma",
+ "LabelSubtitlePlaybackMode": "Modo da Legenda:",
+ "TabOther": "Outros",
+ "NotificationOptionVideoPlaybackStopped": "Reprodu\u00e7\u00e3o de v\u00eddeo parada",
+ "NotificationOptionAudioPlaybackStopped": "Reprodu\u00e7\u00e3o de \u00e1udio parada",
+ "NotificationOptionGamePlaybackStopped": "Reprodu\u00e7\u00e3o de jogo parada",
"HeaderSearchForSubtitles": "Buscar Legendas",
- "ButtonMore": "Mais",
"MessageNoSubtitleSearchResultsFound": "N\u00e3o foi encontrado nenhum resultado.",
"TabDisplay": "Exibi\u00e7\u00e3o",
"TabLanguages": "Idiomas",
- "TabAppSettings": "Configura\u00e7\u00f5es da App",
"LabelEnableThemeSongs": "Ativar m\u00fasicas-tema",
"LabelEnableBackdrops": "Ativar imagens de fundo",
"LabelEnableThemeSongsHelp": "Se ativadas, m\u00fasicas-tema ser\u00e3o reproduzidas em segundo plano ao navegar pela biblioteca.",
"LabelEnableBackdropsHelp": "Se ativadas, imagens de fundo ser\u00e3o exibidas ao fundo de algumas p\u00e1ginas ao navegar pela biblioteca.",
- "HeaderHomePage": "P\u00e1gina Inicial",
- "HeaderSettingsForThisDevice": "Ajustes para Este Dispositivo",
"OptionAuto": "Auto",
"OptionYes": "Sim",
"OptionNo": "N\u00e3o",
- "HeaderOptions": "Op\u00e7\u00f5es",
- "HeaderIdentificationResult": "Resultado da Identifica\u00e7\u00e3o",
"LabelHomePageSection1": "Tela de in\u00edcio se\u00e7\u00e3o 1:",
"LabelHomePageSection2": "Tela de in\u00edcio se\u00e7\u00e3o 2:",
"LabelHomePageSection3": "Tela de in\u00edcio se\u00e7\u00e3o 3:",
- "LabelHomePageSection4": "Tela de in\u00edcio se\u00e7\u00e3o 4:",
- "OptionMyMediaButtons": "Minha m\u00eddia (bot\u00f5es)",
- "OptionMyMedia": "Minha m\u00eddia",
- "OptionMyMediaSmall": "Minha m\u00eddia (pequeno)",
"OptionResumablemedia": "Retomar",
"OptionLatestMedia": "M\u00eddias recentes",
- "OptionLatestChannelMedia": "Itens recentes de canal",
- "HeaderLatestChannelItems": "Itens Recentes de Canal",
"OptionNone": "Nenhum",
"HeaderLiveTv": "TV ao Vivo",
"HeaderReports": "Relat\u00f3rios",
"HeaderMetadataManager": "Gerenciador de Metadados",
- "HeaderSettings": "Ajustes",
"MessageLoadingChannels": "Carregando conte\u00fado do canal...",
- "MessageLoadingContent": "Carregando conte\u00fado...",
"ButtonMarkRead": "Marcar com lido",
"OptionDefaultSort": "Padr\u00e3o",
"OptionCommunityMostWatchedSort": "Mais Assistidos",
"TabNextUp": "Pr\u00f3ximos",
- "PlaceholderUsername": "Nome do usu\u00e1rio",
- "HeaderBecomeProjectSupporter": "Torne-se um Colaborador do Emby",
"MessageNoMovieSuggestionsAvailable": "N\u00e3o existem sugest\u00f5es de filmes dispon\u00edveis atualmente. Comece por assistir e avaliar seus filmes e, ent\u00e3o, volte para verificar suas recomenda\u00e7\u00f5es.",
"MessageNoCollectionsAvailable": "Cole\u00e7\u00f5es permitem que voc\u00ea aproveite grupos personalizados de Filmes, S\u00e9ries, \u00c1lbuns, Livros e Jogos. Clique no bot\u00e3o + para come\u00e7ar a criar Cole\u00e7\u00f5es.",
- "MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.",
- "MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.",
+ "ButtonClose": "Fechar",
+ "HeaderConfirmDeletion": "Confirmar Exclus\u00e3o",
+ "HeaderHomePage": "P\u00e1gina Inicial",
+ "HeaderSettingsForThisDevice": "Ajustes para Este Dispositivo",
"ButtonDismiss": "Descartar",
+ "ButtonMore": "Mais",
"ButtonEditOtherUserPreferences": "Editar este perfil de usu\u00e1rio, imagem e prefer\u00eancias pessoais.",
+ "TitleChannels": "Canais",
"LabelChannelStreamQuality": "Qualidade preferida do stream de internet:",
"LabelChannelStreamQualityHelp": "Em um ambiente com banda larga de pouca velocidade, limitar a qualidade pode ajudar a assegurar um streaming mais flu\u00eddo.",
"OptionBestAvailableStreamQuality": "Melhor dispon\u00edvel",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Excluir conte\u00fado depois de: (dias)",
"LabelChannelDownloadAgeHelp": "O conte\u00fado transferido que for mais velho que este valor ser\u00e1 exclu\u00eddo. Poder\u00e1 seguir reproduzindo-o atrav\u00e9s de streaming da internet.",
"ChannelSettingsFormHelp": "Instalar canais como, por exemplo, Trailers e Vimeo no cat\u00e1logo de plugins.",
- "ButtonOptions": "Op\u00e7\u00f5es",
- "ViewTypePlaylists": "Listas de Reprodu\u00e7\u00e3o",
+ "ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
+ "ButtonSubmit": "Enviar",
"ViewTypeMovies": "Filmes",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Jogos",
"ViewTypeMusic": "M\u00fasicas",
- "ViewTypeMusicGenres": "G\u00eaneros",
- "ViewTypeMusicArtists": "Artistas",
"ViewTypeBoxSets": "Cole\u00e7\u00f5es",
- "ViewTypeChannels": "Canais",
- "ViewTypeLiveTV": "TV ao Vivo",
- "ViewTypeLiveTvNowPlaying": "Exibindo Agora",
- "ViewTypeLatestGames": "Jogos Recentes",
- "ViewTypeRecentlyPlayedGames": "Reproduzido Recentemente",
- "ViewTypeGameFavorites": "Favoritos",
- "ViewTypeGameSystems": "Sistemas de Jogo",
- "ViewTypeGameGenres": "G\u00eaneros",
- "ViewTypeTvResume": "Retomar",
- "ViewTypeTvNextUp": "Pr\u00f3ximos",
- "ViewTypeTvLatest": "Recentes",
- "ViewTypeTvShowSeries": "S\u00e9ries",
- "ViewTypeTvGenres": "G\u00eaneros",
- "ViewTypeTvFavoriteSeries": "S\u00e9ries Favoritas",
- "ViewTypeTvFavoriteEpisodes": "Epis\u00f3dios Favoritos",
- "ViewTypeMovieResume": "Retomar",
- "ViewTypeMovieLatest": "Recentes",
- "ViewTypeMovieMovies": "Filmes",
- "ViewTypeMovieCollections": "Cole\u00e7\u00f5es",
- "ViewTypeMovieFavorites": "Favoritos",
- "ViewTypeMovieGenres": "G\u00eaneros",
- "ViewTypeMusicLatest": "Recentes",
- "ViewTypeMusicPlaylists": "Listas de Reprodu\u00e7\u00e3o",
- "ViewTypeMusicAlbums": "\u00c1lbuns",
- "ViewTypeMusicAlbumArtists": "Artistas do \u00c1lbum",
"HeaderOtherDisplaySettings": "Ajustes de Exibi\u00e7\u00e3o",
- "ViewTypeMusicSongs": "M\u00fasicas",
- "ViewTypeMusicFavorites": "Favoritos",
- "ViewTypeMusicFavoriteAlbums": "\u00c1lbuns Favoritos",
- "ViewTypeMusicFavoriteArtists": "Artistas Favoritos",
- "ViewTypeMusicFavoriteSongs": "M\u00fasicas Favoritas",
- "HeaderMyViews": "Minhas Visualiza\u00e7\u00f5es",
"LabelSelectFolderGroups": "Agrupar automaticamente o conte\u00fado das seguintes pastas dentro das visualiza\u00e7\u00f5es como Filmes, M\u00fasicas e TV:",
"LabelSelectFolderGroupsHelp": "Pastas que n\u00e3o est\u00e3o marcadas ser\u00e3o exibidas em sua pr\u00f3pria visualiza\u00e7\u00e3o.",
+ "ViewTypeChannels": "Canais",
+ "ViewTypeLiveTV": "TV ao Vivo",
"OptionDisplayAdultContent": "Exibir conte\u00fado adulto",
+ "MessageNoChapterProviders": "Instale um plugin provedor de cap\u00edtulos como o ChapterDb para habilitar mais op\u00e7\u00f5es de cap\u00edtulos.",
+ "TabChapters": "Cap\u00edtulos",
+ "HeaderDownloadChaptersFor": "Fazer download de nomes de cap\u00edtulos para:",
+ "HeaderChapterDownloadingHelp": "Quando o Emby rastreia seus arquivos de v\u00eddeo pode fazer o download de nomes amig\u00e1veis para cap\u00edtulos usando plugins de cap\u00edtulos como o ChapterDb.",
"OptionLibraryFolders": "Pastas de m\u00eddias",
+ "LabelHomePageSection4": "Tela de in\u00edcio se\u00e7\u00e3o 4:",
+ "OptionLatestChannelMedia": "Itens recentes de canal",
+ "HeaderLatestChannelItems": "Itens Recentes de Canal",
"TitleRemoteControl": "Controle Remoto",
+ "HeaderMyViews": "Minhas Visualiza\u00e7\u00f5es",
"OptionLatestTvRecordings": "\u00daltimas grava\u00e7\u00f5es",
+ "ButtonRefresh": "Atualizar",
"LabelProtocolInfo": "Informa\u00e7\u00e3o do protocolo:",
"LabelProtocolInfoHelp": "O valor que ser\u00e1 usado ao responder os pedidos GetProtocolInfo do dispositivo.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby inclui suporte nativo para arquivos de metadados Nfo. Para ativar ou desativar metadados Nfo, use a aba Avan\u00e7ado para configurar as op\u00e7\u00f5es para seus tipos de m\u00eddia.",
- "LabelKodiMetadataUser": "Sincronizar informa\u00e7\u00f5es do que o usu\u00e1rio assiste aos nfo's para:",
- "LabelKodiMetadataUserHelp": "Ative esta op\u00e7\u00e3o para manter os dados sincronizados entre o Servidor Emby e os arquivos Nfo.",
- "LabelKodiMetadataDateFormat": "Formato da data de lan\u00e7amento:",
- "LabelKodiMetadataDateFormatHelp": "Todas as datas dentro dos nfo's ser\u00e3o lidas e gravadas usando este formato.",
- "LabelKodiMetadataSaveImagePaths": "Salvar o caminho das imagens dentro dos arquivos nfo's",
- "LabelKodiMetadataSaveImagePathsHelp": "Esta op\u00e7\u00e3o \u00e9 recomendada se voc\u00ea tiver nomes de arquivos de imagem que n\u00e3o est\u00e3o de acordo \u00e0s recomenda\u00e7\u00f5es do Kodi.",
- "LabelKodiMetadataEnablePathSubstitution": "Ativar substitui\u00e7\u00e3o de caminho",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Ativa a substitui\u00e7\u00e3o do caminho das imagens usando as op\u00e7\u00f5es de substitui\u00e7\u00e3o de caminho no servidor.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Ver substitui\u00e7\u00e3o de caminho.",
- "OptionDisplayChannelsInline": "Exibir canais em linha dentro de minhas visualiza\u00e7\u00f5es",
- "OptionDisplayChannelsInlineHelp": "Se ativado, os canais ser\u00e3o exibidos diretamente em outras visualiza\u00e7\u00f5es. Se desativado, eles ser\u00e3o exibidos dentro de uma visualiza\u00e7\u00e3o separada de Canais.",
"LabelDisplayCollectionsView": "Exibir uma visualiza\u00e7\u00e3o de cole\u00e7\u00f5es para mostrar colet\u00e2neas de filmes",
- "LabelDisplayCollectionsViewHelp": "Esta op\u00e7\u00e3o criar\u00e1 uma visualiza\u00e7\u00e3o separada para exibir cole\u00e7\u00f5es criadas ou acessadas por voc\u00ea. Para criar uma cole\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque e segure qualquer filme e selecione 'Adicionar \u00e0 Cole\u00e7\u00e3o'.",
- "LabelKodiMetadataEnableExtraThumbs": "Copiar extrafanart para extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "Ao fazer download das imagens, elas podem ser salvas em ambas extrafanart e extrathumbs para uma maior compatibilidade com as skins do Kodi.",
+ "HeaderSubtitles": "Legendas",
"TabServices": "Servi\u00e7os",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Arquivos de log do servidor:",
@@ -1029,6 +820,8 @@
"LabelAppName": "Nome da app",
"LabelAppNameExample": "Exemplo: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Conceda permiss\u00e3o \u00e0 aplica\u00e7\u00e3o de se comunicar com o Servidor Emby.",
+ "TabUsers": "Usu\u00e1rios",
+ "TabScheduledTasks": "Tarefas Agendadas",
"HeaderHttpHeaders": "Cabe\u00e7alhos de Http",
"HeaderIdentificationHeader": "Cabe\u00e7alho de Identifica\u00e7\u00e3o",
"LabelValue": "Valor:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filtro",
"ButtonView": "Visualizar",
"LabelPageSize": "Limite de itens:",
- "LabelPath": "Caminho:",
"LabelView": "Visualizar:",
- "TabUsers": "Usu\u00e1rios",
- "LabelSortName": "Nome para ordena\u00e7\u00e3o:",
- "LabelDateAdded": "Data de adi\u00e7\u00e3o:",
+ "LabelManagement": "Gerenciamento:",
"HeaderFeatures": "Recursos",
"HeaderAdvanced": "Avan\u00e7ado",
"ButtonSync": "Sincronizar",
- "TabScheduledTasks": "Tarefas Agendadas",
"HeaderChapters": "Cap\u00edtulos",
"HeaderResumeSettings": "Ajustes para Retomar",
"TabSync": "Sincroniza\u00e7\u00e3o",
"TitleUsers": "Usu\u00e1rios",
+ "LabelMaxStreamingBitrate": "Taxa m\u00e1xima para streaming:",
+ "LabelMaxStreamingBitrateHelp": "Defina uma taxa m\u00e1xima para fazer streaming.",
+ "LabelMaxStaticBitrate": "Taxa m\u00e1xima para sincronizar:",
+ "LabelMaxStaticBitrateHelp": "Defina uma taxa m\u00e1xima quando sincronizar conte\u00fado em alta qualidade.",
"LabelProtocol": "Protocolo:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sinc",
"ButtonAddToPlaylist": "Adicionar \u00e0 lista de reprodu\u00e7\u00e3o",
+ "MessageNoPlaylistsAvailable": "Listas de reprodu\u00e7\u00e3o permitem criar listas com conte\u00fado para reproduzir consecutivamente, de uma s\u00f3 vez. Para adicionar itens \u00e0s listas de reprodu\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque a tela por alguns segundos, depois selecione Adicionar \u00e0 Lista de Reprodu\u00e7\u00e3o.",
+ "MessageNoPlaylistItemsAvailable": "Esta lista de reprodu\u00e7\u00e3o est\u00e1 vazia.",
"TabPlaylists": "Listas de Reprodu\u00e7\u00e3o",
- "ButtonClose": "Fechar",
"LabelAllLanguages": "Todos os idiomas",
"HeaderBrowseOnlineImages": "Procurar Imagens Online",
"LabelSource": "Fonte:",
@@ -1080,7 +874,6 @@
"OptionBox": "Caixa",
"OptionBoxRear": "Traseira da Caixa",
"OptionDisc": "Disco",
- "OptionIcon": "\u00cdcone",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Imagem da tela",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "N\u00e3o identificada",
"OptionMissingParentalRating": "Faltando classifica\u00e7\u00e3o parental",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Epis\u00f3dios",
"OptionSeason0": "Temporada 0",
"LabelReport": "Relat\u00f3rio:",
"OptionReportSongs": "M\u00fasicas",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artistas",
"OptionReportAlbums": "\u00c1lbuns",
"OptionReportAdultVideos": "V\u00eddeos adultos",
+ "ButtonMoreItems": "Mais",
"HeaderActivity": "Atividade",
"ScheduledTaskStartedWithName": "{0} iniciado",
"ScheduledTaskCancelledWithName": "{0} foi cancelado",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Falha ao baixar legendas para {0}",
"LabelRunningTimeValue": "Dura\u00e7\u00e3o: {0}",
"LabelIpAddressValue": "Endere\u00e7o Ip: {0}",
- "UserLockedOutWithName": "Usu\u00e1rio {0} foi bloqueado",
"UserConfigurationUpdatedWithName": "A configura\u00e7\u00e3o do usu\u00e1rio {0} foi atualizada",
"UserCreatedWithName": "O usu\u00e1rio {0} foi criado",
"UserPasswordChangedWithName": "A senha do usu\u00e1rio {0} foi alterada",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "O Servidor Emby foi atualizado",
"AuthenticationSucceededWithUserName": "{0} autenticou-se com sucesso",
"FailedLoginAttemptWithUserName": "Falha na tentativa de login de {0}",
- "UserDownloadingItemWithValues": "{0} est\u00e1 fazendo download de {1}",
"UserStartedPlayingItemWithValues": "{0} come\u00e7ou a reproduzir {1}",
"UserStoppedPlayingItemWithValues": "{0} parou de reproduzir {1}",
"AppDeviceValues": "App: {0}, Dispositivo: {1}",
"ProviderValue": "Provedor: {0}",
+ "HeaderAudio": "\u00c1udio",
+ "HeaderVideo": "V\u00eddeo",
+ "MessageLoadingContent": "Carregando conte\u00fado...",
"LabelChannelDownloadSizeLimit": "Limite do tamanho para download (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limitar o tamanho da pasta de download do canal.",
+ "LabelMusicStaticBitrate": "Taxa de sincroniza\u00e7\u00e3o das m\u00fasicas:",
+ "LabelMusicStaticBitrateHelp": "Defina a taxa m\u00e1xima ao sincronizar m\u00fasicas",
+ "LabelMusicStreamingTranscodingBitrate": "Taxa de transcodifica\u00e7\u00e3o das m\u00fasicas:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Defina a taxa m\u00e1xima ao fazer streaming das m\u00fasicas",
"HeaderRecentActivity": "Atividade Recente",
"HeaderPeople": "Pessoas",
"HeaderDownloadPeopleMetadataFor": "Fazer download da biografia e imagens para:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Exibir visualiza\u00e7\u00e3o de pastas para mostrar pastas simples de m\u00eddia",
"ViewTypeLiveTvRecordingGroups": "Grava\u00e7\u00f5es",
"ViewTypeLiveTvChannels": "Canais",
- "LabelEasyPinCode": "C\u00f3digo de pin f\u00e1cil:",
- "EasyPasswordHelp": "Seu c\u00f3digo pin f\u00e1cil \u00e9 usado para acesso off-line com apps suportadas pelo Emby e pode ser usado para acesso f\u00e1cil dentro da rede.",
- "LabelInNetworkSignInWithEasyPassword": "Ativar acesso dentro da rede com meu c\u00f3digo de pin f\u00e1cil",
- "LabelInNetworkSignInWithEasyPasswordHelp": "Se ativado, voc\u00ea poder\u00e1 usar um c\u00f3digo pin f\u00e1cil para entrar nas apps do Emby dentro de sua rede. Sua senha normal s\u00f3 ser\u00e1 necess\u00e1ria fora de sua casa. Se o c\u00f3digo pin for deixado em branco, n\u00e3o ser\u00e1 necess\u00e1ria uma senha dentro de sua rede dom\u00e9stica.",
"HeaderPassword": "Senha",
"HeaderLocalAccess": "Acesso Local",
"HeaderViewOrder": "Ordem da Visualiza\u00e7\u00e3o",
- "ButtonResetEasyPassword": "Redefinir c\u00f3digo de pin f\u00e1cil",
"LabelSelectUserViewOrder": "Escolha a ordem que suas visualiza\u00e7\u00f5es ser\u00e3o exibidas dentro das apps do Emby",
+ "LabelReleaseDate": "Data do lan\u00e7amento:",
+ "LabelEndDate": "Data final:",
+ "LabelYear": "Ano:",
+ "FolderTypeMixed": "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",
+ "LabelArtists": "Artistas:",
+ "LabelArtistsHelp": "Separar m\u00faltiplos usando ;",
+ "ButtonAdvancedRefresh": "Atualiza\u00e7\u00e3o Avan\u00e7ada",
+ "LabelPersonRole": "Personagem:",
+ "LabelPersonRoleHelp": "O personagem geralmente s\u00f3 aplica para atores.",
+ "LabelPath": "Caminho:",
+ "LabelSortName": "Nome para ordena\u00e7\u00e3o:",
+ "LabelDateAdded": "Data de adi\u00e7\u00e3o:",
"LabelMetadataRefreshMode": "Modo de atualiza\u00e7\u00e3o dos metadados:",
"LabelImageRefreshMode": "Modo de atualiza\u00e7\u00e3o das imagens:",
"OptionDownloadMissingImages": "Fazer download das imagens faltantes",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Informa\u00e7\u00e3o da Pessoa",
"HeaderIdentifyItem": "Identificar Item",
"HeaderIdentifyItemHelp": "Digite um ou mais crit\u00e9rios de busca. Exclua o crit\u00e9rio para aumentar os resultados da busca.",
- "HeaderConfirmDeletion": "Confirmar Exclus\u00e3o",
"LabelFollowingFileWillBeDeleted": "O seguinte arquivo ser\u00e1 exclu\u00eddo:",
"LabelIfYouWishToContinueWithDeletion": "Se desejar continuar, por favor confirme digitando o valor de:",
"ButtonIdentify": "Identificar",
"LabelAlbumArtist": "Artista do \u00e1lbum:",
- "LabelAlbumArtists": "Artistas do \u00c1lbum:",
"LabelAlbum": "\u00c1lbum:",
"LabelCommunityRating": "Avalia\u00e7\u00e3o da comunidade:",
"LabelVoteCount": "Contagem de votos:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Slogan:",
"LabelOverview": "Sinopse:",
"LabelShortOverview": "Sinopse curta:",
- "LabelReleaseDate": "Data do lan\u00e7amento:",
- "LabelYear": "Ano:",
"LabelPlaceOfBirth": "Local de nascimento:",
- "LabelEndDate": "Data final:",
"LabelAirDate": "Dias da exibi\u00e7\u00e3o:",
"LabelAirTime:": "Hor\u00e1rio:",
"LabelRuntimeMinutes": "Dura\u00e7\u00e3o (minutos):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Ajustes dos Metadados",
"LabelLockItemToPreventChanges": "Bloquear este item para evitar altera\u00e7\u00f5es futuras",
"MessageLeaveEmptyToInherit": "Deixar em branco para herdar os ajustes de um item superior, ou o valor padr\u00e3o global",
- "TabDonate": "Doar",
"HeaderDonationType": "Tipo de doa\u00e7\u00e3o:",
"OptionMakeOneTimeDonation": "Fazer uma doa\u00e7\u00e3o \u00fanica",
- "OptionOneTimeDescription": "Esta \u00e9 uma doa\u00e7\u00e3o adicional \u00e0 equipe para demonstrar seu apoio. N\u00e3o garante nenhum benef\u00edcio adicional e n\u00e3o produzir\u00e1 uma chave de colaborador.",
- "OptionLifeTimeSupporterMembership": "Ades\u00e3o de colaborador vital\u00edcia",
- "OptionYearlySupporterMembership": "Ades\u00e3o de colaborador anual",
- "OptionMonthlySupporterMembership": "Ades\u00e3o de colaborador mensal",
"OptionNoTrailer": "Nenhum Trailer",
"OptionNoThemeSong": "Nenhuma M\u00fasica-tema",
"OptionNoThemeVideo": "Nenhum V\u00eddeo-tema",
"LabelOneTimeDonationAmount": "Valor da doa\u00e7\u00e3o:",
- "ButtonDonate": "Doar",
- "ButtonPurchase": "Comprar",
"OptionActor": "Ator",
"OptionComposer": "Compositor",
"OptionDirector": "Diretor",
"OptionGuestStar": "Ator convidado",
"OptionProducer": "Produtor",
"OptionWriter": "Escritor",
+ "LabelEpisodeNamePlain": "Nome do epis\u00f3dio",
+ "LabelSeriesNamePlain": "Nome da s\u00e9rie",
+ "LabelSeasonNumberPlain": "N\u00famero da temporada",
+ "LabelEpisodeNumberPlain": "N\u00famero do epis\u00f3dio",
+ "LabelEndingEpisodeNumberPlain": "N\u00famero do epis\u00f3dio final",
+ "OptionOneTimeDescription": "Esta \u00e9 uma doa\u00e7\u00e3o adicional \u00e0 equipe para demonstrar seu apoio. N\u00e3o garante nenhum benef\u00edcio adicional e n\u00e3o produzir\u00e1 uma chave de colaborador.",
"LabelAirDays": "Dias da exibi\u00e7\u00e3o:",
"LabelAirTime": "Hor\u00e1rio:",
"HeaderMediaInfo": "Informa\u00e7\u00f5es da M\u00eddia",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Info do desenvolvedor",
"HeaderRevisionHistory": "Hist\u00f3rico de Vers\u00f5es",
"ButtonViewWebsite": "Ver website",
+ "ViewTypeLiveTvNowPlaying": "Exibindo Agora",
+ "ViewTypeLatestGames": "Jogos Recentes",
+ "ViewTypeRecentlyPlayedGames": "Reproduzido Recentemente",
+ "ViewTypeGameFavorites": "Favoritos",
+ "ViewTypeGameSystems": "Sistemas de Jogo",
+ "ViewTypeGameGenres": "G\u00eaneros",
+ "ViewTypeTvResume": "Retomar",
+ "ViewTypeTvNextUp": "Pr\u00f3ximos",
+ "ViewTypeTvLatest": "Recentes",
+ "ViewTypeTvGenres": "G\u00eaneros",
+ "ViewTypeMovieResume": "Retomar",
+ "ViewTypeMovieLatest": "Recentes",
+ "ViewTypeMovieMovies": "Filmes",
+ "ViewTypeMovieCollections": "Cole\u00e7\u00f5es",
+ "ViewTypeMovieFavorites": "Favoritos",
+ "ViewTypeMovieGenres": "G\u00eaneros",
+ "ViewTypeMusicLatest": "Recentes",
+ "ViewTypeMusicAlbums": "\u00c1lbuns",
+ "ViewTypeMusicAlbumArtists": "Artistas do \u00c1lbum",
+ "TabDonate": "Doar",
+ "OptionLifeTimeSupporterMembership": "Ades\u00e3o de colaborador vital\u00edcia",
+ "OptionYearlySupporterMembership": "Ades\u00e3o de colaborador anual",
+ "OptionMonthlySupporterMembership": "Ades\u00e3o de colaborador mensal",
+ "ViewTypeTvShowSeries": "S\u00e9ries",
+ "ViewTypeTvFavoriteSeries": "S\u00e9ries Favoritas",
+ "ViewTypeTvFavoriteEpisodes": "Epis\u00f3dios Favoritos",
"HeaderXmlSettings": "Ajustes do Xml",
"HeaderXmlDocumentAttributes": "Atributos do Documento Xml",
"HeaderXmlDocumentAttribute": "Atributo do Documento Xml",
"XmlDocumentAttributeListHelp": "Estes atributos s\u00e3o aplicados ao elemento principal de cada resposta xml.",
"OptionSaveMetadataAsHidden": "Salvar metadados e imagens como arquivos ocultos",
+ "ViewTypeMusicSongs": "M\u00fasicas",
"LabelExtractChaptersDuringLibraryScan": "Extrair imagens dos cap\u00edtulos durante o rastreamento da biblioteca",
"LabelExtractChaptersDuringLibraryScanHelp": "Se ativado, as imagens dos cap\u00edtulos ser\u00e3o extra\u00eddas quando os v\u00eddeos forem importados durante o rastreamento da biblioteca. Se desativado, elas ser\u00e3o extra\u00eddas durante a tarefa agendada de imagens dos cap\u00edtulos, permitindo que a tarefa de rastreamento da biblioteca seja mais r\u00e1pida.",
- "LabelConnectGuestUserName": "Seu nome de usu\u00e1rio ou endere\u00e7o de email no Emby:",
+ "ViewTypeMusicFavorites": "Favoritos",
+ "ViewTypeMusicFavoriteAlbums": "\u00c1lbuns Favoritos",
+ "ViewTypeMusicFavoriteArtists": "Artistas Favoritos",
+ "ViewTypeMusicFavoriteSongs": "M\u00fasicas Favoritas",
+ "ButtonAddLocalUser": "Adicionar Usu\u00e1rio Local",
+ "HeaderIdentification": "Identifica\u00e7\u00e3o",
"LabelConnectUserName": "Nome de usu\u00e1rio\/email no Emby:",
- "LabelConnectUserNameHelp": "Conecte este usu\u00e1rio a uma conta Emby para ativar o acesso f\u00e1cil de qualquer app do Emby sem ter que saber o endere\u00e7o ip do servidor.",
- "ButtonLearnMoreAboutEmbyConnect": "Saiba mais sobre o Emby Connect",
+ "LabelConnectUserNameHelp": "Conecte este usu\u00e1rio local a uma conta Emby online para ativar o acesso f\u00e1cil de qualquer app do Emby sem ter que saber o endere\u00e7o ip do servidor.",
+ "ButtonNext": "Pr\u00f3xima",
+ "ButtonPrevious": "Anterior",
"LabelExternalPlayers": "Reprodutores externos:",
"LabelExternalPlayersHelp": "Exibir bot\u00f5es para reproduzir conte\u00fado em reprodutores externos. Isto est\u00e1 dispon\u00edvel apenas em dispositivos que suportam esquemas url, geralmente Android e iOS. Com os reprodutores externos, geralmente n\u00e3o existe suporte para controle remoto ou para retomar.",
- "LabelNativeExternalPlayersHelp": "Exibir bot\u00f5es para reproduzir o conte\u00fado em reprodutores externos.",
- "LabelEnableItemPreviews": "Ativar pr\u00e9-visualiza\u00e7\u00e3o de itens",
- "LabelEnableItemPreviewsHelp": "Se ativada, pr\u00e9-visualiza\u00e7\u00f5es deslizantes ser\u00e3o exibidas ao clicar nos itens em certas telas.",
+ "ValueSpecialEpisodeName": "Especial - {0}",
"HeaderSubtitleProfile": "Perfil da Legenda",
"HeaderSubtitleProfiles": "Perfis da Legenda",
"HeaderSubtitleProfilesHelp": "Perfis da legenda descrevem os formatos da legenda suportados pelo dispositivo.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Legendas segmentadas hls",
"LabelSubtitleFormatHelp": "Exemplo: srt",
"ButtonLearnMore": "Saiba mais",
+ "HeaderKodiMetadataHelp": "Emby inclui suporte nativo para arquivos de metadados Nfo. Para ativar ou desativar metadados Nfo, use a aba Avan\u00e7ado para configurar as op\u00e7\u00f5es para seus tipos de m\u00eddia.",
+ "LabelKodiMetadataUser": "Sincronizar informa\u00e7\u00f5es do que o usu\u00e1rio assiste aos nfo's para:",
+ "LabelKodiMetadataUserHelp": "Ative esta op\u00e7\u00e3o para manter os dados sincronizados entre o Servidor Emby e os arquivos Nfo.",
+ "LabelKodiMetadataDateFormat": "Formato da data de lan\u00e7amento:",
+ "LabelKodiMetadataDateFormatHelp": "Todas as datas dentro dos nfo's ser\u00e3o lidas e gravadas usando este formato.",
+ "LabelKodiMetadataSaveImagePaths": "Salvar o caminho das imagens dentro dos arquivos nfo's",
+ "LabelKodiMetadataSaveImagePathsHelp": "Esta op\u00e7\u00e3o \u00e9 recomendada se voc\u00ea tiver nomes de arquivos de imagem que n\u00e3o est\u00e3o de acordo \u00e0s recomenda\u00e7\u00f5es do Kodi.",
+ "LabelKodiMetadataEnablePathSubstitution": "Ativar substitui\u00e7\u00e3o de caminho",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Ativa a substitui\u00e7\u00e3o do caminho das imagens usando as op\u00e7\u00f5es de substitui\u00e7\u00e3o de caminho no servidor.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Ver substitui\u00e7\u00e3o de caminho.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copiar extrafanart para extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "Ao fazer download das imagens, elas podem ser salvas em ambas extrafanart e extrathumbs para uma maior compatibilidade com as skins do Kodi.",
"TabPlayback": "Reprodu\u00e7\u00e3o",
"HeaderLanguagePreferences": "Prefer\u00eancias de Idioma",
"TabCinemaMode": "Modo Cinema",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Usar trailers apenas para conte\u00fado n\u00e3o assistido",
"LabelEnableIntroParentalControl": "Ativar controle parental inteligente",
"LabelEnableIntroParentalControlHelp": "Os trailers s\u00f3 ser\u00e3o selecionados se sua classifica\u00e7\u00e3o parental for igual ou menor que o conte\u00fado que est\u00e1 sendo assistido.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Estes recursos requerem uma ades\u00e3o ativa de colaborador e a instala\u00e7\u00e3o do plugin de canal de Trailers",
"OptionTrailersFromMyMoviesHelp": "\u00c9 necess\u00e1rio o ajuste dos trailers locais.",
"LabelCustomIntrosPath": "Caminho das intros personalizadas:",
"LabelCustomIntrosPathHelp": "Uma pasta contendo arquivos de v\u00eddeo. Um v\u00eddeo ser\u00e1 selecionado aleatoriamente e reproduzido depois dos trailers.",
- "ValueSpecialEpisodeName": "Especial - {0}",
+ "ButtonOptions": "Op\u00e7\u00f5es",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Estes recursos requerem uma ades\u00e3o ativa de colaborador e a instala\u00e7\u00e3o do plugin de canal de Trailers",
"LabelSelectInternetTrailersForCinemaMode": "Trailers da Internet:",
"OptionUpcomingDvdMovies": "Incluir trailers de filmes novos e por estrear em Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Incluir trailers de filmes novos e por estrear no Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Os usu\u00e1rios poder\u00e3o desabilitar o modo cinema individualmente, em suas pr\u00f3prias prefer\u00eancias.",
"LabelEnableCinemaMode": "Ativar modo cinema",
"HeaderCinemaMode": "Modo Cinema",
+ "TabDevices": "Dispositivos",
+ "LabelLocalHttpServerPortNumber": "N\u00famero da porta local de http:",
+ "LabelLocalHttpServerPortNumberHelp": "O n\u00famero da porta tcp que o servidor http do Emby deveria se conectar.",
+ "LabelEnableAutomaticPortMap": "Ativar mapeamento autom\u00e1tico de portas",
+ "LabelEnableAutomaticPortMapHelp": "Tentativa de mapear automaticamente a porta p\u00fablica para a porta local atrav\u00e9s de UPnP. Isto poder\u00e1 n\u00e3o funcionar em alguns modelos de roteadores.",
"LabelDateAddedBehavior": "Data de adi\u00e7\u00e3o de comportamento para o novo conte\u00fado:",
"OptionDateAddedImportTime": "Usar a data obtida na biblioteca",
"OptionDateAddedFileTime": "Usar a data de cria\u00e7\u00e3o do arquivo",
"LabelDateAddedBehaviorHelp": "Se um valor de metadados estiver presente, ele sempre ser\u00e1 utilizado antes destas op\u00e7\u00f5es.",
"LabelNumberTrailerToPlay": "N\u00famero de trailers para reproduzir:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limitar o tamanho da pasta de download do canal.",
"TitleDevices": "Dispositivos",
"TabCameraUpload": "Upload da C\u00e2mera",
- "TabDevices": "Dispositivos",
"HeaderCameraUploadHelp": "Faz o upload autom\u00e1tico de fotos e v\u00eddeos tiradas por seus dispositivos m\u00f3veis para o Emby.",
"MessageNoDevicesSupportCameraUpload": "Atualmente voc\u00ea n\u00e3o tem nenhum dispositivo que suporte upload da c\u00e2mera.",
"LabelCameraUploadPath": "Caminho para upload da c\u00e2mera:",
"LabelCameraUploadPathHelp": "Selecione um caminho personalizado para upload, se desejar. Se n\u00e3o definir, a pasta padr\u00e3o ser\u00e1 usada. Se usar um caminho personalizado, ser\u00e1 necess\u00e1rio adicionar na \u00e1rea de ajustes da biblioteca.",
"LabelCreateCameraUploadSubfolder": "Criar uma subpasta para cada dispositivo",
"LabelCreateCameraUploadSubfolderHelp": "Pastas espec\u00edficas podem ser atribu\u00eddas a um dispositivo, clicando-as na p\u00e1gina de Dispositivos.",
+ "ButtonInviteUser": "Convidar Usu\u00e1rio",
"LabelCustomDeviceDisplayName": "Nome para exibi\u00e7\u00e3o:",
"LabelCustomDeviceDisplayNameHelp": "Forne\u00e7a um nome para exibi\u00e7\u00e3o ou deixe em branco para usar o nome informado pelo dispositivo.",
"HeaderInviteUser": "Convidar Usu\u00e1rio",
- "LabelConnectGuestUserNameHelp": "Este \u00e9 o nome de usu\u00e1rio que seu amigo usa para entrar no website do Emby, ou seu endere\u00e7o de email.",
"HeaderInviteUserHelp": "Compartilhar sua m\u00eddia com amigos nunca foi t\u00e3o f\u00e1cil com o Emby Connect.",
"ButtonSendInvitation": "Enviar convite",
- "HeaderSignInWithConnect": "Entrar no Emby Connect",
"HeaderGuests": "Convidados",
"HeaderLocalUsers": "Usu\u00e1rios Locais",
"HeaderPendingInvitations": "Convites pendentes",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Dias da semana",
"OptionWeekends": "Fins-de-semana",
"MessageProfileInfoSynced": "A informa\u00e7\u00e3o do perfil do usu\u00e1rio foi sincronizada com o Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Opcional: Associe sua conta Emby",
"ButtonTrailerReel": "Carrossel de trailers",
"HeaderTrailerReel": "Carrossel de Trailers",
"OptionPlayUnwatchedTrailersOnly": "Reproduzir apenas trailers n\u00e3o assistidos",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "Nenhum trailer encontrado. Instale o canal Trailer para melhorar sua experi\u00eancia com filmes, adicionando uma biblioteca de trailers da internet.",
"HeaderNewUsers": "Novos Usu\u00e1rios",
"ButtonSignUp": "Entrar",
+ "LabelConnectGuestUserName": "Seu nome de usu\u00e1rio ou endere\u00e7o de email no Emby:",
+ "LabelConnectGuestUserNameHelp": "Este \u00e9 o nome de usu\u00e1rio que seu amigo usa para entrar no website do Emby, ou seu endere\u00e7o de email.",
"ButtonForgotPassword": "Esqueci a senha",
"OptionDisableUserPreferences": "Desativar acesso \u00e0s prefer\u00eancias do usu\u00e1rio.",
"OptionDisableUserPreferencesHelp": "Se ativado, apenas administradores poder\u00e3o configurar imagens do perfil do usu\u00e1rio, senhas e prefer\u00eancias de idioma.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Compartilhar Pastas de M\u00eddia",
"MessageGuestSharingPermissionsHelp": "A maioria dos recursos est\u00e3o inicialmente indispon\u00edveis para convidados, mas podem ser ativados conforme necess\u00e1rio.",
"HeaderInvitations": "Convites",
- "LabelForgotPasswordUsernameHelp": "Digite o nome de seu usu\u00e1rio, se lembrar.",
"HeaderForgotPassword": "Esqueci a Senha",
+ "LabelForgotPasswordUsernameHelp": "Digite o nome de seu usu\u00e1rio, se lembrar.",
"TitleForgotPassword": "Esqueci a Senha",
"TitlePasswordReset": "Redefini\u00e7\u00e3o de Senha",
"LabelPasswordRecoveryPinCode": "C\u00f3digo:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Classifica\u00e7\u00f5es Parentais",
"HeaderVideoTypes": "Tipos de V\u00eddeo",
"HeaderYears": "Anos",
+ "OptionPosterCard": "Cart\u00e3o da capa",
+ "OptionThumbCard": "Cart\u00e3o do \u00edcone",
+ "OptionAllowRemoteSharedDevices": "Permitir controle remoto de dispositivos compartilhados",
+ "OptionAllowRemoteSharedDevicesHelp": "Dispositivos dlna s\u00e3o considerados compartilhados at\u00e9 que um usu\u00e1rio comece a control\u00e1-lo.",
+ "HeaderRemoteControl": "Controle Remoto",
+ "ViewTypeMusicGenres": "G\u00eaneros",
+ "ViewTypeMusicArtists": "Artistas",
+ "HeaderSignInWithConnect": "Entrar no Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Documenta\u00e7\u00e3o da Api",
+ "LabelDeveloperResources": "Recursos do Desenvolvedor",
"HeaderAddTag": "Adicionar Tag",
- "HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o ou informa\u00e7\u00e3o n\u00e3o reconhecida:",
- "LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Informa\u00e7\u00e3o do Servidor",
"LabelEnableSingleImageInDidlLimit": "Limitar a uma imagem incorporada",
"LabelEnableSingleImageInDidlLimitHelp": "Alguns dispositivos n\u00e3o interpretar\u00e3o apropriadamente se m\u00faltiplas imagens estiverem incorporadas dentro do Didl.",
"TabActivity": "Atividade",
"TitleSync": "Sinc",
+ "HeaderSettings": "Ajustes",
"OptionAllowSyncContent": "Permitir Sincroniza\u00e7\u00e3o",
- "OptionAllowContentDownloading": "Permitir download de m\u00eddia",
+ "FolderTypeInherit": "Herdar",
+ "LabelContentType": "Tipo de conte\u00fado:",
"NameSeasonUnknown": "Temporada Desconhecida",
"NameSeasonNumber": "Temporada {0}",
"LabelNewUserNameHelp": "Nomes de usu\u00e1rios podem conter letras (a-z), n\u00fameros (0-9), tra\u00e7os (-), sublinhados (_), ap\u00f3strofes (') e pontos (.)",
+ "ButtonHelp": "Ajuda",
+ "TabAccess": "Acesso",
+ "HeaderDeviceAccess": "Acesso ao Dispositivo",
+ "OptionEnableAccessFromAllDevices": "Ativar o acesso de todos os dispositivos",
+ "DeviceAccessHelp": "Isto apenas aplica para dispositivos que podem ser identificados como \u00fanicos e n\u00e3o evitar\u00e3o o acesso do navegador. Filtrar o acesso ao dispositivo do usu\u00e1rio evitar\u00e1 que sejam usados novos dispositivos at\u00e9 que sejam aprovados aqui.",
+ "ButtonQuickStartGuide": "Guia r\u00e1pido",
+ "HeaderSyncJobInfo": "Tarefa de Sincroniza\u00e7\u00e3o",
"TabJobs": "Tarefas",
"TabSyncJobs": "Tarefas de Sincroniza\u00e7\u00e3o",
+ "HeaderTermsOfService": "Termos de Servi\u00e7o do Emby",
+ "MessagePleaseAcceptTermsOfService": "Por favor, aceite os termos de servi\u00e7o e pol\u00edtica de privacidade antes de continuar.",
+ "OptionIAcceptTermsOfService": "Aceito os termos de servi\u00e7o",
+ "ButtonPrivacyPolicy": "Pol\u00edtica de privacidade",
+ "ButtonTermsOfService": "Termos de Servi\u00e7o",
+ "OptionHideUserFromLoginHelp": "\u00datil para contas de administrador privadas ou ocultas. O usu\u00e1rio necessitar\u00e1 entrar manualmente, digitando seu nome de usu\u00e1rio e senha.",
+ "LabelEnterConnectUserName": "Nome de usu\u00e1rio ou e-mail:",
+ "LabelEnterConnectUserNameHelp": "Este \u00e9 o nome do usu\u00e1rio ou email da sua conta online do Emby.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detectar arquivos compactados como m\u00eddia",
+ "OptionDetectArchiveFilesAsMediaHelp": "Se ativado, arquivos com extens\u00f5es .rar e .zip ser\u00e3o detectados como arquivos de m\u00eddia.",
+ "ButtonDonate": "Doar",
+ "HeaderOptions": "Op\u00e7\u00f5es",
+ "HeaderIdentificationResult": "Resultado da Identifica\u00e7\u00e3o",
+ "OptionEnableAccessToAllChannels": "Ativar o acesso a todos os canais",
+ "LabelAutomaticUpdates": "Ativar atualiza\u00e7\u00f5es autom\u00e1ticas",
+ "LabelFanartApiKey": "Chave de api pessoal:",
+ "LabelFanartApiKeyHelp": "Solicita\u00e7\u00f5es para fanart sem uma chave de API pessoal retornar\u00e3o resultados que foram aprovados h\u00e1 mais de 7 dias atr\u00e1s. Com uma chave de API pessoal isso diminui para 48 horas e se voc\u00ea for um membro VIP da fanart, isso diminuir\u00e1 para 10 minutos.",
+ "HeaderDeveloperOptions": "Op\u00e7\u00f5es de Desenvolvedor",
+ "OptionEnableWebClientResponseCache": "Ativar o cache de resposta do client web",
+ "OptionDisableForDevelopmentHelp": "Configure esta op\u00e7\u00e3o de acordo ao prop\u00f3sito de desenvolvimento do cliente web",
+ "OptionEnableWebClientResourceMinification": "Ativar a minimiza\u00e7\u00e3o de recursos do cliente web",
+ "LabelDashboardSourcePath": "Caminho fonte do cliente web:",
+ "LabelDashboardSourcePathHelp": "Se executar o servidor a partir do c\u00f3digo, especifique o caminho para a pasta da interface do painel. Todos os arquivos do cliente web ser\u00e3o usados nesta localiza\u00e7\u00e3o.",
+ "HeaderPaths": "Caminhos",
+ "TitleNotifications": "Notifica\u00e7\u00f5es",
+ "ButtonDonateWithPayPal": "Doe atrav\u00e9s do PayPal",
+ "TitleScheduledTasks": "Tarefas Agendadas",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "N\u00famero da porta p\u00fablica de http:",
+ "LabelPublicHttpPortHelp": "O n\u00famero da porta p\u00fablica que dever\u00e1 ser mapeada para a porta local de http.",
+ "LabelPublicHttpsPort": "N\u00famero da porta p\u00fablica de https:",
+ "LabelPublicHttpsPortHelp": "O n\u00famero da porta p\u00fablica que dever\u00e1 ser mapeada para a porta local de https.",
+ "LabelEnableHttps": "Reportar https como um endere\u00e7o externo",
+ "LabelEnableHttpsHelp": "Se ativado, o servidor ir\u00e1 reportar uma url https para os clientes como um endere\u00e7o externo.",
+ "LabelHttpsPort": "N\u00famero da porta local de https:",
+ "LabelHttpsPortHelp": "O n\u00famero da porta tcp que o servidor https do Emby deveria se conectar.",
+ "TabHosting": "Hospedagem",
+ "LabelCustomCss": "Css personalizado:",
+ "LabelCustomCssHelp": "Aplique o seu css personalizado para a interface web",
+ "ButtonConvertMedia": "Converter m\u00eddia",
+ "ButtonOrganize": "Organizar",
+ "ButtonJoinTheDevelopmentTeam": "Junte-se ao Time de Desenvolvimento",
+ "OptionEnableAccessToAllLibraries": "Ativar o acesso a todas as bibliotecas",
+ "LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
+ "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. M\u00eddias convertidas criadas durante o processo de sincroniza\u00e7\u00e3o ser\u00e3o aqui armazenadas.",
+ "LabelCustomCertificatePath": "Caminho do certificado personalizado:",
+ "LabelCustomCertificatePathHelp": "Forne\u00e7a seu pr\u00f3prio arquivo .pfx do certificado ssl. Se omitido, o servidor criar\u00e1 um certificado auto-assinado.",
+ "LabelDisplayCollectionsViewHelp": "Esta op\u00e7\u00e3o criar\u00e1 uma visualiza\u00e7\u00e3o separada para exibir cole\u00e7\u00f5es criadas ou acessadas por voc\u00ea. Para criar uma cole\u00e7\u00e3o, clique com o bot\u00e3o direito ou toque e segure qualquer filme e selecione 'Adicionar \u00e0 Cole\u00e7\u00e3o'.",
+ "HeaderSyncRequiresSupporterMembership": "Sincroniza\u00e7\u00e3o Requer uma Ades\u00e3o de Colaborador",
+ "HeaderEnjoyDayTrial": "Aproveite um per\u00edodo de 14 dias gr\u00e1tis para testes",
+ "CategorySync": "Sincroniza\u00e7\u00e3o",
+ "RegisterWithPayPal": "Registrar com PayPal",
+ "NotificationOptionCameraImageUploaded": "Imagem da c\u00e2mera carregada",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "C\u00f3digo de Pin Facil",
+ "LabelEasyPinCode": "C\u00f3digo de pin f\u00e1cil:",
+ "EasyPasswordHelp": "Seu c\u00f3digo pin f\u00e1cil \u00e9 usado para acesso off-line com apps suportadas pelo Emby e pode ser usado para acesso f\u00e1cil dentro da rede.",
+ "LabelInNetworkSignInWithEasyPassword": "Ativar acesso dentro da rede com meu c\u00f3digo de pin f\u00e1cil",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "Se ativado, voc\u00ea poder\u00e1 usar um c\u00f3digo pin f\u00e1cil para entrar nas apps do Emby dentro de sua rede. Sua senha normal s\u00f3 ser\u00e1 necess\u00e1ria fora de sua casa. Se o c\u00f3digo pin for deixado em branco, n\u00e3o ser\u00e1 necess\u00e1ria uma senha dentro de sua rede dom\u00e9stica.",
+ "ButtonResetEasyPassword": "Redefinir c\u00f3digo de pin f\u00e1cil",
+ "OptionAllowContentDownloading": "Permitir download de m\u00eddia",
+ "LabelBlockContentWithTags": "Bloquear conte\u00fado com tags:",
"LabelTagFilterMode": "Modo:",
"LabelTagFilterAllowModeHelp": "Se permitidas, as tags ser\u00e3o usadas como parte de uma estrutura de pastas agrupadas. Conte\u00fado com tags necessitar\u00e1 que as pastas superiores tamb\u00e9m tenham tags.",
+ "UserDownloadingItemWithValues": "{0} est\u00e1 fazendo download de {1}",
+ "LabelPinCode": "C\u00f3digo Pin:",
+ "ButtonExit": "Sair",
+ "HeaderGrownupsOnly": "Adultos Apenas!",
+ "DividerOr": "-- ou --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Para acessar, por favor digite seu c\u00f3digo pin f\u00e1cil",
+ "KidsModeAdultInstruction": "Clique no \u00edcone de bloqueio no canto inferior direito para configurar ou deixar o modo infantil. Seu c\u00f3digo pin ser\u00e1 necess\u00e1rio.",
+ "ButtonConfigurePinCode": "Configurar c\u00f3digo pin",
+ "HeaderAdultsReadHere": "Adultos Leiam Aqui!",
+ "LabelEnableEnhancedMovies": "Ativar exibi\u00e7\u00f5es de filme avan\u00e7adas",
+ "LabelEnableEnhancedMoviesHelp": "Quando ativado, os filmes ser\u00e3o exibidos como pastas para incluir trailers, extras, elenco & equipe e outros conte\u00fados relacionados.",
+ "NotificationOptionUserLockedOut": "Usu\u00e1rio bloqueado",
+ "OptionIcon": "\u00cdcone",
+ "UserLockedOutWithName": "Usu\u00e1rio {0} foi bloqueado",
"HeaderThisUserIsCurrentlyDisabled": "Este usu\u00e1rio est\u00e1 desativado atualmente",
"MessageReenableUser": "Veja abaixo para reativar",
+ "LabelTimeLimitHours": "Limite de tempo (horas):",
+ "HeaderSendNotificationHelp": "As notifica\u00e7\u00f5es s\u00e3o entregues na caixa de entrada do Emby. Op\u00e7\u00f5es adicionais podem ser instaladas na guia Servi\u00e7os.",
+ "HeaderInstalledServices": "Servi\u00e7os Instalados",
+ "HeaderAvailableServices": "Servi\u00e7os Dispon\u00edveis",
+ "MessageNoServicesInstalled": "N\u00e3o existem servi\u00e7os instalados atualmente.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Servi\u00e7os",
+ "ViewTypePlaylists": "Listas de Reprodu\u00e7\u00e3o",
+ "LabelAlbumArtists": "Artistas do \u00c1lbum:",
"LabelEnableInternetMetadataForTvPrograms": "Fazer download dos metadados da internet para:",
"OptionTVMovies": "Filmes da TV",
"HeaderUpcomingMovies": "Filmes Por Estrear",
- "HeaderUpcomingSports": "Esportes Por Estrear",
"HeaderUpcomingPrograms": "Programas Por Estrear",
"LabelShowLibraryTileNames": "Mostrar os nomes dos mosaicos da biblioteca",
"LabelShowLibraryTileNamesHelp": "Determina se os t\u00edtulos ser\u00e3o exibidos embaixo dos mosaicos da biblioteca na p\u00e1gina in\u00edcio",
+ "HeaderSupporterBenefits": "Benef\u00edcios do Colaborador",
+ "HeaderAddUser": "Adicionar Usu\u00e1rio",
+ "LabelAddConnectSupporterHelp": "Para adicionar um usu\u00e1rio que n\u00e3o esteja listado, voc\u00ea precisar\u00e1 associar sua conta ao Emby Connect na sua p\u00e1gina de perfil.",
+ "TabPlaylist": "Lista de Reprodu\u00e7\u00e3o",
+ "LabelConfigureServer": "Configurar o Emby",
+ "WelcomeToProject": "Bem vindo ao Emby!",
+ "LinkedToEmbyConnect": "Associado ao Emby Connect",
+ "ProjectHasCommunity": "Emby tem uma comunidade crescente de usu\u00e1rios e contribuidores.",
+ "VisitProjectWebsite": "Visite o Web Site do Emby",
+ "VisitProjectWebsiteLong": "Visite o web site do Emby para obter as \u00faltimas novidades e se manter informado com o blog dos desenvolvedores.",
+ "HeaderHelpImproveProject": "Ajude a Melhorar o Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Torne-se um Colaborador do Emby",
+ "ButtonLearnMoreAboutEmbyConnect": "Saiba mais sobre o Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Opcional: Associe sua conta Emby",
"OptionEnableTranscodingThrottle": "Ativar controlador de fluxo",
"OptionEnableTranscodingThrottleHelp": "O controlador de fluxo ajustar\u00e1 automaticamente a velocidade de transcodifica\u00e7\u00e3o para minimizar o uso da cpu no servidor durante a reprodu\u00e7\u00e3o.",
+ "OptionHideWatchedContentFromLatestMedia": "Ocultar conte\u00fado j\u00e1 assistido das m\u00eddias recentes",
+ "TabSuggestions": "Sugest\u00f5es",
+ "PlaceholderUsername": "Nome do usu\u00e1rio",
+ "HeaderSync": "Sincroniza\u00e7\u00e3o",
+ "HeaderUpcomingSports": "Esportes Por Estrear",
"LabelUploadSpeedLimit": "Limite de velocidade de upload (Mbps):",
"OptionAllowSyncTranscoding": "Permitir sincroniza\u00e7\u00e3o que necessite de transcodifica\u00e7\u00e3o",
"HeaderPlayback": "Reprodu\u00e7\u00e3o de M\u00eddia",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Os usu\u00e1rios receber\u00e3o mensagens de erro amig\u00e1veis quando o conte\u00fado n\u00e3o for reproduz\u00edvel, baseado nas pol\u00edticas.",
"OptionAllowAudioPlaybackTranscoding": "Permitir reprodu\u00e7\u00e3o de \u00e1udio que necessite de transcodifica\u00e7\u00e3o",
"OptionAllowVideoPlaybackTranscoding": "Permitir reprodu\u00e7\u00e3o de v\u00eddeo que necessite de transcodifica\u00e7\u00e3o",
- "OptionAllowMediaPlaybackTranscodingHelp": "Os usu\u00e1rios receber\u00e3o mensagens de erro amig\u00e1veis quando o conte\u00fado n\u00e3o for reproduz\u00edvel, baseado nas pol\u00edticas.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Limite de taxa de bits para streaming da Internet (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "Um limite opcional da taxa de bits de streaming para todos os clientes fora da rede. Esta op\u00e7\u00e3o \u00e9 \u00fatil para evitar que os clientes demandem uma taxa de bits maior que a permitida pela sua conex\u00e3o.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limite o n\u00famero de n\u00facleos da CPU que ser\u00e3o usados durante a convers\u00e3o na sincroniza\u00e7\u00e3o",
"OptionEnableFullSpeedConversion": "Ativar convers\u00e3o de alta velocidade",
"OptionEnableFullSpeedConversionHelp": "Por padr\u00e3o, a convers\u00e3o na sincroniza\u00e7\u00e3o \u00e9 executada em uma velocidade baixa para minimizar o consumo de recursos.",
+ "HeaderRepeatingOptions": "Op\u00e7\u00f5es de Repeti\u00e7\u00e3o",
+ "OptionMyMediaButtons": "Minha m\u00eddia (bot\u00f5es)",
+ "OptionMyMedia": "Minha m\u00eddia",
+ "OptionMyMediaSmall": "Minha m\u00eddia (pequeno)",
"HeaderPlaylists": "Listas de reprodu\u00e7\u00e3o",
+ "ViewTypeMusicPlaylists": "Listas de Reprodu\u00e7\u00e3o",
"HeaderViewStyles": "Visualizar Estilos",
"LabelSelectViewStyles": "Ativar apresenta\u00e7\u00f5es aprimoradas para:",
"LabelSelectViewStylesHelp": "Se ativada, as visualiza\u00e7\u00f5es ser\u00e3o feitas com metadados para oferecer categorias como Sugest\u00f5es, Recentes, G\u00eaneros e mais. Se desativada, elas ser\u00e3o exibidas como pastas simples.",
+ "ButtonSignInWithConnect": "Entrar no Emby Connect",
+ "HeaderNewServer": "Novo Servidor",
+ "LabelMaxChromecastBitrate": "Taxa de bits m\u00e1xima do Chromecast:",
+ "TabAppSettings": "Configura\u00e7\u00f5es da App",
"TabPhotos": "Fotos",
"TabVideos": "V\u00eddeos",
"HeaderWelcomeToEmby": "Bem vindo ao Emby",
"EmbyIntroMessage": "Com o Emby voc\u00ea pode facilmente fazer streaming de v\u00eddeos, m\u00fasicas e fotos do Servidor Emby para smartphones, tablets e outros dispositivos.",
"ButtonSkip": "Ignorar",
"TextConnectToServerManually": "Conectar ao servidor manualmente",
- "ButtonSignInWithConnect": "Entrar no Emby Connect",
"ButtonConnect": "Conectar",
"LabelServerHost": "Servidor:",
"LabelServerHostHelp": "192.168.1.100 ou https:\/\/meuservidor.com",
"LabelServerPort": "Porta:",
- "HeaderNewServer": "Novo Servidor",
"ButtonChangeServer": "Alterar Servidor",
"HeaderConnectToServer": "Conectar ao Servidor",
"OptionReportList": "Visualiza\u00e7\u00e3o de Lista",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Exportar",
"HeaderColumns": "Colunas",
"ButtonReset": "Redefinir",
+ "ButtonPurchase": "Comprar",
"OptionEnableExternalVideoPlayers": "Ativar reprodutores de v\u00eddeo externos",
+ "LabelNativeExternalPlayersHelp": "Exibir bot\u00f5es para reproduzir o conte\u00fado em reprodutores externos.",
+ "LabelEnableItemPreviews": "Ativar pr\u00e9-visualiza\u00e7\u00e3o de itens",
+ "LabelEnableItemPreviewsHelp": "Se ativada, pr\u00e9-visualiza\u00e7\u00f5es deslizantes ser\u00e3o exibidas ao clicar nos itens em certas telas.",
"ButtonUnlockGuide": "Desbloquear Guia",
+ "ButtonManageServer": "Gerenciar Servidor",
"LabelEnableFullScreen": "Ativar modo tela cheia",
"LabelEnableChromecastAc3Passthrough": "Ativar a assagem direta de AC3 para o Chromecast",
- "OptionSyncToSDCard": "Sincronizado para um cart\u00e3o SD externo",
+ "LabelSyncPath": "Caminho para conte\u00fado sincronizado:",
"LabelEmail": "Email:",
"LabelUsername": "Nome do Usu\u00e1rio:",
"HeaderSignUp": "Inscrever-se",
"LabelPasswordConfirm": "Senha (confirmar):",
"ButtonAddServer": "Adicionar Servidor",
+ "ButtonShare": "Compartilhar",
+ "OptionAllowLinkSharing": "Permitir compartilhamento com m\u00eddia social",
+ "OptionAllowLinkSharingHelp": "Apenas p\u00e1ginas web que contenham informa\u00e7\u00f5es de m\u00eddia ser\u00e3o compartilhadas. Arquivos de m\u00eddia nunca ser\u00e3o compartilhados publicamente. Os compartilhamentos ter\u00e3o um limite de tempo e expirar\u00e3o com base nas defini\u00e7\u00f5es de compartilhamento do seu servidor.",
+ "HeaderSharing": "Compartilhar",
"TabHomeScreen": "Tela In\u00edcio",
"HeaderDisplay": "Exibi\u00e7\u00e3o",
"HeaderNavigation": "Navega\u00e7\u00e3o",
"LegendTheseSettingsShared": "Estas defini\u00e7\u00f5es ser\u00e3o compartilhadas em todos os dispositivos",
+ "LabelRecordingPath": "Caminho da grava\u00e7\u00e3o:",
+ "LabelRecordingPathHelp": "Defina uma localiza\u00e7\u00e3o personalizada para salvar as grava\u00e7\u00f5es. Deixe em branco para usar o padr\u00e3o do servidor.",
"OptionEnableAutomaticServerUpdates": "Ativar as atualiza\u00e7\u00f5es autom\u00e1ticas do servidor",
"OptionOtherTrailers": "Incluir trailers de filmes antigos",
"HeaderOverview": "Sinopse",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Adicionar dispositivo",
"HeaderAddDevice": "Adicionar dispositivo",
"HeaderExternalServices": "Servi\u00e7os Externos",
- "LabelTunerIpAddress": "Endere\u00e7o IP do Sintonizador:",
"TabExternalServices": "Servi\u00e7os Externos",
"TabTuners": "Sintonizadores",
"HeaderGuideProviders": "Provedores de Guia",
"AddGuideProviderHelp": "Adicionar uma fonte para a informa\u00e7\u00e3o do Guia da TV",
"LabelZipCode": "CEP:",
- "GuideProviderSelectListings": "Selecionar Listas",
- "GuideProviderLogin": "Login",
"LabelLineup": "Programa\u00e7\u00e3o:",
"MessageTunerDeviceNotListed": "O seu sintonizador n\u00e3o est\u00e1 listado? Tente instalar um provedor de servi\u00e7o externo para mais op\u00e7\u00f5es de TV ao Vivo.",
+ "OptionSyncToSDCard": "Sincronizado para um cart\u00e3o SD externo",
+ "LabelTunerIpAddress": "Endere\u00e7o IP do Sintonizador:",
+ "GuideProviderSelectListings": "Selecionar Listas",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restringir a canais marcados como favoritos",
"ImportFavoriteChannelsHelp": "Se ativado, apenas canais que est\u00e3o marcados como favoritos no sintonizador ser\u00e3o importados.",
"ButtonRepeat": "Repetir",
- "LabelEnableThisTuner": "Ativar este sintonizador",
- "LabelEnableThisTunerHelp": "Desmarque para impedir a importa\u00e7\u00e3o de canais deste sintonizador.",
- "HeaderLocked": "Travado",
"HeaderUnidentified": "N\u00e3o-identificado",
"HeaderImagePrimary": "Principal",
"HeaderImageBackdrop": "Imagem de Fundo",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "Imagem do Usu\u00e1rio",
+ "LabelEnableThisTuner": "Ativar este sintonizador",
+ "LabelEnableThisTunerHelp": "Desmarque para impedir a importa\u00e7\u00e3o de canais deste sintonizador.",
+ "HeaderLocked": "Travado",
"ButtonDisplaySettings": "Ajustes de exibi\u00e7\u00e3o",
"ButtonHomeScreenSettings": "Ajustes de tela inicial",
"ButtonPlaybackSettings": "Ajustes de reprodu\u00e7\u00e3o",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Selecione o n\u00famero m\u00e1ximo de threads a ser usado quando transcodificar. Reduzir o n\u00famero de threads ir\u00e1 diminuir o uso da CPU, mas pode n\u00e3o converter r\u00e1pido o suficiente para uma experi\u00eancia de reprodu\u00e7\u00e3o suave.",
"OptionMax": "M\u00e1x",
"HeaderEmbyGuide": "Guia do Emby",
- "LabelSyncPath": "Caminho para conte\u00fado sincronizado:",
"OptionSyncOnlyOnWifi": "Sincronizar apenas no Wifi",
+ "OptionDisplayChannelsInline": "Exibir canais em linha dentro de minhas visualiza\u00e7\u00f5es",
+ "OptionDisplayChannelsInlineHelp": "Se ativado, os canais ser\u00e3o exibidos diretamente em outras visualiza\u00e7\u00f5es. Se desativado, eles ser\u00e3o exibidos dentro de uma visualiza\u00e7\u00e3o separada de Canais.",
"OptionSyncLosslessAudioOriginal": "Sincronizar \u00e1udio lossless na qualidade original",
"HeaderMetadata": "Metadados",
"HeaderRecordingOptions": "Op\u00e7\u00f5es de Grava\u00e7\u00e3o",
- "ButtonShare": "Compartilhar",
"HeaderUpcomingForKids": "Em Breve para as Crian\u00e7as",
"HeaderSetupLiveTV": "Configura\u00e7\u00e3o da TV ao Vivo",
"LabelTunerType": "Tipo do sintonizador:",
"HelpMoreTunersCanBeAdded": "Mais sintonizadores podem ser adicionados posteriormente dentro da se\u00e7\u00e3o da TV ao Vivo.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Provedores de TV ao Vivo adicionais pode ser adicionados posteriormente dentro da se\u00e7\u00e3o TV ao Vivo.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "\u00c9 necess\u00e1ria uma ades\u00e3o ativa de Colaborador do Emby para criar uma grava\u00e7\u00e3o automatizada de s\u00e9ries.",
"HeaderSetupTVGuide": "Configura\u00e7\u00e3o do Guia da TV",
"LabelDataProvider": "Provedor de dados:",
"OptionSendRecordingsToAutoOrganize": "Ativar Auto-Organizar para novas grava\u00e7\u00f5es",
"OptionSendRecordingsToAutoOrganizeHelp": "Novas grava\u00e7\u00f5es ser\u00e3o enviadas para o recurso Auto-Organizar e importadas para sua biblioteca de m\u00eddias.",
"HeaderDefaultPadding": "Padding Padr\u00e3o",
- "HeaderSubtitles": "Legendas",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Provedores de TV ao Vivo adicionais pode ser adicionados posteriormente dentro da se\u00e7\u00e3o TV ao Vivo.",
"HeaderVideos": "V\u00eddeos",
"OptionEnableVideoFrameAnalysis": "Habilitar an\u00e1lise de v\u00eddeo quadro a quadro",
"OptionEnableVideoFrameAnalysisHelp": "Extrair informa\u00e7\u00f5es detalhadas sobre v\u00eddeos que podem ser usadas para tornar a transcodifica\u00e7\u00e3o mais eficiente. Os exames da biblioteca demorar\u00e3o mais tempo.",
"LabelVideoFrameAnalysisLimit": "Habilitar an\u00e1lise quadro a quadro apenas para v\u00eddeos menores que:",
+ "HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o ou informa\u00e7\u00e3o n\u00e3o reconhecida:",
"LabelHardwareVideoDecoder": "Decodificador de v\u00eddeo de hardware:",
- "LabelHardwareVideoDecoderHelp": "Available on supported systems only."
+ "LabelHardwareVideoDecoderHelp": "Dispon\u00edvel apenas em sistemas suportados."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/pt-PT.json b/dashboard-ui/strings/html/pt-PT.json
index b2716f6bdf..40979286f8 100644
--- a/dashboard-ui/strings/html/pt-PT.json
+++ b/dashboard-ui/strings/html/pt-PT.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Sair",
"LabelVisitCommunity": "Visitar a Comunidade",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Padr\u00e3o",
- "LabelApiDocumentation": "Documenta\u00e7\u00e3o da API",
- "LabelDeveloperResources": "Recursos do Programador",
"LabelBrowseLibrary": "Navegar pela Biblioteca",
- "LabelConfigureServer": "Configurar o Emby",
"LabelOpenLibraryViewer": "Abrir Visualizador da Biblioteca",
"LabelRestartServer": "Reiniciar Servidor",
"LabelShowLogWindow": "Mostrar Janela de Log",
"LabelPrevious": "Anterior",
"LabelFinish": "Terminar",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Seguinte",
"LabelYoureDone": "Concluiu!",
- "ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Bem-vindo ao Emby!",
+ "OptionRelease": "Lan\u00e7amento Oficial",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Inst\u00e1vel)",
"ThisWizardWillGuideYou": "Este assistente ir\u00e1 ajud\u00e1-lo durante o processo de configura\u00e7\u00e3o. Para come\u00e7ar, selecione o idioma.",
"TellUsAboutYourself": "Fale-nos sobre si",
- "ButtonQuickStartGuide": "Guia r\u00e1pido",
"LabelYourFirstName": "O seu primeiro nome:",
"MoreUsersCanBeAddedLater": "\u00c9 poss\u00edvel adicionar utilizadores mais tarde no Painel Principal",
"UserProfilesIntro": "O Emby inclui suporte nativo de perfis de utilizadores, permitindo que cada utilizador tenha as suas configura\u00e7\u00f5es de visualiza\u00e7\u00e3o, estado da reprodu\u00e7\u00e3o e controlos parentais.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extrair imagens de cap\u00edtulos permitir\u00e1 aos clientes exibir menus gr\u00e1ficos de sele\u00e7\u00e3o de cenas. O processo pode ser lento, ocasionar uso intensivo do cpu e pode exigir bastante espa\u00e7o em disco. Ser\u00e1 executada como uma tarefa noturna, embora seja configur\u00e1vel na \u00e1rea de tarefas agendadas. N\u00e3o \u00e9 recomendado executar esta tarefa durante as horas de maior uso.",
"LabelEnableAutomaticPortMapping": "Activar mapeamento autom\u00e1tico de portas",
"LabelEnableAutomaticPortMappingHelp": "UPnP permite configurar automaticamente o router, para um acesso remoto mais facilitado. Pode n\u00e3o suportar todos os modelos de routers.",
- "HeaderTermsOfService": "Termos de Servi\u00e7o do Emby",
- "MessagePleaseAcceptTermsOfService": "Por favor, aceite os termos de servi\u00e7o e pol\u00edtica de privacidade antes de continuar.",
- "OptionIAcceptTermsOfService": "Aceito os termos de servi\u00e7o",
- "ButtonPrivacyPolicy": "Pol\u00edtica de privacidade",
- "ButtonTermsOfService": "Termos de Servi\u00e7o",
- "HeaderDeveloperOptions": "Op\u00e7\u00f5es do Programador",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Caminho da fonte do cliente web:",
- "LabelDashboardSourcePathHelp": "Se correr o servidor a partir do c\u00f3digo fonte, especifique o caminho da pasta dashboard-ui. Todos os ficheiros do cliente web ser\u00e3o usados a partir desta localiza\u00e7\u00e3o.",
- "ButtonConvertMedia": "Converter ficheiro multim\u00e9dia",
- "ButtonOrganize": "Organizar",
- "LinkedToEmbyConnect": "Associado ao Emby Connect",
- "HeaderSupporterBenefits": "Benef\u00edcios do Apoiante",
- "HeaderAddUser": "Adicionar Utilizador",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "C\u00f3digo PIN:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sincroniza\u00e7\u00e3o",
"ButtonOk": "Ok",
"ButtonCancel": "Cancelar",
- "ButtonExit": "Sair",
- "ButtonNew": "Novo",
- "HeaderTV": "TV",
- "HeaderAudio": "\u00c1udio",
- "HeaderVideo": "V\u00eddeo",
- "HeaderPaths": "Localiza\u00e7\u00f5es",
- "CategorySync": "Sincroniza\u00e7\u00e3o",
- "TabPlaylist": "Lista de Reprodu\u00e7\u00e3o",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Adultos Apenas!",
- "DividerOr": "-- ou --",
- "HeaderInstalledServices": "Servi\u00e7os Instalados",
- "HeaderAvailableServices": "Servi\u00e7os Dispon\u00edveis",
- "MessageNoServicesInstalled": "N\u00e3o existem servi\u00e7os instalados",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Registar com PayPal",
- "HeaderSyncRequiresSupporterMembership": "A sincroniza\u00e7\u00e3o necessita de uma conta de Apoiante",
- "HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia",
- "LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
- "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. Multim\u00e9dia convertida, criada durante o processo de sincroniza\u00e7\u00e3o, ser\u00e1 aqui armazenada.",
- "LabelCustomCertificatePath": "Localiza\u00e7\u00e3o do certificado personalizado:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Doe com o PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detetar ficheiros como multim\u00e9dia",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Nome de utilizador ou email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Tarefa de Sincroniza\u00e7\u00e3o",
- "OptionReleaseDate": "Data de Lan\u00e7amento:",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Falhou",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Faixas de \u00e1udio",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "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",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Tipo de conte\u00fado:",
- "TitleScheduledTasks": "Tarefas Agendadas",
"HeaderSetupLibrary": "Configurar biblioteca",
"ButtonAddMediaFolder": "Adicionar pasta de media",
"LabelFolderType": "Tipo de pasta",
"ReferToMediaLibraryWiki": "Consulte a wiki",
"LabelCountry": "Pa\u00eds:",
"LabelLanguage": "Idioma:",
- "LabelTimeLimitHours": "Limite de tempo (horas):",
- "ButtonJoinTheDevelopmentTeam": "Junta-te \u00e0 Equipa de Desenvolvimento!",
"HeaderPreferredMetadataLanguage": "Idioma preferido para metadados",
"LabelSaveLocalMetadata": "Guardar imagens e metadados nas pastas multim\u00e9dia",
"LabelSaveLocalMetadataHelp": "Guardar imagens e metadados diretamente nas pastas multim\u00e9dia, vai coloc\u00e1-los num local de f\u00e1cil acesso para poderem ser editados facilmente.",
@@ -130,37 +47,16 @@
"TabPreferences": "Prefer\u00eancias",
"TabPassword": "Senha",
"TabLibraryAccess": "Aceder \u00e0 Biblioteca",
- "TabAccess": "Acesso",
"TabImage": "Imagem",
"TabProfile": "Perfil",
- "TabMetadata": "Metadados",
- "TabImages": "Imagens",
- "TabNotifications": "Notifica\u00e7\u00f5es",
- "TabCollectionTitles": "T\u00edtulos",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Ativar acesso de todos os dispositivos",
- "OptionEnableAccessToAllChannels": "Permitir acesso a todos os canais",
- "OptionEnableAccessToAllLibraries": "Permitir acesso a todas as bibliotecas",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Mostrar epis\u00f3dios em falta dentro das temporadas",
"LabelUnairedMissingEpisodesWithinSeasons": "Mostrar epis\u00f3dios por estrear dentro das temporadas",
"HeaderVideoPlaybackSettings": "Configura\u00e7\u00f5es de Reprodu\u00e7\u00e3o de V\u00eddeo",
- "HeaderPlaybackSettings": "Op\u00e7\u00f5es de Reprodu\u00e7\u00e3o",
"LabelAudioLanguagePreference": "Prefer\u00eancias de Idioma de Audio:",
"LabelSubtitleLanguagePreference": "Prefer\u00eancia de Idioma de Legenda:",
- "OptionDefaultSubtitles": "Padr\u00e3o",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Reproduzir sempre legendas",
- "OptionNoSubtitles": "Sem legendas",
- "OptionDefaultSubtitlesHelp": "As legendas que forem iguais ao idioma preferido ser\u00e3o carregadas quando o \u00e1udio estiver num idioma estrangeiro.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "As legendas que forem iguais ao idioma preferido ser\u00e3o carregadas independente do idioma do \u00e1udio.",
- "OptionNoSubtitlesHelp": "As legendas n\u00e3o ser\u00e3o carregadas por padr\u00e3o.",
"TabProfiles": "Perfis",
"TabSecurity": "Seguran\u00e7a",
"ButtonAddUser": "Adicionar Utilizador",
- "ButtonAddLocalUser": "Adicionar Utilizador Local",
- "ButtonInviteUser": "Convidar Utilizador",
"ButtonSave": "Guardar",
"ButtonResetPassword": "Redefinir Senha",
"LabelNewPassword": "Nova senha:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Controlo Parental m\u00e1ximo permitido:",
"MaxParentalRatingHelp": "Conte\u00fado com classifica\u00e7\u00e3o mais elevada ser\u00e1 escondida deste utilizador.",
"LibraryAccessHelp": "Escolha as pastas de media a partilha com este utilizador. Os Administradores poder\u00e3o editar todas as pastas, usando o Gestor de Metadados.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Apagar imagem",
- "LabelSelectUsers": "Selecionar utilizadores:",
"ButtonUpload": "Carregar",
"HeaderUploadNewImage": "Carregar Nova Imagem",
"LabelDropImageHere": "Largar a imagem aqui",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nada aqui.",
"MessagePleaseEnsureInternetMetadata": "Certifique-se que a transfer\u00eancia de metadados da internet est\u00e1 activa.",
"TabSuggested": "Sugest\u00f5es",
- "TabSuggestions": "Sugest\u00f5es",
"TabLatest": "Mais recente",
"TabUpcoming": "Pr\u00f3ximos",
"TabShows": "S\u00e9ries",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascendente",
"OptionDescending": "Descendente",
"OptionRuntime": "Dura\u00e7\u00e3o",
+ "OptionReleaseDate": "Data de Lan\u00e7amento:",
"OptionPlayCount": "N.\u00ba Visualiza\u00e7\u00f5es",
"OptionDatePlayed": "Data de reprodu\u00e7\u00e3o",
"OptionDateAdded": "Data de adi\u00e7\u00e3o",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nome da pista",
"OptionCommunityRating": "Classifica\u00e7\u00e3o da Comunidade",
"OptionNameSort": "Nome",
- "OptionFolderSort": "Pastas",
"OptionBudget": "Or\u00e7amento",
"OptionRevenue": "Receita",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Imagem de fundo",
"OptionTimeline": "Linha de tempo",
- "OptionThumb": "Miniatura",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Classifica\u00e7\u00e3o dos cr\u00edticos",
"OptionVideoBitrate": "Qualidade do v\u00eddeo",
"OptionResumable": "Retom\u00e1vel",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Tarefas Agendadas",
"TabMyPlugins": "As minhas extens\u00f5es",
"TabCatalog": "Cat\u00e1logo",
- "TitlePlugins": "Extens\u00f5es",
"HeaderAutomaticUpdates": "Atualiza\u00e7\u00f5es autom\u00e1ticas",
"HeaderNowPlaying": "A reproduzir",
"HeaderLatestAlbums": "\u00daltimos \u00c1lbuns",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Reproduzido recentemente",
"HeaderFrequentlyPlayed": "Reproduzido frequentemente",
"DevBuildWarning": "As vers\u00f5es Dev s\u00e3o a tecnologia de ponta. S\u00e3o lan\u00e7adas frequentemente e n\u00e3o foram testadas. A aplica\u00e7\u00e3o pode bloquear e n\u00e3o funcionar de todo.",
+ "OptionThumb": "Miniatura",
+ "OptionBanner": "Banner",
"LabelVideoType": "Tipo de V\u00eddeo:",
"OptionBluray": "Bluray",
"OptionDvd": "DVD",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Caracter\u00edsticas:",
- "LabelService": "Servi\u00e7o:",
- "LabelStatus": "Estado:",
- "LabelVersion": "Vers\u00e3o:",
- "LabelLastResult": "\u00daltimo resultado:",
"OptionHasSubtitles": "Legendas",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "M\u00fasica de Tema",
@@ -268,8 +153,6 @@
"TabMovies": "Filmes",
"TabStudios": "Est\u00fadios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artistas:",
- "LabelArtistsHelp": "Separa m\u00faltiplas com ;",
"HeaderLatestMovies": "\u00daltimos Filmes",
"HeaderLatestTrailers": "\u00daltimos Trailers",
"OptionHasSpecialFeatures": "Extras",
@@ -290,32 +173,24 @@
"OptionFriday": "Sexta",
"OptionSaturday": "S\u00e1bado",
"HeaderManagement": "Gest\u00e3o",
- "LabelManagement": "Administra\u00e7\u00e3o:",
"OptionMissingImdbId": "Id do IMDb em falta",
"OptionMissingTvdbId": "iD do TheTVDB em falta",
"OptionMissingOverview": "Descri\u00e7\u00e3o em falta",
"OptionFileMetadataYearMismatch": "Anos do Ficheiro\/Metadados n\u00e3o coincidem",
"TabGeneral": "Geral",
"TitleSupport": "Suporte",
- "LabelSeasonNumber": "N\u00famero da temporada",
"TabLog": "Log",
- "LabelEpisodeNumber": "N\u00famero do epis\u00f3dio",
"TabAbout": "Acerca",
"TabSupporterKey": "Chave de Apoiante",
"TabBecomeSupporter": "Torne-se um Apoiante",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Procurar na Base de Conhecimento",
"VisitTheCommunity": "Visite a Comunidade",
- "VisitProjectWebsite": "Visite a p\u00e1gina web do Emby",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Ocultar este utilizador dos formul\u00e1rios de in\u00edcio de sess\u00e3o",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Desativar este utilizador",
"OptionDisableUserHelp": "Se desativado, o servidor n\u00e3o permite nenhuma conex\u00e3o deste utilizador. Conex\u00f5es existentes ser\u00e3o terminadas.",
"HeaderAdvancedControl": "Controlo Avan\u00e7ado",
"LabelName": "Nome:",
- "ButtonHelp": "Ajuda",
"OptionAllowUserToManageServer": "Permitir a este utilizador gerir o servidor",
"HeaderFeatureAccess": "Acesso a Caracter\u00edsticas",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Permitir controlo remoto de outros utilizadores",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Permitir partilha nas redes sociais",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Controlo Remoto",
"OptionMissingTmdbId": "Id Tmdb em falta",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Selecionar",
"ButtonGroupVersions": "Agrupar Vers\u00f5es",
"PismoMessage": "Usar o Prismo File Mount atrav\u00e9s de uma licen\u00e7a doada.",
- "TangibleSoftwareMessage": "A utilizar conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a doada.",
- "HeaderCredits": "Cr\u00e9ditos",
"PleaseSupportOtherProduces": "Por favor suporte outros produtos gratuitos que utilizamos:",
"VersionNumber": "Vers\u00e3o {0}",
"TabPaths": "Localiza\u00e7\u00f5es",
"TabServer": "Servidor",
"TabTranscoding": "Transcodifica\u00e7\u00e3o",
"TitleAdvanced": "Avan\u00e7ado",
- "OptionRelease": "Lan\u00e7amento Oficial",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Inst\u00e1vel)",
"LabelAllowServerAutoRestart": "Permitir ao servidor reiniciar automaticamente para aplicar as atualiza\u00e7\u00f5es",
"LabelAllowServerAutoRestartHelp": "O servidor ir\u00e1 reiniciar apenas durante per\u00edodos em que n\u00e3o esteja a ser usado, quando nenhum utilizador estiver ativo.",
"LabelEnableDebugLogging": "Ativar log de depura\u00e7\u00e3o",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Defina localiza\u00e7\u00f5es personalizadas. Deixe os campos em branco para usar os valores padr\u00e3o.",
"LabelCachePath": "Localiza\u00e7\u00e3o da cache:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Localiza\u00e7\u00e3o das imagens por nome:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Localiza\u00e7\u00e3o dos metadados:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Epis\u00f3dios",
"OptionOtherVideos": "Outros V\u00eddeos",
"TitleMetadata": "Metadados",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Ativar atualiza\u00e7\u00f5es autom\u00e1ticas do TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Ativar atualiza\u00e7\u00f5es autom\u00e1ticas do TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Scroll autom\u00e1tico",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "N\u00e3o s\u00e3o necess\u00e1rias senhas ao iniciar a sess\u00e3o a partir do localhost.",
"TabGuide": "Guia",
"TabChannels": "Canais",
- "TabCollections": "Cole\u00e7\u00f5es",
"HeaderChannels": "Canais",
"TabRecordings": "Grava\u00e7\u00f5es",
"TabScheduled": "Agendado",
"TabSeries": "S\u00e9ries",
- "TabFavorites": "Favoritos",
- "TabMyLibrary": "A minha Biblioteca",
"ButtonCancelRecording": "Cancelar Grava\u00e7\u00e3o",
"HeaderPrePostPadding": "Pr\u00e9\/P\u00f3s grava\u00e7\u00e3o extra",
"LabelPrePaddingMinutes": "Minutos pr\u00e9vios extra:",
@@ -416,13 +272,10 @@
"TabStatus": "Estado",
"TabSettings": "Configura\u00e7\u00f5es",
"ButtonRefreshGuideData": "Atualizar Dados do Guia",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Prioridade",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Gravar apenas novos epis\u00f3dios",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Dias",
"HeaderActiveRecordings": "Grava\u00e7\u00f5es ativas",
"HeaderLatestRecordings": "\u00daltimas Grava\u00e7\u00f5es",
@@ -431,17 +284,16 @@
"ButtonEdit": "Editar",
"ButtonRecord": "Gravar",
"ButtonDelete": "Remover",
- "ButtonRemove": "Remover",
"OptionRecordSeries": "Gravar S\u00e9rie",
"HeaderDetails": "Detalhes",
+ "OptionFolderSort": "Pastas",
+ "OptionBackdrop": "Imagem de fundo",
"TitleLiveTV": "TV ao Vivo",
"LabelNumberOfGuideDays": "N\u00famero de dias de informa\u00e7\u00e3o do guia para transferir:",
"LabelNumberOfGuideDaysHelp": "Transferir mais dias de informa\u00e7\u00e3o do guia permite agendar com maior anteced\u00eancia e ver mais listagens, no entanto ir\u00e1 levar mais tempo a transferir. Se optar que seja Autom\u00e1tico, ser\u00e1 escolhido baseado no n\u00famero de canais.",
"OptionAutomatic": "Autom\u00e1tico",
- "HeaderServices": "Servi\u00e7os",
"LiveTvPluginRequired": "Uma extens\u00e3o de um fornecedor de servi\u00e7o de TV ao Vivo \u00e9 necess\u00e1rio para continuar.",
"LiveTvPluginRequiredHelp": "Por favor instale uma das nossas extens\u00f5es dispon\u00edveis, como a Next Pvr ou ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Personalizar para o tipo de conte\u00fado:",
"OptionDownloadThumbImage": "Miniatura",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Principal",
"HeaderFetchImages": "Buscar Imagens:",
"HeaderImageSettings": "Op\u00e7\u00f5es da Imagem",
- "TabOther": "Outro",
"LabelMaxBackdropsPerItem": "N\u00famero m\u00e1ximo de imagens de fundo por item:",
"LabelMaxScreenshotsPerItem": "N\u00famero m\u00e1ximo de imagens de ecr\u00e3 por item:",
"LabelMinBackdropDownloadWidth": "Transferir Imagens de fundo com o tamanho m\u00ednimo:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Elenco e Equipa",
"HeaderAdditionalParts": "Partes Adicionais",
"ButtonSplitVersionsApart": "Separar Vers\u00f5es",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Em falta",
"LabelOffline": "Desconectado",
"PathSubstitutionHelp": "Substitui\u00e7\u00f5es de localiza\u00e7\u00e3o s\u00e3o usadas para mapear uma localiza\u00e7\u00e3o no servidor que possa ser acedido pelos clientes. Ao permitir o acesso dos clientes ao conte\u00fado multim\u00e9dia no servidor, permite-lhes reproduzir diretamente atrav\u00e9s da rede e evitar o uso de recursos do servidor para fazer stream ou transcodifica\u00e7\u00e3o.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "M\u00e1xima qualidade",
"OptionEnableDebugTranscodingLogging": "Ativar log de depura\u00e7\u00e3o da transcodifica\u00e7\u00e3o",
"OptionEnableDebugTranscodingLoggingHelp": "Ir\u00e1 criar ficheiros log muito grandes e s\u00f3 \u00e9 recomendado para ajudar na resolu\u00e7\u00e3o de problemas.",
+ "ButtonNew": "Novo",
+ "TabMetadata": "Metadados",
+ "TabImages": "Imagens",
+ "TabCollectionTitles": "T\u00edtulos",
+ "ButtonSearch": "Procurar",
+ "ButtonRemove": "Remover",
"EditCollectionItemsHelp": "Adicione ou remova qualquer filme, s\u00e9rie, \u00e1lbum, livro ou jogo que desejar agrupar dentro desta cole\u00e7\u00e3o.",
"HeaderAddTitles": "Adicional T\u00edtulos",
"LabelEnableDlnaPlayTo": "Ativar DLNA Play To",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Localiza\u00e7\u00f5es de Sistema",
"LinkCommunity": "Comunidade",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Documenta\u00e7\u00e3o da API",
"LabelFriendlyServerName": "Nome amig\u00e1vel do servidor:",
"LabelFriendlyServerNameHelp": "Ser\u00e1 usado este nome para identificar o servidor. Se n\u00e3o for preenchido, ser\u00e1 usado o nome do computador.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "A tradu\u00e7\u00e3o do Emby \u00e9 um projeto cont\u00ednuo.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "Nova Cole\u00e7\u00e3o",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Criar",
- "LabelCustomCss": "CSS personalizado:",
- "LabelCustomCssHelp": "Adiciona o teu css personalizado \u00e0 interface web.",
- "LabelLocalHttpServerPortNumber": "N\u00famero da porta http local:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "N\u00famero da porta https local:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "N\u00famero da porta da Web socket:",
- "LabelEnableAutomaticPortMap": "Ativar mapeamento autom\u00e1tico de portas",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "Endere\u00e7o WAN Externo:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Retomar",
@@ -591,8 +433,12 @@
"HeaderProgram": "Programa",
"HeaderClients": "Clientes",
"LabelCompleted": "Terminado",
+ "LabelFailed": "Falhou",
"LabelSkipped": "Ignorado",
"HeaderEpisodeOrganization": "Organiza\u00e7\u00e3o dos Epis\u00f3dios",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "N\u00famero da temporada",
+ "LabelEpisodeNumber": "N\u00famero do epis\u00f3dio",
"LabelEndingEpisodeNumber": "N\u00famero do epis\u00f3dio final:",
"LabelEndingEpisodeNumberHelp": "Necess\u00e1rio s\u00f3 para arquivos multi-epis\u00f3dios",
"HeaderSupportTheTeam": "Suporte a Equipa do Emby",
@@ -627,16 +473,13 @@
"OptionMove": "Mover",
"LabelTransferMethodHelp": "Copiar ou mover ficheiros da pasta observada",
"HeaderLatestNews": "\u00daltimas Not\u00edcias",
- "HeaderHelpImproveProject": "Ajude a Melhorar o Emby",
"HeaderRunningTasks": "Tarefas em Execu\u00e7\u00e3o",
"HeaderActiveDevices": "Dispositivos Ativos",
"HeaderPendingInstallations": "Instala\u00e7\u00f5es Pendentes",
- "HeaderServerInformation": "Informa\u00e7\u00e3o do Servidor",
"ButtonRestartNow": "Reiniciar Agora",
"ButtonRestart": "Reiniciar",
"ButtonShutdown": "Encerrar",
"ButtonUpdateNow": "Atualizar Agora",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Por favor encerre o servidor e atualize manualmente.",
"NewServerVersionAvailable": "Uma nova vers\u00e3o do Servidor Emby est\u00e1 dispon\u00edvel!",
"ServerUpToDate": "O Servidor Emby est\u00e1 atualizado",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determina a dura\u00e7\u00e3o em segundos entre as mensagens de explora\u00e7\u00e3o enviadas pelo servidor.",
"LabelDefaultUser": "Utilizador padr\u00e3o:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Op\u00e7\u00f5es de Reprodu\u00e7\u00e3o",
"TitleDlna": "DLNA",
- "TitleChannels": "Canais",
"HeaderServerSettings": "Op\u00e7\u00f5es do Servidor",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "C\u00f3digo postal dos EUA \/ Cidade, Estado, Pa\u00eds \/ Cidade, Pa\u00eds",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Quando desativados, os clientes podem mostrar a tela de login com uma sele\u00e7\u00e3o visual de utilizadores.",
"OptionOtherApps": "Outras apps",
"OptionMobileApps": "Apps m\u00f3veis",
+ "TabNotifications": "Notifica\u00e7\u00f5es",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Ativar esta notifica\u00e7\u00e3o",
+ "NotificationOptionVideoPlayback": "Reprodu\u00e7\u00e3o de v\u00eddeo iniciada",
+ "NotificationOptionAudioPlayback": "Reprodu\u00e7\u00e3o de \u00e1udio iniciada",
+ "NotificationOptionGamePlayback": "Reprodu\u00e7\u00e3o de jogo iniciada",
+ "NotificationOptionNewLibraryContent": "Adicionado novo conte\u00fado",
+ "NotificationOptionServerRestartRequired": "\u00c9 necess\u00e1rio reiniciar o servidor",
+ "LabelMonitorUsers": "Monitorizar atividade de:",
+ "LabelSendNotificationToUsers": "Enviar notifica\u00e7\u00e3o para:",
+ "LabelUseNotificationServices": "Usar os seguintes servi\u00e7os:",
"NotificationOptionApplicationUpdateAvailable": "Dispon\u00edvel atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o",
"NotificationOptionApplicationUpdateInstalled": "Instalada atualiza\u00e7\u00e3o da aplica\u00e7\u00e3o",
"NotificationOptionPluginUpdateInstalled": "Instalada atualiza\u00e7\u00e3o da extens\u00e3o",
"NotificationOptionPluginInstalled": "Extens\u00e3o instalada",
"NotificationOptionPluginUninstalled": "Extens\u00e3o desinstalada",
- "NotificationOptionVideoPlayback": "Reprodu\u00e7\u00e3o de v\u00eddeo iniciada",
- "NotificationOptionAudioPlayback": "Reprodu\u00e7\u00e3o de \u00e1udio iniciada",
- "NotificationOptionGamePlayback": "Reprodu\u00e7\u00e3o de jogo iniciada",
- "NotificationOptionVideoPlaybackStopped": "Reprodu\u00e7\u00e3o de v\u00eddeo parada",
- "NotificationOptionAudioPlaybackStopped": "Reprodu\u00e7\u00e3o de \u00e1udio parada",
- "NotificationOptionGamePlaybackStopped": "Reprodu\u00e7\u00e3o de jogo parada",
"NotificationOptionTaskFailed": "Falha na tarefa agendada",
"NotificationOptionInstallationFailed": "Falha na instala\u00e7\u00e3o",
- "NotificationOptionNewLibraryContent": "Adicionado novo conte\u00fado",
- "NotificationOptionNewLibraryContentMultiple": "Novo conte\u00fado adicionado (m\u00faltiplo)",
- "NotificationOptionCameraImageUploaded": "Imagem da c\u00e2mara carregada",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "\u00c9 necess\u00e1rio reiniciar o servidor",
- "LabelNotificationEnabled": "Ativar esta notifica\u00e7\u00e3o",
- "LabelMonitorUsers": "Monitorizar atividade de:",
- "LabelSendNotificationToUsers": "Enviar notifica\u00e7\u00e3o para:",
- "LabelUseNotificationServices": "Usar os seguintes servi\u00e7os:",
"CategoryUser": "Utilizador",
"CategorySystem": "Sistema",
- "CategoryApplication": "Aplica\u00e7\u00e3o",
- "CategoryPlugin": "Extens\u00e3o",
"LabelMessageTitle": "Titulo da mensagem:",
"LabelAvailableTokens": "Tokens dispon\u00edveis:",
"AdditionalNotificationServices": "Explore o cat\u00e1logo de extens\u00f5es para instalar servi\u00e7os adicionais de notifica\u00e7\u00e3o.",
+ "LabelSelectUsers": "Selecionar utilizadores:",
"OptionAllUsers": "Todos os utilizadores",
"OptionAdminUsers": "Administradores",
"OptionCustomUsers": "Personalizado",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Direita",
"ButtonBack": "Voltar",
"ButtonInfo": "Informa\u00e7\u00e3o",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "In\u00edcio",
- "ButtonSearch": "Procurar",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capturar o Ecr\u00e3",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "A reproduzir agora",
"TabNavigation": "Navega\u00e7\u00e3o",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Cenas",
"ButtonSubtitles": "Legendas",
+ "ButtonAudioTracks": "Faixas de \u00e1udio",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Parar",
"ButtonPause": "Pausar",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Aplica\u00e7\u00e3o",
+ "CategoryPlugin": "Extens\u00e3o",
"NotificationOptionPluginError": "Falha na extens\u00e3o",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Aumentar volume",
"ButtonVolumeDown": "Diminuir volume",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "Sem legendas",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Tipo:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Contentor:",
"LabelProfileVideoCodecs": "Codecs do v\u00eddeo:",
"LabelProfileAudioCodecs": "Codecs do \u00e1udio:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Se ativado, todos os v\u00eddeos s\u00e3o representados no DIDL como \"object.item.videoItem\" ao inv\u00e9s de um tipo mais espec\u00edfico como, por exemplo, \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Tipos de Conte\u00fados Suportados:",
"TabIdentification": "Identifica\u00e7\u00e3o",
- "HeaderIdentification": "Identifica\u00e7\u00e3o",
"TabDirectPlay": "Reprodu\u00e7\u00e3o Direta",
"TabContainers": "Contentores",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Taxa de bits m\u00e1xima:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Nome amig\u00e1vel",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Transferir legendas para:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Legendas",
- "TabChapters": "Cap\u00edtulos",
- "HeaderDownloadChaptersFor": "Descarregar nomes de cap\u00edtulos para:",
"LabelOpenSubtitlesUsername": "Nome de utilizador do Open Subtitles:",
"LabelOpenSubtitlesPassword": "Senha do Open Subtitles:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Reproduzir a faixa de \u00e1udio padr\u00e3o independentemente do idioma",
- "LabelSubtitlePlaybackMode": "Modo da Legenda:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Registar",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Desmarque esta op\u00e7\u00e3o para garantir que todos os v\u00eddeos t\u00eam legendas, independentemente do idioma do \u00e1udio.",
+ "NotificationOptionNewLibraryContentMultiple": "Novo conte\u00fado adicionado (m\u00faltiplo)",
"HeaderSendMessage": "Enviar mensagem",
"ButtonSend": "Enviar",
"LabelMessageText": "Texto da mensagem:",
+ "LabelService": "Servi\u00e7o:",
+ "LabelStatus": "Estado:",
+ "LabelVersion": "Vers\u00e3o:",
+ "LabelLastResult": "\u00daltimo resultado:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "Sem extens\u00f5es dispon\u00edveis.",
"LabelDisplayPluginsFor": "Exibir extens\u00f5es para:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Nome.da.s\u00e9rie",
"ValueSeriesNameUnderscore": "Nome_da_s\u00e9rie",
"ValueEpisodeNamePeriod": "Nome.do.epis\u00f3dio",
"ValueEpisodeNameUnderscore": "Nome_do_epis\u00f3dio",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Inserir texto",
"LabelTypeText": "Texto",
+ "OptionDefaultSubtitles": "Padr\u00e3o",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Reproduzir sempre legendas",
+ "OptionDefaultSubtitlesHelp": "As legendas que forem iguais ao idioma preferido ser\u00e3o carregadas quando o \u00e1udio estiver num idioma estrangeiro.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "As legendas que forem iguais ao idioma preferido ser\u00e3o carregadas independente do idioma do \u00e1udio.",
+ "OptionNoSubtitlesHelp": "As legendas n\u00e3o ser\u00e3o carregadas por padr\u00e3o.",
+ "TangibleSoftwareMessage": "A utilizar conversores Java\/C# da Tangible Solutions atrav\u00e9s de uma licen\u00e7a doada.",
+ "HeaderCredits": "Cr\u00e9ditos",
+ "TabCollections": "Cole\u00e7\u00f5es",
+ "TabFavorites": "Favoritos",
+ "TabMyLibrary": "A minha Biblioteca",
+ "LabelCustomizeOptionsPerMediaType": "Personalizar para o tipo de conte\u00fado:",
+ "LabelPlayDefaultAudioTrack": "Reproduzir a faixa de \u00e1udio padr\u00e3o independentemente do idioma",
+ "LabelSubtitlePlaybackMode": "Modo da Legenda:",
+ "TabOther": "Outro",
+ "NotificationOptionVideoPlaybackStopped": "Reprodu\u00e7\u00e3o de v\u00eddeo parada",
+ "NotificationOptionAudioPlaybackStopped": "Reprodu\u00e7\u00e3o de \u00e1udio parada",
+ "NotificationOptionGamePlaybackStopped": "Reprodu\u00e7\u00e3o de jogo parada",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "TV ao Vivo",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Torne-se um Apoiante do Emby",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Canais",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Adicionar \u00e0 Cole\u00e7\u00e3o",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "TV ao Vivo",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Reproduzido Recentemente",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "\u00daltimas",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "\u00daltimas",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "\u00daltimas",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "TV ao Vivo",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Cap\u00edtulos",
+ "HeaderDownloadChaptersFor": "Descarregar nomes de cap\u00edtulos para:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Pastas multim\u00e9dia",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Utilizadores",
+ "TabScheduledTasks": "Tarefas Agendadas",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Valor:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filtro",
"ButtonView": "Visualizar",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "Visualizar:",
- "TabUsers": "Utilizadores",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Administra\u00e7\u00e3o:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Avan\u00e7ado",
"ButtonSync": "Sincronizar",
- "TabScheduledTasks": "Tarefas Agendadas",
"HeaderChapters": "Cap\u00edtulos",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sincroniza\u00e7\u00e3o",
"TitleUsers": "Utilizadores",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "\u00c1udio",
+ "HeaderVideo": "V\u00eddeo",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Atividade Recente",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "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",
+ "LabelArtists": "Artistas:",
+ "LabelArtistsHelp": "Separa m\u00faltiplas com ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Conta de Apoiante vital\u00edcia",
- "OptionYearlySupporterMembership": "Conta de Apoiante anual",
- "OptionMonthlySupporterMembership": "Conta de Apoiante mensal",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Informa\u00e7\u00e3o do Programador",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Reproduzido Recentemente",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "\u00daltimas",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "\u00daltimas",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "\u00daltimas",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Conta de Apoiante vital\u00edcia",
+ "OptionYearlySupporterMembership": "Conta de Apoiante anual",
+ "OptionMonthlySupporterMembership": "Conta de Apoiante mensal",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Adicionar Utilizador Local",
+ "HeaderIdentification": "Identifica\u00e7\u00e3o",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Saiba mais sobre o Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Reprodu\u00e7\u00e3o",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Modo Cinema",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Trailers da Internet:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Os utilizadores poder\u00e3o desativar o modo cinema nas suas prefer\u00eancias.",
"LabelEnableCinemaMode": "Ativar modo cinema",
"HeaderCinemaMode": "Modo Cinema",
+ "TabDevices": "Dispositivos",
+ "LabelLocalHttpServerPortNumber": "N\u00famero da porta http local:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Ativar mapeamento autom\u00e1tico de portas",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Dispositivos",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "Dispositivos",
"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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Convidar Utilizador",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "A informa\u00e7\u00e3o do perfil do utilizador foi sincronizada com o Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Controlo Remoto",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Documenta\u00e7\u00e3o da API",
+ "LabelDeveloperResources": "Recursos do Programador",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Informa\u00e7\u00e3o do Servidor",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sincronizar",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Permitir Sincroniza\u00e7\u00e3o",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Tipo de conte\u00fado:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Ajuda",
+ "TabAccess": "Acesso",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Ativar acesso de todos os dispositivos",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Guia r\u00e1pido",
+ "HeaderSyncJobInfo": "Tarefa de Sincroniza\u00e7\u00e3o",
"TabJobs": "Jobs",
"TabSyncJobs": "Tarefas de Sincroniza\u00e7\u00e3o",
+ "HeaderTermsOfService": "Termos de Servi\u00e7o do Emby",
+ "MessagePleaseAcceptTermsOfService": "Por favor, aceite os termos de servi\u00e7o e pol\u00edtica de privacidade antes de continuar.",
+ "OptionIAcceptTermsOfService": "Aceito os termos de servi\u00e7o",
+ "ButtonPrivacyPolicy": "Pol\u00edtica de privacidade",
+ "ButtonTermsOfService": "Termos de Servi\u00e7o",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Nome de utilizador ou email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detetar ficheiros como multim\u00e9dia",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Permitir acesso a todos os canais",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Op\u00e7\u00f5es do Programador",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Caminho da fonte do cliente web:",
+ "LabelDashboardSourcePathHelp": "Se correr o servidor a partir do c\u00f3digo fonte, especifique o caminho da pasta dashboard-ui. Todos os ficheiros do cliente web ser\u00e3o usados a partir desta localiza\u00e7\u00e3o.",
+ "HeaderPaths": "Localiza\u00e7\u00f5es",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Doe com o PayPal",
+ "TitleScheduledTasks": "Tarefas Agendadas",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "N\u00famero da porta https local:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "CSS personalizado:",
+ "LabelCustomCssHelp": "Adiciona o teu css personalizado \u00e0 interface web.",
+ "ButtonConvertMedia": "Converter ficheiro multim\u00e9dia",
+ "ButtonOrganize": "Organizar",
+ "ButtonJoinTheDevelopmentTeam": "Junta-te \u00e0 Equipa de Desenvolvimento!",
+ "OptionEnableAccessToAllLibraries": "Permitir acesso a todas as bibliotecas",
+ "LabelSyncTempPath": "Caminho de arquivo tempor\u00e1rio:",
+ "LabelSyncTempPathHelp": "Especifique uma pasta de trabalho para a sincroniza\u00e7\u00e3o personalizada. Multim\u00e9dia convertida, criada durante o processo de sincroniza\u00e7\u00e3o, ser\u00e1 aqui armazenada.",
+ "LabelCustomCertificatePath": "Localiza\u00e7\u00e3o do certificado personalizado:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Disfrute dos 14 dias de experi\u00eancia",
+ "CategorySync": "Sincroniza\u00e7\u00e3o",
+ "RegisterWithPayPal": "Registar com PayPal",
+ "NotificationOptionCameraImageUploaded": "Imagem da c\u00e2mara carregada",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "C\u00f3digo PIN:",
+ "ButtonExit": "Sair",
+ "HeaderGrownupsOnly": "Adultos Apenas!",
+ "DividerOr": "-- ou --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configurar c\u00f3digo PIN",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Limite de tempo (horas):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Servi\u00e7os Instalados",
+ "HeaderAvailableServices": "Servi\u00e7os Dispon\u00edveis",
+ "MessageNoServicesInstalled": "N\u00e3o existem servi\u00e7os instalados",
+ "TitlePlugins": "Extens\u00f5es",
+ "HeaderServices": "Servi\u00e7os",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Benef\u00edcios do Apoiante",
+ "HeaderAddUser": "Adicionar Utilizador",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Lista de Reprodu\u00e7\u00e3o",
+ "LabelConfigureServer": "Configurar o Emby",
+ "WelcomeToProject": "Bem-vindo ao Emby!",
+ "LinkedToEmbyConnect": "Associado ao Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visite a p\u00e1gina web do Emby",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Ajude a Melhorar o Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Torne-se um Apoiante do Emby",
+ "ButtonLearnMoreAboutEmbyConnect": "Saiba mais sobre o Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Sugest\u00f5es",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sincroniza\u00e7\u00e3o",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Permitir sincroniza\u00e7\u00e3o que necessite de transcodifica\u00e7\u00e3o",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Permitir partilha nas redes sociais",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/ro.json b/dashboard-ui/strings/html/ro.json
index ab447e2bf9..dee8ce9a52 100644
--- a/dashboard-ui/strings/html/ro.json
+++ b/dashboard-ui/strings/html/ro.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Iesire",
"LabelVisitCommunity": "Viziteaza comunitatea",
- "LabelGithub": "Github",
"LabelSwagger": "F\u0103le\u0219te-te",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Documentatie Api",
- "LabelDeveloperResources": "Resurse Dezvoltator",
"LabelBrowseLibrary": "Rasfoieste Librarie",
- "LabelConfigureServer": "Configureaza Emby",
"LabelOpenLibraryViewer": "Deschide Vizualizatorul Librariei",
"LabelRestartServer": "Restarteaza Server",
"LabelShowLogWindow": "Arata Fereastra de Log",
"LabelPrevious": "Anteriorul",
"LabelFinish": "Termina",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Urmatorul",
"LabelYoureDone": "Esti Gata!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Bine a\u021bi venit la Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "Acest asistent v\u0103 va ajuta s\u0103 va ghidati prin procesul de configurare. Pentru a \u00eencepe, v\u0103 rug\u0103m s\u0103 selecta\u021bi limba preferat\u0103.",
"TellUsAboutYourself": "Spune-ne despre tine",
- "ButtonQuickStartGuide": "Ghid rapid de Start",
"LabelYourFirstName": "Numele tau:",
"MoreUsersCanBeAddedLater": "Mai mul\u021bi utilizatori pot fi ad\u0103ugati mai t\u00e2rziu \u00een Tabloul de Bord.",
"UserProfilesIntro": "Emby include sprijin pentru profile de utilizator, permi\u021b\u00e2nd fiec\u0103rui utilizator s\u0103 isi faca set\u0103rile de afi\u0219are proprii, playstate \u0219i control parental.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extragerea imaginilor de capitol va permite clien\u021bilor s\u0103 afi\u0219eze scene grafice la selectarea meniurilor. Procesul poate fi lent, intensiv-CPU \u0219i poate necesita mai multi gigabiti de spa\u021biu. Se ruleaza ca o sarcin\u0103 programat\u0103 de noapte, de\u0219i acest lucru este configurabil \u00een zona sarcinilor programate. Nu este recomandat s\u0103 rula\u021bi acest task \u00een timpul orelor de v\u00e2rf de utilizare.",
"LabelEnableAutomaticPortMapping": "Activeaza maparea automata a porturilor",
"LabelEnableAutomaticPortMappingHelp": "UPnP permite configurarea router-ului automat pentru acces u\u0219or la distan\u021b\u0103. Acest lucru nu poate lucra cu unele modele de router.",
- "HeaderTermsOfService": "Termeni de Utilizare Emby",
- "MessagePleaseAcceptTermsOfService": "V\u0103 rug\u0103m s\u0103 accepta\u021bi termenii de utilizare si Politica de confiden\u021bialitate \u00eenainte de a continua.",
- "OptionIAcceptTermsOfService": "Accept termenii de utilizare",
- "ButtonPrivacyPolicy": "Politica de confiden\u021bialitate",
- "ButtonTermsOfService": "Conditii de Utilizare",
- "HeaderDeveloperOptions": "Obtiuni Dezvoltator",
- "OptionEnableWebClientResponseCache": "Activa\u021bi r\u0103spunsul cache client web",
- "OptionDisableForDevelopmentHelp": "Configura\u021bi acestea cum este necesar \u00een scopuri de dezvoltare client web.",
- "OptionEnableWebClientResourceMinification": "Activa\u021bi minimizare a resurselor clientului web",
- "LabelDashboardSourcePath": "Calea sursa a clientului Web:",
- "LabelDashboardSourcePathHelp": "Dac\u0103 ruleaz\u0103 serverul de la surs\u0103, specifica\u021bi calea c\u0103tre directorul tabloul de bord. Toate fi\u0219ierele clientului web va fi servit de la aceast\u0103 loca\u021bie.",
- "ButtonConvertMedia": "Converteste media",
- "ButtonOrganize": "Organizeaza",
- "LinkedToEmbyConnect": "Legat la Emby Connect",
- "HeaderSupporterBenefits": "Beneficii Suporter",
- "HeaderAddUser": "Adauga User",
- "LabelAddConnectSupporterHelp": "Pentru a ad\u0103uga un utilizator care nu este listat, va trebui s\u0103 legati \u00eent\u00e2i contul lor la Emby Connect de la pagina lor de profil de utilizator.",
- "LabelPinCode": "Codul Pin:",
- "OptionHideWatchedContentFromLatestMedia": "Ascunde continutul vizualizat din Noutati Media",
- "HeaderSync": "Sincronizeaza",
"ButtonOk": "Ok",
"ButtonCancel": "Anuleaza",
- "ButtonExit": "Iesire",
- "ButtonNew": "Nou",
- "HeaderTV": "Seriale TV",
- "HeaderAudio": "Muzica",
- "HeaderVideo": "Filme",
- "HeaderPaths": "Cai",
- "CategorySync": "Sincronizeaza",
- "TabPlaylist": "Lista de redare",
- "HeaderEasyPinCode": "Cod Pin Usor",
- "HeaderGrownupsOnly": "Doar Adultii!",
- "DividerOr": "--sau--",
- "HeaderInstalledServices": "Servicii Instalate",
- "HeaderAvailableServices": "Servicii Disponibile",
- "MessageNoServicesInstalled": "Niciun Serviciu nu este instalat",
- "HeaderToAccessPleaseEnterEasyPinCode": "Pentru a accesa, introduceti va rog codul pin usor",
- "KidsModeAdultInstruction": "Apasa pe iconita de blocare din partea dreapta jos pentru a configura sau lasati modul Copii. Pinul Dvs. va fi necesar.",
- "ButtonConfigurePinCode": "Configureaza codul pin",
- "HeaderAdultsReadHere": "Adultii Cititi Aici!",
- "RegisterWithPayPal": "Inregistreaza-te cu PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sincronizarea necesita a fi Membru Cotizant",
- "HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita",
- "LabelSyncTempPath": "Cale fisier temporara",
- "LabelSyncTempPathHelp": "Specifica\u021bi un dosar de sincronizare personalizat de lucru. Media convertite create \u00een timpul procesului de sincronizare vor fi stocate aici.",
- "LabelCustomCertificatePath": "Calea catre certificatul personalizat:",
- "LabelCustomCertificatePathHelp": "Furnizati propriul certificat ssl in format .pfx. Daca este omis, serverul ca creea un certificat semnat propriu.",
- "TitleNotifications": "Notificari",
- "ButtonDonateWithPayPal": "Doneaza cu PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detecteza fisierele arhiva ca media",
- "OptionDetectArchiveFilesAsMediaHelp": "Dac\u0103 este activat\u0103, fi\u0219ierele cu extensiile .rar \u0219i .zip vor fi detectate ca fi\u0219iere media.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Activati afisarea imbunatatita a filmelor",
- "LabelEnableEnhancedMoviesHelp": "C\u00e2nd este activat, filmele vor fi afi\u0219ate ca dosare pentru a include trailere, figuranti, distributie si echipa, si alte tipuri de con\u021binut.",
- "HeaderSyncJobInfo": "Activitate de sincronizare",
- "OptionReleaseDate": "Data Aparitie",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Filme",
- "FolderTypeMusic": "Muzica",
- "FolderTypeAdultVideos": "Filme Porno",
- "FolderTypePhotos": "Fotografii",
- "FolderTypeMusicVideos": "Videoclipuri",
- "FolderTypeHomeVideos": "Video Personale",
- "FolderTypeGames": "Jocuri",
- "FolderTypeBooks": "Carti",
- "FolderTypeTvShows": "Seriale TV",
- "FolderTypeInherit": "Relationat",
- "LabelContentType": "Tip continut:",
- "TitleScheduledTasks": "Sarcini Programate",
"HeaderSetupLibrary": "Setari libraria media",
"ButtonAddMediaFolder": "Adaugati dosar media",
"LabelFolderType": "Tip dosar:",
"ReferToMediaLibraryWiki": "Consultati biblioteca media wiki.",
"LabelCountry": "Tara:",
"LabelLanguage": "Limba:",
- "LabelTimeLimitHours": "Limita de timp(ore):",
- "ButtonJoinTheDevelopmentTeam": "Inscrie-te in Echipa de Dezvoltare",
"HeaderPreferredMetadataLanguage": "Limba preferata a metadatelor.",
"LabelSaveLocalMetadata": "Salveaza posterele si metadatele in dosarele media",
"LabelSaveLocalMetadataHelp": "Salvand posterele si metadatele direct in dosarele media vor fi puse intr-un loc in care pot fi usor editate.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferinte",
"TabPassword": "Parola",
"TabLibraryAccess": "Acces Librarie",
- "TabAccess": "Acces",
"TabImage": "Imagine",
"TabProfile": "Profil",
- "TabMetadata": "Metadate",
- "TabImages": "Imagini",
- "TabNotifications": "Notificari",
- "TabCollectionTitles": "Titluri",
- "HeaderDeviceAccess": "Accesul Dispozitivelor",
- "OptionEnableAccessFromAllDevices": "Activeaza accesul dupa toate Dispozitivele",
- "OptionEnableAccessToAllChannels": "Activeaza accesul la toate Canalele",
- "OptionEnableAccessToAllLibraries": "Activeaza accesul la toate librariile",
- "DeviceAccessHelp": "Aceasta se aplic\u0103 numai pentru dispozitive care pot fi identificate \u00een mod unic \u0219i nu va \u00eempiedica accesul browser. Filtrand accesul dispozitivelor utilizatorului va \u00eempiedica utilizarea noilor dispozitive p\u00e2n\u0103 c\u00e2nd nu au fost aprobate aici.",
"LabelDisplayMissingEpisodesWithinSeasons": "Afiseaza episoadele lipsa din sezoane",
"LabelUnairedMissingEpisodesWithinSeasons": "Afiseaza episoadele nedifuzate din sezoane",
"HeaderVideoPlaybackSettings": "Setari Playback Video",
- "HeaderPlaybackSettings": "Setari Playback",
"LabelAudioLanguagePreference": "Preferinte limba audio:",
"LabelSubtitleLanguagePreference": "Preferinte limba subtitrare:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Doar subtitrari fortate",
- "OptionAlwaysPlaySubtitles": "Ruleaza intotdeauna subtitrari",
- "OptionNoSubtitles": "Fara Subtitrare",
- "OptionDefaultSubtitlesHelp": "Subtitrarile care se potrivesc cu preferintele limbii vor fi incarcate cand pista audio este intr-o limba straina.",
- "OptionOnlyForcedSubtitlesHelp": "Doar subtitrarile marcate ca fortat vor fi incarcate.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitrarile care se potrivesc cu preferintele limbii vor fi incarcate indiferent de limba pistei audio.",
- "OptionNoSubtitlesHelp": "Subtitrarile nuvor fi incarcate default.",
"TabProfiles": "Profile",
"TabSecurity": "Securitate",
"ButtonAddUser": "Adauga Utilizator",
- "ButtonAddLocalUser": "Adauga Utilizator Local",
- "ButtonInviteUser": "Invita Utilizator",
"ButtonSave": "Salveaza",
"ButtonResetPassword": "Reseteaza parola",
"LabelNewPassword": "Parola noua:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Rating parental maxim permis:",
"MaxParentalRatingHelp": "Continutul cu un rating mare va fi ascuns pentru acest utilizator.",
"LibraryAccessHelp": "Selecteaza dosarele media impartasite cu acest utilizator. Administratorii vor avea posibilitatea sa editeze toate dosarele utilizand managerul de metadate.",
- "ChannelAccessHelp": "Selecteaza canalele pe care vrei sa le impartasesti cu acest utilizator. Administratorii vor avea posibilitatea sa editeze canalele folosind managerul de metadate.",
"ButtonDeleteImage": "Sterge Imaginea",
- "LabelSelectUsers": "Selectare urilizatori:",
"ButtonUpload": "Incarca",
"HeaderUploadNewImage": "Incarca o imagine noua",
"LabelDropImageHere": "Trage imaginea aici",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nimic aici.",
"MessagePleaseEnsureInternetMetadata": "Va rugam sa va asigurati ca descarcarea metadatelor dupa internet este activata.",
"TabSuggested": "Sugerat",
- "TabSuggestions": "Recomandari",
"TabLatest": "Cele mai noi",
"TabUpcoming": "Urmeaza sa apara",
"TabShows": "Seriale",
@@ -217,6 +110,7 @@
"OptionAscending": "Crescator",
"OptionDescending": "Descrescator",
"OptionRuntime": "Timp Rulare",
+ "OptionReleaseDate": "Data Aparitie",
"OptionPlayCount": "Contorizari rulari",
"OptionDatePlayed": "Data Rulare",
"OptionDateAdded": "Data Adaugare",
@@ -226,16 +120,10 @@
"OptionTrackName": "Nume melodie",
"OptionCommunityRating": "Rating Comunitate",
"OptionNameSort": "Nume",
- "OptionFolderSort": "Dosare",
"OptionBudget": "Buget",
"OptionRevenue": "Incasari",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Baner",
"OptionCriticRating": "Rating Critic",
"OptionVideoBitrate": "Bitrate Video",
"OptionResumable": "Care poate fi continuat",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Programul de Activitati",
"TabMyPlugins": "Plugin-urile mele",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugin-uri",
"HeaderAutomaticUpdates": "Update Automat",
"HeaderNowPlaying": "Ruleaza Acum",
"HeaderLatestAlbums": "Cele mai noi Albume",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Rulate Recent",
"HeaderFrequentlyPlayed": "Rulate Frecvent",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Baner",
"LabelVideoType": "Tipul Video:",
"OptionBluray": "Bluray",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "Caracteristici:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Versiune:",
- "LabelLastResult": "Ultimul rezultat:",
"OptionHasSubtitles": "Subtitrari",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Cantec Fundal",
@@ -268,8 +153,6 @@
"TabMovies": "Filme",
"TabStudios": "Studiouri",
"TabTrailers": "Trailere",
- "LabelArtists": "Artisti:",
- "LabelArtistsHelp": "Folosire separata multipla",
"HeaderLatestMovies": "Cele mai noi Filme",
"HeaderLatestTrailers": "Cele mai noi Trailere",
"OptionHasSpecialFeatures": "Caracteristici Speciale",
@@ -290,32 +173,24 @@
"OptionFriday": "Vineri",
"OptionSaturday": "Sambata",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Id IMDb lipseste",
"OptionMissingTvdbId": "Id-ul IMDb lipseste",
"OptionMissingOverview": "Lipseste Prezentarea Generala",
"OptionFileMetadataYearMismatch": "Anii Fisierelor\/Metadatelor gresite",
"TabGeneral": "General",
"TitleSupport": "Suport",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "Despre",
"TabSupporterKey": "Cheie Suporter",
"TabBecomeSupporter": "Devino Suporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Emby are o comunitate \u00eenfloritoare de utilizatori \u0219i colaboratori.",
"SearchKnowledgeBase": "C\u0103uta\u021bi \u00een Baza de cuno\u0219tin\u021be",
"VisitTheCommunity": "Vizita\u021bi Comunitatea",
- "VisitProjectWebsite": "Vizita\u021bi site-ul Web Emby",
- "VisitProjectWebsiteLong": "Vizita\u021bi site-ul Web Emby pentru a prinde cele mai recente \u0219tiri \u0219i a \u021bine pasul cu blog-ul dezvoltator.",
"OptionHideUser": "Ascunde acest utilizator din pagina de autentificare",
- "OptionHideUserFromLoginHelp": "Util pentru conturi private sau ascunse de administrator. Utilizatorul va trebui s\u0103 v\u0103 conecta\u021bi manual prin introducerea numelui de utilizator \u0219i parola.",
"OptionDisableUser": "Dezactiva\u021bi acest utilizator",
"OptionDisableUserHelp": "Dac\u0103 este dezactivat, serverul nu va permite nicio conexiune de la acest utilizator. Conexiunile existente vor fi terminate brusc.",
"HeaderAdvancedControl": "Control Avansat",
"LabelName": "Nume:",
- "ButtonHelp": "Ajutor",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Dosare",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "Nou",
+ "TabMetadata": "Metadate",
+ "TabImages": "Imagini",
+ "TabCollectionTitles": "Titluri",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Setari Playback",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notificari",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Selectare urilizatori:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "Fara Subtitrare",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Selecteaza canalele pe care vrei sa le impartasesti cu acest utilizator. Administratorii vor avea posibilitatea sa editeze canalele folosind managerul de metadate.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Versiune:",
+ "LabelLastResult": "Ultimul rezultat:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Doar subtitrari fortate",
+ "OptionAlwaysPlaySubtitles": "Ruleaza intotdeauna subtitrari",
+ "OptionDefaultSubtitlesHelp": "Subtitrarile care se potrivesc cu preferintele limbii vor fi incarcate cand pista audio este intr-o limba straina.",
+ "OptionOnlyForcedSubtitlesHelp": "Doar subtitrarile marcate ca fortat vor fi incarcate.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitrarile care se potrivesc cu preferintele limbii vor fi incarcate indiferent de limba pistei audio.",
+ "OptionNoSubtitlesHelp": "Subtitrarile nuvor fi incarcate default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Muzica",
+ "HeaderVideo": "Filme",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Filme",
+ "FolderTypeMusic": "Muzica",
+ "FolderTypeAdultVideos": "Filme Porno",
+ "FolderTypePhotos": "Fotografii",
+ "FolderTypeMusicVideos": "Videoclipuri",
+ "FolderTypeHomeVideos": "Video Personale",
+ "FolderTypeGames": "Jocuri",
+ "FolderTypeBooks": "Carti",
+ "FolderTypeTvShows": "Seriale TV",
+ "LabelArtists": "Artisti:",
+ "LabelArtistsHelp": "Folosire separata multipla",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Adauga Utilizator Local",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invita Utilizator",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Documentatie Api",
+ "LabelDeveloperResources": "Resurse Dezvoltator",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Relationat",
+ "LabelContentType": "Tip continut:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Ajutor",
+ "TabAccess": "Acces",
+ "HeaderDeviceAccess": "Accesul Dispozitivelor",
+ "OptionEnableAccessFromAllDevices": "Activeaza accesul dupa toate Dispozitivele",
+ "DeviceAccessHelp": "Aceasta se aplic\u0103 numai pentru dispozitive care pot fi identificate \u00een mod unic \u0219i nu va \u00eempiedica accesul browser. Filtrand accesul dispozitivelor utilizatorului va \u00eempiedica utilizarea noilor dispozitive p\u00e2n\u0103 c\u00e2nd nu au fost aprobate aici.",
+ "ButtonQuickStartGuide": "Ghid rapid de Start",
+ "HeaderSyncJobInfo": "Activitate de sincronizare",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Termeni de Utilizare Emby",
+ "MessagePleaseAcceptTermsOfService": "V\u0103 rug\u0103m s\u0103 accepta\u021bi termenii de utilizare si Politica de confiden\u021bialitate \u00eenainte de a continua.",
+ "OptionIAcceptTermsOfService": "Accept termenii de utilizare",
+ "ButtonPrivacyPolicy": "Politica de confiden\u021bialitate",
+ "ButtonTermsOfService": "Conditii de Utilizare",
+ "OptionHideUserFromLoginHelp": "Util pentru conturi private sau ascunse de administrator. Utilizatorul va trebui s\u0103 v\u0103 conecta\u021bi manual prin introducerea numelui de utilizator \u0219i parola.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "Seriale TV",
+ "OptionDetectArchiveFilesAsMedia": "Detecteza fisierele arhiva ca media",
+ "OptionDetectArchiveFilesAsMediaHelp": "Dac\u0103 este activat\u0103, fi\u0219ierele cu extensiile .rar \u0219i .zip vor fi detectate ca fi\u0219iere media.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Activeaza accesul la toate Canalele",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Obtiuni Dezvoltator",
+ "OptionEnableWebClientResponseCache": "Activa\u021bi r\u0103spunsul cache client web",
+ "OptionDisableForDevelopmentHelp": "Configura\u021bi acestea cum este necesar \u00een scopuri de dezvoltare client web.",
+ "OptionEnableWebClientResourceMinification": "Activa\u021bi minimizare a resurselor clientului web",
+ "LabelDashboardSourcePath": "Calea sursa a clientului Web:",
+ "LabelDashboardSourcePathHelp": "Dac\u0103 ruleaz\u0103 serverul de la surs\u0103, specifica\u021bi calea c\u0103tre directorul tabloul de bord. Toate fi\u0219ierele clientului web va fi servit de la aceast\u0103 loca\u021bie.",
+ "HeaderPaths": "Cai",
+ "TitleNotifications": "Notificari",
+ "ButtonDonateWithPayPal": "Doneaza cu PayPal",
+ "TitleScheduledTasks": "Sarcini Programate",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Converteste media",
+ "ButtonOrganize": "Organizeaza",
+ "ButtonJoinTheDevelopmentTeam": "Inscrie-te in Echipa de Dezvoltare",
+ "OptionEnableAccessToAllLibraries": "Activeaza accesul la toate librariile",
+ "LabelSyncTempPath": "Cale fisier temporara",
+ "LabelSyncTempPathHelp": "Specifica\u021bi un dosar de sincronizare personalizat de lucru. Media convertite create \u00een timpul procesului de sincronizare vor fi stocate aici.",
+ "LabelCustomCertificatePath": "Calea catre certificatul personalizat:",
+ "LabelCustomCertificatePathHelp": "Furnizati propriul certificat ssl in format .pfx. Daca este omis, serverul ca creea un certificat semnat propriu.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Bucurati-va de 14 zile de Incercare Gratuita",
+ "CategorySync": "Sincronizeaza",
+ "RegisterWithPayPal": "Inregistreaza-te cu PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Cod Pin Usor",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Codul Pin:",
+ "ButtonExit": "Iesire",
+ "HeaderGrownupsOnly": "Doar Adultii!",
+ "DividerOr": "--sau--",
+ "HeaderToAccessPleaseEnterEasyPinCode": "Pentru a accesa, introduceti va rog codul pin usor",
+ "KidsModeAdultInstruction": "Apasa pe iconita de blocare din partea dreapta jos pentru a configura sau lasati modul Copii. Pinul Dvs. va fi necesar.",
+ "ButtonConfigurePinCode": "Configureaza codul pin",
+ "HeaderAdultsReadHere": "Adultii Cititi Aici!",
+ "LabelEnableEnhancedMovies": "Activati afisarea imbunatatita a filmelor",
+ "LabelEnableEnhancedMoviesHelp": "C\u00e2nd este activat, filmele vor fi afi\u0219ate ca dosare pentru a include trailere, figuranti, distributie si echipa, si alte tipuri de con\u021binut.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Limita de timp(ore):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Servicii Instalate",
+ "HeaderAvailableServices": "Servicii Disponibile",
+ "MessageNoServicesInstalled": "Niciun Serviciu nu este instalat",
+ "TitlePlugins": "Plugin-uri",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Beneficii Suporter",
+ "HeaderAddUser": "Adauga User",
+ "LabelAddConnectSupporterHelp": "Pentru a ad\u0103uga un utilizator care nu este listat, va trebui s\u0103 legati \u00eent\u00e2i contul lor la Emby Connect de la pagina lor de profil de utilizator.",
+ "TabPlaylist": "Lista de redare",
+ "LabelConfigureServer": "Configureaza Emby",
+ "WelcomeToProject": "Bine a\u021bi venit la Emby!",
+ "LinkedToEmbyConnect": "Legat la Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Vizita\u021bi site-ul Web Emby",
+ "VisitProjectWebsiteLong": "Vizita\u021bi site-ul Web Emby pentru a prinde cele mai recente \u0219tiri \u0219i a \u021bine pasul cu blog-ul dezvoltator.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Ascunde continutul vizualizat din Noutati Media",
+ "TabSuggestions": "Recomandari",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sincronizeaza",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/ru.json b/dashboard-ui/strings/html/ru.json
index a725a3bb52..c283a7b241 100644
--- a/dashboard-ui/strings/html/ru.json
+++ b/dashboard-ui/strings/html/ru.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u0412\u044b\u0445\u043e\u0434",
"LabelVisitCommunity": "\u041f\u043e\u0441\u0435\u0449\u0435\u043d\u0438\u0435 \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u0430",
- "LabelGithub": "GitHub",
"LabelSwagger": "\u0418\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441 Swagger",
"LabelStandard": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442",
- "LabelApiDocumentation": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API",
- "LabelDeveloperResources": "\u0420\u0435\u0441\u0443\u0440\u0441\u044b \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432",
"LabelBrowseLibrary": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
- "LabelConfigureServer": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 Emby",
"LabelOpenLibraryViewer": "\u0421\u0440\u0435\u0434\u0441\u0442\u0432\u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u041c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
"LabelRestartServer": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
"LabelShowLogWindow": "\u041e\u0442\u043a\u0440\u044b\u0442\u044c \u043e\u043a\u043d\u043e \u0416\u0443\u0440\u043d\u0430\u043b\u0430",
"LabelPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435",
"LabelFinish": "\u0413\u043e\u0442\u043e\u0432\u043e",
- "FolderTypeMixed": "\u0420\u0430\u0437\u043d\u043e\u0442\u0438\u043f\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
"LabelNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435",
"LabelYoureDone": "\u0412\u044b \u0437\u0430\u043a\u043e\u043d\u0447\u0438\u043b\u0438!",
- "ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e",
- "ButtonMoreItems": "\u0415\u0449\u0451...",
- "WelcomeToProject": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby",
+ "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)",
"ThisWizardWillGuideYou": "\u042d\u0442\u043e\u0442 \u043f\u043e\u043c\u043e\u0449\u043d\u0438\u043a \u043f\u0440\u043e\u0432\u0435\u0434\u0451\u0442 \u0432\u0430\u0441 \u0447\u0435\u0440\u0435\u0437 \u0432\u0441\u0435 \u0444\u0430\u0437\u044b \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. \u0421\u043d\u0430\u0447\u0430\u043b\u0430 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a.",
"TellUsAboutYourself": "\u0420\u0430\u0441\u0441\u043a\u0430\u0436\u0438\u0442\u0435 \u043e \u0441\u0435\u0431\u0435",
- "ButtonQuickStartGuide": "\u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u043f\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0443...",
"LabelYourFirstName": "\u0412\u0430\u0448\u0435 \u0438\u043c\u044f:",
"MoreUsersCanBeAddedLater": "\u041f\u043e\u0442\u043e\u043c \u043c\u043e\u0436\u043d\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0449\u0451 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0447\u0435\u0440\u0435\u0437 \u00ab\u0418\u043d\u0444\u043e\u043f\u0430\u043d\u0435\u043b\u044c\u00bb.",
"UserProfilesIntro": "\u0412 Emby \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439, \u0447\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u0435\u0442 \u043a\u0430\u0436\u0434\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0438\u043c\u0435\u0442\u044c \u0441\u0432\u043e\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f, \u0441\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c \u0426\u041f \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u041e\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u0432 \u0432\u0438\u0434\u0435 \u0437\u0430\u0434\u0430\u0447\u0438, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043d\u043e\u0447\u044c, \u043e\u0434\u043d\u0430\u043a\u043e, \u0435\u0451 \u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441\u044b \u043f\u0438\u043a.",
"LabelEnableAutomaticPortMapping": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432",
"LabelEnableAutomaticPortMappingHelp": "UPnP \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u0433\u043e \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u0430 \u0434\u043b\u044f \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u0438\u044f \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.",
- "HeaderTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 Emby",
- "MessagePleaseAcceptTermsOfService": "\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 \u0438 \u041f\u043e\u043b\u0438\u0442\u0438\u043a\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.",
- "OptionIAcceptTermsOfService": "\u042f \u0441\u043e\u0433\u043b\u0430\u0448\u0430\u044e\u0441\u044c \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",
- "ButtonPrivacyPolicy": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438...",
- "ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433...",
- "HeaderDeveloperOptions": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432",
- "OptionEnableWebClientResponseCache": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u043e \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0435 \u043a\u044d\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043a\u043b\u0438\u043a\u043e\u0432",
- "OptionDisableForDevelopmentHelp": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u0438\u0445, \u043f\u043e \u043c\u0435\u0440\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438, \u0432 \u0446\u0435\u043b\u044f\u0445 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430.",
- "OptionEnableWebClientResourceMinification": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u043e \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0435 \u043c\u0438\u043d\u0438\u043c\u0438\u0437\u0430\u0446\u0438\u044e \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432",
- "LabelDashboardSourcePath": "\u041f\u0443\u0442\u044c \u043a \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0443 \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430:",
- "LabelDashboardSourcePathHelp": "\u0415\u0441\u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442 \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432, \u0443\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 dashboard-ui. \u0412\u0441\u0435 \u0444\u0430\u0439\u043b\u044b \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u0434\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u044d\u0442\u043e\u0433\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f.",
- "ButtonConvertMedia": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
- "ButtonOrganize": "\u0420\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u0442\u044c",
- "LinkedToEmbyConnect": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u0432\u044f\u0437\u044c \u0441 Emby Connect",
- "HeaderSupporterBenefits": "\u041f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
- "HeaderAddUser": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
- "LabelAddConnectSupporterHelp": "\u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0435\u0433\u043e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0441 Emby Connect \u0441 \u0435\u0433\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.",
- "LabelPinCode": "PIN-\u043a\u043e\u0434:",
- "OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u044b\u0442\u044c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u0437 \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
- "HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
"ButtonOk": "\u041e\u041a",
"ButtonCancel": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c",
- "ButtonExit": "\u0412\u044b\u0439\u0442\u0438",
- "ButtonNew": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c",
- "HeaderTV": "\u0422\u0412",
- "HeaderAudio": "\u0410\u0443\u0434\u0438\u043e",
- "HeaderVideo": "\u0412\u0438\u0434\u0435\u043e",
- "HeaderPaths": "\u041f\u0443\u0442\u0438",
- "CategorySync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
- "TabPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442",
- "HeaderEasyPinCode": "\u0423\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434",
- "HeaderGrownupsOnly": "\u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445!",
- "DividerOr": "-- \u0438\u043b\u0438 --",
- "HeaderInstalledServices": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
- "HeaderAvailableServices": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
- "MessageNoServicesInstalled": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043d\u044b\u0445 \u0441\u043b\u0443\u0436\u0431",
- "HeaderToAccessPleaseEnterEasyPinCode": "\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u0430\u0448 \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434",
- "KidsModeAdultInstruction": "\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0437\u043d\u0430\u0447\u043a\u0443 \u0437\u0430\u043c\u043a\u0430 \u0441\u043f\u0440\u0430\u0432\u0430 \u0432\u043d\u0438\u0437\u0443, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438\u043b\u0438 \u043f\u043e\u043a\u0438\u043d\u0443\u0442\u044c \u0434\u0435\u0442\u0441\u043a\u0438\u0439 \u0440\u0435\u0436\u0438\u043c. \u041f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0430\u0448 PIN-\u043a\u043e\u0434.",
- "ButtonConfigurePinCode": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c PIN-\u043a\u043e\u0434",
- "HeaderAdultsReadHere": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435, \u043f\u0440\u043e\u0447\u0442\u0438\u0442\u0435 \u044d\u0442\u043e!",
- "RegisterWithPayPal": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal",
- "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\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 Emby.",
- "HeaderEnjoyDayTrial": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e \u043d\u0430 14 \u0434\u043d\u0435\u0439",
- "LabelSyncTempPath": "\u041f\u0443\u0442\u044c \u043a\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u043c\u0443 \u0444\u0430\u0439\u043b\u0443:",
- "LabelSyncTempPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c.",
- "LabelCustomCertificatePath": "\u041f\u0443\u0442\u044c \u043a \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443:",
- "LabelCustomCertificatePathHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0432\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b .pfx SSL-\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430. \u041f\u0440\u0438 \u0435\u0433\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441\u043e\u0437\u0434\u0430\u0441\u0442 \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.",
- "TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
- "ButtonDonateWithPayPal": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal",
- "OptionDetectArchiveFilesAsMedia": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0430\u0440\u0445\u0438\u0432\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043a\u0430\u043a \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
- "OptionDetectArchiveFilesAsMediaHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0430\u0439\u043b\u044b \u0441 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043c\u0438 .RAR \u0438 .ZIP \u0431\u0443\u0434\u0443\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432.",
- "LabelEnterConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u042d-\u043f\u043e\u0447\u0442\u0430:",
- "LabelEnterConnectUserNameHelp": "\u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u0430\u0448\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u042d-\u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby.",
- "LabelEnableEnhancedMovies": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u043e\u0432",
- "LabelEnableEnhancedMoviesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0438\u043b\u044c\u043c\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u043f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b, \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b, \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432 \u0441\u044a\u0451\u043c\u043e\u043a \u0438 \u0434\u0440\u0443\u0433\u043e\u0435 \u0441\u043e\u043f\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435.",
- "HeaderSyncJobInfo": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438",
- "OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430",
- "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440...",
- "LabelFailed": "\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u043e",
- "LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:",
- "ButtonFullscreen": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430...",
- "ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
- "ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
- "ButtonNextTrack": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
- "HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b:",
- "FolderTypeMovies": "\u041a\u0438\u043d\u043e",
- "FolderTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
- "FolderTypeAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
- "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",
- "FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435",
- "LabelContentType": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f:",
- "TitleScheduledTasks": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438",
"HeaderSetupLibrary": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
"ButtonAddMediaFolder": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0443",
"LabelFolderType": "\u0422\u0438\u043f \u043f\u0430\u043f\u043a\u0438:",
"ReferToMediaLibraryWiki": "\u041e\u0431\u0440\u0430\u0442\u0438\u0442\u0435\u0441\u044c \u043a \u0432\u0438\u043a\u0438 \u043f\u043e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435.",
"LabelCountry": "\u0421\u0442\u0440\u0430\u043d\u0430:",
"LabelLanguage": "\u042f\u0437\u044b\u043a:",
- "LabelTimeLimitHours": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 (\u0447\u0430\u0441\u044b):",
- "ButtonJoinTheDevelopmentTeam": "\u0412\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u0432 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432",
"HeaderPreferredMetadataLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
"LabelSaveLocalMetadata": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\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\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a",
"LabelSaveLocalMetadataHelp": "\u041f\u0440\u0438 \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u0438 \u0438\u043b\u043b\u044e\u0441\u0442\u0440\u0430\u0446\u0438\u0439 \u0438 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0432 \u0442\u0430\u043a\u043e\u043c \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0438, \u0433\u0434\u0435 \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043b\u0435\u0433\u043a\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u044c.",
@@ -130,37 +47,16 @@
"TabPreferences": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"TabPassword": "\u041f\u0430\u0440\u043e\u043b\u044c",
"TabLibraryAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0435",
- "TabAccess": "\u0414\u043e\u0441\u0442\u0443\u043f",
"TabImage": "\u0420\u0438\u0441\u0443\u043d\u043e\u043a",
"TabProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c",
- "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
- "TabImages": "\u0420\u0438\u0441\u0443\u043d\u043a\u0438",
- "TabNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
- "TabCollectionTitles": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
- "HeaderDeviceAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
- "OptionEnableAccessFromAllDevices": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0441\u043e \u0432\u0441\u0435\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432",
- "OptionEnableAccessToAllChannels": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043a\u0430\u043d\u0430\u043b\u0430\u043c",
- "OptionEnableAccessToAllLibraries": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u043c",
- "DeviceAccessHelp": "\u042d\u0442\u043e \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u044b \u0438 \u043d\u0435 \u043f\u0440\u0435\u043f\u044f\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u0447\u0435\u0440\u0435\u0437 \u0431\u0440\u0430\u0443\u0437\u0435\u0440. \u0424\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043e \u0442\u0435\u0445 \u043f\u043e\u0440, \u043f\u043e\u043a\u0430 \u043e\u043d\u0438 \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u044b.",
"LabelDisplayMissingEpisodesWithinSeasons": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432",
"LabelUnairedMissingEpisodesWithinSeasons": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0435\u0437\u043e\u043d\u043e\u0432",
"HeaderVideoPlaybackSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0432\u0438\u0434\u0435\u043e",
- "HeaderPlaybackSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
"LabelAudioLanguagePreference": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e:",
"LabelSubtitleLanguagePreference": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u044f\u0437\u044b\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:",
- "OptionDefaultSubtitles": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
- "OptionOnlyForcedSubtitles": "\u0422\u043e\u043b\u044c\u043a\u043e \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
- "OptionAlwaysPlaySubtitles": "\u0412\u0441\u0435\u0433\u0434\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0441 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0430\u043c\u0438",
- "OptionNoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432",
- "OptionDefaultSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f, \u0435\u0441\u043b\u0438 \u0430\u0443\u0434\u0438\u043e \u043d\u0430 \u0438\u043d\u043e\u0441\u0442\u0440\u0430\u043d\u043d\u043e\u043c \u044f\u0437\u044b\u043a\u0435.",
- "OptionOnlyForcedSubtitlesHelp": "\u0411\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u043a\u0430\u043a \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435.",
- "OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u0432\u043d\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e.",
- "OptionNoSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.",
"TabProfiles": "\u041f\u0440\u043e\u0444\u0438\u043b\u0438",
"TabSecurity": "\u0411\u0435\u0437\u043e\u043f\u0430\u0441\u043d\u043e\u0441\u0442\u044c",
"ButtonAddUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
- "ButtonAddLocalUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
- "ButtonInviteUser": "\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"ButtonSave": "\u0421\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c",
"ButtonResetPassword": "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c",
"LabelNewPassword": "\u041d\u043e\u0432\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f:",
"MaxParentalRatingHelp": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0431\u0443\u0434\u0435\u0442 \u0441\u043a\u0440\u044b\u0442\u043e \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"LibraryAccessHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438 \u0434\u043b\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043f\u0430\u043f\u043a\u0438 \u043f\u0440\u0438 \u043f\u043e\u043c\u043e\u0449\u0438 \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
- "ChannelAccessHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
"ButtonDeleteImage": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043e\u043a",
- "LabelSelectUsers": "\u0412\u044b\u0431\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439:",
"ButtonUpload": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0443",
"HeaderUploadNewImage": "\u0412\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u043d\u043e\u0432\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430",
"LabelDropImageHere": "\u041f\u0435\u0440\u0435\u0442\u0430\u0449\u0438\u0442\u0435 \u0440\u0438\u0441\u0443\u043d\u043e\u043a \u0441\u044e\u0434\u0430",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u0417\u0434\u0435\u0441\u044c \u043d\u0438\u0447\u0435\u0433\u043e \u043d\u0435\u0442.",
"MessagePleaseEnsureInternetMetadata": "\u0423\u0431\u0435\u0434\u0438\u0442\u0435\u0441\u044c, \u0447\u0442\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0430.",
"TabSuggested": "\u041f\u0440\u0435\u0434\u043b\u043e\u0436\u0435\u043d\u043d\u043e\u0435",
- "TabSuggestions": "\u041f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u043e\u0435",
"TabLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435",
"TabUpcoming": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435",
"TabShows": "\u0422\u0412-\u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u044b",
@@ -217,6 +110,7 @@
"OptionAscending": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u0430\u044e\u0449\u0438\u0439",
"OptionDescending": "\u0423\u0431\u044b\u0432\u0430\u044e\u0449\u0438\u0439",
"OptionRuntime": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c",
+ "OptionReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430",
"OptionPlayCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0435\u0434\u0435\u043d\u0438\u0439",
"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",
@@ -226,16 +120,10 @@
"OptionTrackName": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0434\u043e\u0440\u043e\u0436\u043a\u0438",
"OptionCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430",
"OptionNameSort": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435",
- "OptionFolderSort": "\u041f\u0430\u043f\u043a\u0438",
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"OptionRevenue": "\u0412\u044b\u0440\u0443\u0447\u043a\u0430",
"OptionPoster": "\u041f\u043e\u0441\u0442\u0435\u0440",
- "OptionPosterCard": "\u041f\u043e\u0441\u0442\u0435\u0440-\u043a\u0430\u0440\u0442\u0430",
- "OptionBackdrop": "\u0417\u0430\u0434\u043d\u0438\u043a",
"OptionTimeline": "\u0425\u0440\u043e\u043d\u043e\u043b\u043e\u0433\u0438\u044f",
- "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",
"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",
"OptionResumable": "\u0412\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a",
"TabMyPlugins": "\u041c\u043e\u0438 \u043f\u043b\u0430\u0433\u0438\u043d\u044b",
"TabCatalog": "\u041a\u0430\u0442\u0430\u043b\u043e\u0433",
- "TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
"HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
"HeaderNowPlaying": " \u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435",
"HeaderLatestAlbums": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e",
"HeaderFrequentlyPlayed": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0451\u043d\u043d\u044b\u0435 \u0447\u0430\u0441\u0442\u043e",
"DevBuildWarning": "\u0420\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043e\u0447\u043d\u044b\u0435 \u0441\u0431\u043e\u0440\u043a\u0438 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0441\u044b\u0440\u044b\u043c\u0438. \u0412\u044b\u043f\u0443\u0441\u043a\u0430\u0435\u043c\u044b\u0435 \u0447\u0430\u0441\u0442\u043e, \u044d\u0442\u0438 \u0441\u0431\u043e\u0440\u043a\u0438 \u043d\u0435 \u043f\u0440\u043e\u0445\u043e\u0434\u0438\u043b\u0438 \u0442\u0435\u0441\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435. \u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u043c\u043e\u0436\u0435\u0442 \u0430\u0432\u0430\u0440\u0438\u0439\u043d\u043e \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c\u0441\u044f, \u0430 \u0432\u0441\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u043e\u0431\u0449\u0435 \u043d\u0435 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c.",
+ "OptionThumb": "\u0411\u0435\u0433\u0443\u043d\u043e\u043a",
+ "OptionBanner": "\u0411\u0430\u043d\u043d\u0435\u0440",
"LabelVideoType": "\u0422\u0438\u043f \u0432\u0438\u0434\u0435\u043e:",
"OptionBluray": "BluRay",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "\u041c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b:",
- "LabelService": "\u0421\u043b\u0443\u0436\u0431\u0430:",
- "LabelStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435:",
- "LabelVersion": "\u0412\u0435\u0440\u0441\u0438\u044f:",
- "LabelLastResult": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442:",
"OptionHasSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
"OptionHasTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440",
"OptionHasThemeSong": "\u0422\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u044f",
@@ -268,8 +153,6 @@
"TabMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
"TabStudios": "\u0421\u0442\u0443\u0434\u0438\u0438",
"TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b",
- "LabelArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438:",
- "LabelArtistsHelp": "\u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u00ab;\u00bb",
"HeaderLatestMovies": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u044b",
"HeaderLatestTrailers": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b",
"OptionHasSpecialFeatures": "\u0414\u043e\u043f. \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b",
@@ -290,32 +173,24 @@
"OptionFriday": "\u043f\u044f\u0442\u043d\u0438\u0446\u0430",
"OptionSaturday": "\u0441\u0443\u0431\u0431\u043e\u0442\u0430",
"HeaderManagement": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
- "LabelManagement": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
"OptionMissingImdbId": "\u041d\u0435\u0442 IMDb Id",
"OptionMissingTvdbId": "\u041d\u0435\u0442 TheTVDB Id",
"OptionMissingOverview": "\u041d\u0435\u0442 \u043e\u0431\u0437\u043e\u0440\u0430",
"OptionFileMetadataYearMismatch": "\u0420\u0430\u0437\u043d\u044b\u0435 \u0433\u043e\u0434\u044b \u0432\u043e \u0444\u0430\u0439\u043b\u0435\/\u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
"TabGeneral": "\u041e\u0431\u0449\u0438\u0435",
"TitleSupport": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430",
- "LabelSeasonNumber": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430",
"TabLog": "\u0416\u0443\u0440\u043d\u0430\u043b",
- "LabelEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
"TabAbout": "\u041e \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0435",
"TabSupporterKey": "\u041a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
"TabBecomeSupporter": "\u0421\u0442\u0430\u0442\u044c \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c",
- "ProjectHasCommunity": "\u0423 Emby \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u0442\u0443\u0449\u0435\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.",
"CheckoutKnowledgeBase": "\u041e\u0437\u043d\u0430\u043a\u043e\u043c\u044c\u0442\u0435\u0441\u044c \u0441 \u0411\u0430\u0437\u043e\u0439 \u0437\u043d\u0430\u043d\u0438\u0439, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u043e\u043c\u043e\u0449\u044c \u043a\u0430\u043a \u0434\u043e\u0441\u0442\u0438\u0447\u044c \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u043e\u0442\u0434\u0430\u0447\u0438 \u043e\u0442 Emby.",
"SearchKnowledgeBase": "\u0418\u0441\u043a\u0430\u0442\u044c \u0432 \u0411\u0430\u0437\u0435 \u0437\u043d\u0430\u043d\u0438\u0439",
"VisitTheCommunity": "\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e",
- "VisitProjectWebsite": "\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0441\u0430\u0439\u0442 Emby",
- "VisitProjectWebsiteLong": "\u041f\u043e\u0441\u0435\u0449\u0430\u0439\u0442\u0435 \u0441\u0430\u0439\u0442 Emby, \u0447\u0442\u043e\u0431\u044b \u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u043c\u0438 \u043d\u043e\u0432\u043e\u0441\u0442\u044f\u043c\u0438 \u0438 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u0433\u043e\u043c \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432.",
"OptionHideUser": "\u0421\u043a\u0440\u044b\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0441 \u044d\u043a\u0440\u0430\u043d\u043e\u0432 \u0432\u0445\u043e\u0434\u0430",
- "OptionHideUserFromLoginHelp": "\u0426\u0435\u043b\u0435\u0441\u043e\u043e\u0431\u0440\u0430\u0437\u043d\u043e \u0434\u043b\u044f \u043b\u0438\u0447\u043d\u044b\u0445 \u0438\u043b\u0438 \u0441\u043a\u0440\u044b\u0442\u044b\u0445 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u0443\u0447\u0451\u0442\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0431\u0443\u0434\u0435\u0442 \u043d\u0443\u0436\u043d\u043e \u0432\u0445\u043e\u0434\u0438\u0442\u044c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0432\u0440\u0443\u0447\u043d\u0443\u044e, \u0432\u0432\u043e\u0434\u044f \u0441\u0432\u043e\u0451 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438 \u043f\u0430\u0440\u043e\u043b\u044c.",
"OptionDisableUser": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"OptionDisableUserHelp": "\u041f\u0440\u0438 \u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438, \u0441\u0435\u0440\u0432\u0435\u0440 \u043d\u0435 \u0440\u0430\u0437\u0440\u0435\u0448\u0430\u0435\u0442 \u043b\u044e\u0431\u044b\u0435 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u044f \u043e\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f. \u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0440\u0435\u0437\u043a\u043e \u043f\u0440\u0435\u043a\u0440\u0430\u0449\u0435\u043d\u044b.",
"HeaderAdvancedControl": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
"LabelName": "\u0418\u043c\u044f (\u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435):",
- "ButtonHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430...",
"OptionAllowUserToManageServer": "\u042d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0440\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c",
"HeaderFeatureAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u043a \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0430\u043c",
"OptionAllowMediaPlayback": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
"OptionAllowManageLiveTv": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u044c\u044e \u0441 \u044d\u0444\u0438\u0440\u0430",
"OptionAllowRemoteControlOthers": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0434\u0440\u0443\u0433\u0438\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f\u043c\u0438",
- "OptionAllowRemoteSharedDevices": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u0431\u0449\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438",
- "OptionAllowRemoteSharedDevicesHelp": "DLNA-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f \u043e\u0431\u0449\u0438\u043c\u0438, \u043f\u043e\u043a\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043c\u0438.",
- "OptionAllowLinkSharing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439",
- "OptionAllowLinkSharingHelp": "\u0422\u043e\u043b\u044c\u043a\u043e \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435. \u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f. \u041e\u0431\u0449\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0430 \u0441\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043e\u0441\u043d\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u0445 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0434\u043b\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430.",
- "HeaderSharing": "\u0421\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f",
- "HeaderRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
"OptionMissingTmdbId": "\u041d\u0435\u0442 TMDb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "\u0412\u044b\u0431\u0440\u0430\u0442\u044c",
"ButtonGroupVersions": "\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438",
"PismoMessage": "Pismo File Mount \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
- "TangibleSoftwareMessage": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0435\u0440\u044b Java\/C# \u043e\u0442 Tangible Solutions \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
- "HeaderCredits": "\u041f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b\u0438",
"PleaseSupportOtherProduces": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u044b\u0435 \u043f\u0440\u043e\u0434\u0443\u043a\u0442\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0437\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u044b \u043d\u0430\u043c\u0438:",
"VersionNumber": "\u0412\u0435\u0440\u0441\u0438\u044f {0}",
"TabPaths": "\u041f\u0443\u0442\u0438",
"TabServer": "\u0421\u0435\u0440\u0432\u0435\u0440",
"TabTranscoding": "\u041f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
"TitleAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435",
- "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)",
"LabelAllowServerAutoRestart": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u0443 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0439 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0434\u043b\u044f \u043f\u0440\u0438\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0439",
"LabelAllowServerAutoRestartHelp": "\u0421\u0435\u0440\u0432\u0435\u0440 \u0431\u0443\u0434\u0435\u0442 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 \u043f\u0435\u0440\u0438\u043e\u0434\u044b \u043f\u0440\u043e\u0441\u0442\u043e\u044f, \u043a\u043e\u0433\u0434\u0430 \u043d\u0438\u043a\u0430\u043a\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u043d\u0435 \u0430\u043a\u0442\u0438\u0432\u043d\u044b.",
"LabelEnableDebugLogging": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043e\u0442\u043b\u0430\u0434\u043e\u0447\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0432 \u0416\u0443\u0440\u043d\u0430\u043b\u0435",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0435 \u043f\u0443\u0442\u0438 \u043a\u0443\u0434\u0430 \u0436\u0435\u043b\u0430\u0442\u0435\u043b\u044c\u043d\u043e. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u044f \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c\u0438, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435.",
"LabelCachePath": "\u041f\u0443\u0442\u044c \u043a\u043e \u043a\u044d\u0448\u0443:",
"LabelCachePathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432 \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u043e\u0433\u043e \u043a\u044d\u0448\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0435 \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044f.",
- "LabelRecordingPath": "\u041f\u0443\u0442\u044c \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438:",
- "LabelRecordingPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0435 \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044f.",
"LabelImagesByNamePath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 \u00abImages by name\u00bb:",
"LabelImagesByNamePathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0430\u043a\u0442\u0451\u0440\u043e\u0432, \u0436\u0430\u043d\u0440\u043e\u0432 \u0438 \u0441\u0442\u0443\u0434\u0438\u0439.",
"LabelMetadataPath": "\u041f\u0443\u0442\u044c \u043a \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "\u0422\u0412-\u044d\u043f\u0438\u0437\u043e\u0434\u044b",
"OptionOtherVideos": "\u0414\u0440\u0443\u0433\u0438\u0435 \u0432\u0438\u0434\u0435\u043e",
"TitleMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
- "LabelAutomaticUpdates": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
"LabelAutomaticUpdatesTmdb": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441 TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441 TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043d\u043e\u0432\u044b\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u0441\u0440\u0430\u0437\u0443 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 fanart.tv. \u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0430\u0442\u044c\u0441\u044f. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0438 \u0432 \u0438\u0442\u043e\u0433\u0435, \u043c\u043d\u043e\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0438\u0441\u043a\u0430.",
"LabelAutomaticUpdatesTmdbHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043d\u043e\u0432\u044b\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438, \u0441\u0440\u0430\u0437\u0443 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 TheMovieDB.org. \u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0430\u0442\u044c\u0441\u044f. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0438 \u0432 \u0438\u0442\u043e\u0433\u0435, \u043c\u043d\u043e\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0438\u0441\u043a\u0430.",
"LabelAutomaticUpdatesTvdbHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u044d\u0442\u043e\u0439 \u043e\u043f\u0446\u0438\u0438 \u043d\u043e\u0432\u044b\u0435 \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0435\u043d\u044b \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u0440\u0430\u0437\u0443 \u043f\u0440\u0438 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0438 \u043d\u0430 TheTVDB.com. \u0418\u043c\u0435\u044e\u0449\u0438\u0435\u0441\u044f \u0438\u0437\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u043c\u0435\u0449\u0430\u0442\u044c\u0441\u044f. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0438 \u0432 \u0438\u0442\u043e\u0433\u0435, \u043c\u043d\u043e\u0433\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0434\u0438\u0441\u043a\u0430.",
- "LabelFanartApiKey": "\u0418\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447:",
- "LabelFanartApiKeyHelp": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043a Fanart \u0431\u0435\u0437 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e API-\u043a\u043b\u044e\u0447\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0438\u0437 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043d\u044b\u0445 \u0441\u0432\u044b\u0448\u0435 7 \u0434\u043d\u0435\u0439 \u043d\u0430\u0437\u0430\u0434. \u0421 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u043c API-\u043a\u043b\u044e\u0447\u043e\u043c \u0441\u0440\u043e\u043a \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u043e 48 \u0447\u0430\u0441\u043e\u0432, \u0430 \u0435\u0441\u043b\u0438 \u0432\u044b \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0435\u0441\u044c VIP-\u0447\u043b\u0435\u043d\u043e\u043c Fanart, \u0442\u043e \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0441\u044f \u043f\u043e\u0447\u0442\u0438 \u0434\u043e 10 \u043c\u0438\u043d\u0443\u0442.",
"ExtractChapterImagesHelp": "\u0418\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u0438\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0441\u0446\u0435\u043d \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043c\u0435\u043d\u044e \u0432\u044b\u0431\u043e\u0440\u0430 \u0441\u0446\u0435\u043d\u044b. \u0414\u0430\u043d\u043d\u044b\u0439 \u043f\u0440\u043e\u0446\u0435\u0441\u0441 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043c\u0435\u0434\u043b\u0435\u043d\u043d\u044b\u043c, \u043d\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 \u0426\u041f \u0438 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043d\u0430\u0434\u043e\u0431\u0438\u0442\u044c\u0441\u044f \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0433\u0438\u0433\u0430\u0431\u0430\u0439\u0442 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430. \u041e\u043d \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043f\u0440\u0438 \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u0438 \u043d\u043e\u0432\u044b\u0445 \u0432\u0438\u0434\u0435\u043e, \u0430 \u0442\u0430\u043a\u0436\u0435, \u043a\u0430\u043a \u0437\u0430\u0434\u0430\u0447\u0430, \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u0430\u044f \u043d\u0430 \u043d\u043e\u0447\u044c. \u0420\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0435\u0440\u0435\u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0445 \u0437\u0430\u0434\u0430\u0447. \u041d\u0435 \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u0443\u044e \u0437\u0430\u0434\u0430\u0447\u0443 \u0432 \u0447\u0430\u0441\u044b \u043f\u0438\u043a.",
"LabelMetadataDownloadLanguage": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u044b\u0439 \u044f\u0437\u044b\u043a \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e:",
"ButtonAutoScroll": "\u0410\u0432\u0442\u043e\u043f\u0440\u043e\u043a\u0440\u0443\u0442\u043a\u0430...",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "\u041f\u0430\u0440\u043e\u043b\u0438 \u043d\u0435 \u0442\u0440\u0435\u0431\u0443\u044e\u0442\u0441\u044f \u043f\u0440\u0438 \u0432\u0445\u043e\u0434\u0435 \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u0445\u043e\u0441\u0442\u0430.",
"TabGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434",
"TabChannels": "\u041a\u0430\u043d\u0430\u043b\u044b",
- "TabCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
"HeaderChannels": "\u041a\u0430\u043d\u0430\u043b\u044b",
"TabRecordings": "\u0417\u0430\u043f\u0438\u0441\u0438",
"TabScheduled": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0435",
"TabSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b",
- "TabFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
- "TabMyLibrary": "\u041c\u043e\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430",
"ButtonCancelRecording": "\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c \u0437\u0430\u043f\u0438\u0441\u044c",
"HeaderPrePostPadding": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f\/\u043a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u043e\u0442\u0431\u0438\u0432\u043a\u0438",
"LabelPrePaddingMinutes": "\u041d\u0430\u0447\u0430\u043b\u044c\u043d\u0430\u044f \u043e\u0442\u0431\u0438\u0432\u043a\u0430, \u043c\u0438\u043d:",
@@ -416,13 +272,10 @@
"TabStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435",
"TabSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
"ButtonRefreshGuideData": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0435 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
- "ButtonRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c",
- "ButtonAdvancedRefresh": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u043f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435...",
"OptionPriority": "\u041f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442",
"OptionRecordOnAllChannels": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0441\u043e \u0432\u0441\u0435\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432",
"OptionRecordAnytime": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0432 \u043b\u044e\u0431\u043e\u0435 \u0432\u0440\u0435\u043c\u044f",
"OptionRecordOnlyNewEpisodes": "\u0417\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u043e\u0432\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
- "HeaderRepeatingOptions": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u044f",
"HeaderDays": "\u0414\u043d\u0438",
"HeaderActiveRecordings": "\u0422\u0435\u043a\u0443\u0449\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
"HeaderLatestRecordings": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
@@ -431,17 +284,16 @@
"ButtonEdit": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c",
"ButtonRecord": "\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c",
"ButtonDelete": "\u0423\u0434\u0430\u043b\u0438\u0442\u044c",
- "ButtonRemove": "\u0418\u0437\u044a\u044f\u0442\u044c",
"OptionRecordSeries": "\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0441\u0435\u0440\u0438\u0430\u043b",
"HeaderDetails": "\u041f\u043e\u0434\u0440\u043e\u0431\u043d\u043e\u0441\u0442\u0438",
+ "OptionFolderSort": "\u041f\u0430\u043f\u043a\u0438",
+ "OptionBackdrop": "\u0417\u0430\u0434\u043d\u0438\u043a",
"TitleLiveTV": "\u042d\u0444\u0438\u0440",
"LabelNumberOfGuideDays": "\u0427\u0438\u0441\u043b\u043e \u0434\u043d\u0435\u0439 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430:",
"LabelNumberOfGuideDaysHelp": "\u0411\u043e\u043b\u044c\u0448\u0435 \u0434\u043d\u0435\u0439 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430 \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0435\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u044c \u0437\u0430\u0431\u043b\u0430\u0433\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e \u043d\u0430\u0437\u043d\u0430\u0447\u0430\u0442\u044c \u0440\u0430\u0441\u043f\u0438\u0441\u0430\u043d\u0438\u0435 \u0438 \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043f\u0435\u0440\u0435\u0447\u043d\u0435\u0439, \u043e\u0434\u043d\u0430\u043a\u043e \u044d\u0442\u043e \u0437\u0430\u0439\u043c\u0451\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438 \u0434\u043b\u044f \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438. \u041f\u0440\u0438 \u00ab\u0410\u0432\u0442\u043e\u00bb \u0432\u044b\u0431\u043e\u0440 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u0447\u0438\u0441\u043b\u043e\u043c \u043a\u0430\u043d\u0430\u043b\u043e\u0432.",
"OptionAutomatic": "\u0410\u0432\u0442\u043e",
- "HeaderServices": "\u0421\u043b\u0443\u0436\u0431\u044b",
"LiveTvPluginRequired": "\u0427\u0442\u043e\u0431\u044b \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c, \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u043b\u0430\u0433\u0438\u043d-\u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0443\u0441\u043b\u0443\u0433 \u0422\u0412-\u044d\u0444\u0438\u0440\u0430.",
"LiveTvPluginRequiredHelp": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043e\u0434\u0438\u043d \u0438\u0437 \u0438\u043c\u0435\u044e\u0449\u0438\u0445\u0441\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, NextPVR \u0438\u043b\u0438 ServerWMC.",
- "LabelCustomizeOptionsPerMediaType": "\u041f\u043e\u0434\u0433\u043e\u043d\u043a\u0430 \u043f\u043e \u0442\u0438\u043f\u0443 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
"OptionDownloadThumbImage": "\u0411\u0435\u0433\u0443\u043d\u043e\u043a",
"OptionDownloadMenuImage": "\u041c\u0435\u043d\u044e",
"OptionDownloadLogoImage": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "\u0413\u043e\u043b\u043e\u0432\u043d\u043e\u0439",
"HeaderFetchImages": "\u041e\u0442\u0431\u043e\u0440\u043a\u0430 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432:",
"HeaderImageSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432",
- "TabOther": "\u0414\u0440\u0443\u0433\u0438\u0435",
"LabelMaxBackdropsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u043e\u0432 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:",
"LabelMaxScreenshotsPerItem": "\u041c\u0430\u043a\u0441. \u0447\u0438\u0441\u043b\u043e \u0441\u043d\u0438\u043c\u043a\u043e\u0432 \u044d\u043a\u0440\u0430\u043d\u0430 \u043d\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442:",
"LabelMinBackdropDownloadWidth": "\u041c\u0438\u043d. \u0448\u0438\u0440\u0438\u043d\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e \u0437\u0430\u0434\u043d\u0438\u043a\u0430:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u0423\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u0438 \u0441\u044a\u0451\u043c\u043e\u043a",
"HeaderAdditionalParts": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0435 \u0447\u0430\u0441\u0442\u0438",
"ButtonSplitVersionsApart": "\u0420\u0430\u0437\u0431\u0438\u0442\u044c \u0432\u0435\u0440\u0441\u0438\u0438 \u043f\u043e\u0440\u043e\u0437\u043d\u044c",
+ "ButtonPlayTrailer": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440...",
"LabelMissing": "\u041e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442",
"LabelOffline": "\u0410\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e",
"PathSubstitutionHelp": "\u041f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0434\u043b\u044f \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0443\u0442\u0438 \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435 \u0441 \u043f\u0443\u0442\u0451\u043c, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u043a\u043b\u0438\u0435\u043d\u0442\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f. \u041f\u0443\u0442\u0451\u043c \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u043f\u0440\u044f\u043c\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u043d\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0435, \u0442\u0435 \u043c\u043e\u0433\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0438\u0445 \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u043f\u043e \u0441\u0435\u0442\u0438, \u0438 \u0438\u0437\u0431\u0435\u0433\u0430\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0445 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u043d\u0430 \u0438\u0445 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044e \u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "\u041a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e",
"OptionEnableDebugTranscodingLogging": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043e\u0442\u043b\u0430\u0434\u043e\u0447\u043d\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 \u0432 \u0416\u0443\u0440\u043d\u0430\u043b\u0435",
"OptionEnableDebugTranscodingLoggingHelp": "\u041f\u0440\u0438 \u044d\u0442\u043e\u043c \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u0444\u0430\u0439\u043b\u044b \u0416\u0443\u0440\u043d\u0430\u043b\u0430 \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u043e\u0433\u043e \u043e\u0431\u044a\u0451\u043c\u0430, \u0430 \u044d\u0442\u043e \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0443\u0441\u0442\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u043d\u0435\u043f\u043e\u043b\u0430\u0434\u043e\u043a.",
+ "ButtonNew": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c",
+ "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
+ "TabImages": "\u0420\u0438\u0441\u0443\u043d\u043a\u0438",
+ "TabCollectionTitles": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
+ "ButtonSearch": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a",
+ "ButtonRemove": "\u0418\u0437\u044a\u044f\u0442\u044c",
"EditCollectionItemsHelp": "\u0414\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0438\u043b\u0438 \u0438\u0437\u044b\u043c\u0438\u0442\u0435 \u043b\u044e\u0431\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b, \u0441\u0435\u0440\u0438\u0430\u043b\u044b, \u0430\u043b\u044c\u0431\u043e\u043c\u044b, \u043a\u043d\u0438\u0433\u0438 \u0438\u043b\u0438 \u0438\u0433\u0440\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0445\u043e\u0442\u0438\u0442\u0435 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u0438 \u0434\u0430\u043d\u043d\u043e\u0439 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438.",
"HeaderAddTitles": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0439",
"LabelEnableDlnaPlayTo": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c DLNA-\u0444\u0443\u043d\u043a\u0446\u0438\u044e \u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u041d\u0430",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "\u0421\u0438\u0441\u0442\u0435\u043c\u043d\u044b\u0435 \u043f\u0443\u0442\u0438",
"LinkCommunity": "\u0421\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e",
"LinkGithub": "GitHub",
- "LinkApi": "API",
"LinkApiDocumentation": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API",
"LabelFriendlyServerName": "\u041f\u043e\u043d\u044f\u0442\u043d\u043e\u0435 \u0438\u043c\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430:",
"LabelFriendlyServerNameHelp": "\u0414\u0430\u043d\u043d\u043e\u0435 \u0438\u043c\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0432\u0430\u043d\u0438\u044f \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0441\u0435\u0440\u0432\u0435\u0440\u0430. \u0415\u0441\u043b\u0438 \u043f\u043e\u043b\u0435 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u043e \u0438\u043c\u044f \u043a\u043e\u043c\u043f\u044c\u044e\u0442\u0435\u0440\u0430.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "\u041f\u0435\u0440\u0435\u0432\u043e\u0434 Emby \u0432\u0435\u0434\u0451\u0442\u0441\u044f \u043d\u0430 \u043f\u043e\u0441\u0442\u043e\u044f\u043d\u043d\u043e\u0439 \u043e\u0441\u043d\u043e\u0432\u0435.",
"LabelReadHowYouCanContribute": "\u0418\u0437\u0443\u0447\u0438\u0442\u0435, \u043a\u0430\u043a \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0432\u043d\u0435\u0441\u0442\u0438 \u0441\u0432\u043e\u0439 \u0432\u043a\u043b\u0430\u0434.",
"HeaderNewCollection": "\u041d\u043e\u0432\u0430\u044f \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044f",
- "ButtonSubmit": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c",
"ButtonCreate": "\u0421\u043e\u0437\u0434\u0430\u0442\u044c",
- "LabelCustomCss": "\u041d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435 CSS:",
- "LabelCustomCssHelp": "\u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0439\u0442\u0435 \u0441\u0432\u043e\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435 CSS \u043a \u0432\u0435\u0431-\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443.",
- "LabelLocalHttpServerPortNumber": "\u041d\u043e\u043c\u0435\u0440 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e HTTP-\u043f\u043e\u0440\u0442\u0430:",
- "LabelLocalHttpServerPortNumberHelp": "TCP-\u043f\u043e\u0440\u0442, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0443 HTTP-\u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby.",
- "LabelPublicHttpPort": "\u041d\u043e\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e HTTP-\u043f\u043e\u0440\u0442\u0430:",
- "LabelPublicHttpPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c HTTP-\u043f\u043e\u0440\u0442\u043e\u043c.",
- "LabelPublicHttpsPort": "\u041d\u043e\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e HTTPS-\u043f\u043e\u0440\u0442\u0430:",
- "LabelPublicHttpsPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c HTTPS-\u043f\u043e\u0440\u0442\u043e\u043c.",
- "LabelEnableHttps": "\u041e\u0442\u0434\u0430\u0432\u0430\u0442\u044c HTTPS \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441\u0430",
- "LabelEnableHttpsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u044d\u0442\u043e\u0439 \u043e\u043f\u0446\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u043e\u0442\u0434\u0430\u0451\u0442 HTTPS URL \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0435\u0433\u043e \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441\u0430.",
- "LabelHttpsPort": "\u041d\u043e\u043c\u0435\u0440 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e HTTPS-\u043f\u043e\u0440\u0442\u0430:",
- "LabelHttpsPortHelp": "TCP-\u043f\u043e\u0440\u0442, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0443 HTTPS-\u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby.",
"LabelWebSocketPortNumber": "\u041d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430 \u0432\u0435\u0431-\u0441\u043e\u043a\u0435\u0442\u0430:",
- "LabelEnableAutomaticPortMap": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432",
- "LabelEnableAutomaticPortMapHelp": "\u041f\u043e\u043f\u044b\u0442\u0430\u0442\u044c\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0440\u0442\u043e\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e UPnP. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.",
"LabelExternalDDNS": "\u0412\u043d\u0435\u0448\u043d\u0438\u0439 WAN-\u0430\u0434\u0440\u0435\u0441:",
"LabelExternalDDNSHelp": "\u0415\u0441\u043b\u0438 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0434\u0438\u043d\u0430\u043c\u0438\u0447\u0435\u0441\u043a\u0438\u0439 DNS, \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0435\u0433\u043e \u0437\u0434\u0435\u0441\u044c. \u042d\u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438. \u041d\u0435 \u0437\u0430\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435 \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0438\u044f.",
"TabResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435",
@@ -591,8 +433,12 @@
"HeaderProgram": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430",
"HeaderClients": "\u041a\u043b\u0438\u0435\u043d\u0442\u044b",
"LabelCompleted": "\u0412\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e",
+ "LabelFailed": "\u041d\u0435\u0443\u0434\u0430\u0447\u043d\u043e",
"LabelSkipped": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043e",
"HeaderEpisodeOrganization": "\u0420\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
+ "LabelSeries": "\u0421\u0435\u0440\u0438\u0430\u043b:",
+ "LabelSeasonNumber": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430",
+ "LabelEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
"LabelEndingEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u0430:",
"LabelEndingEpisodeNumberHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0445 \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u043e\u0432",
"HeaderSupportTheTeam": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0442\u0435 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 Emby",
@@ -627,16 +473,13 @@
"OptionMove": "\u041f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435",
"LabelTransferMethodHelp": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0438\u043b\u0438 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435 \u0444\u0430\u0439\u043b\u043e\u0432 \u0438\u0437 \u043f\u0430\u043f\u043a\u0438 \u043e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u044f",
"HeaderLatestNews": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043d\u043e\u0432\u043e\u0441\u0442\u0438",
- "HeaderHelpImproveProject": "\u041f\u043e\u043c\u043e\u0433\u0438\u0442\u0435 \u0443\u043b\u0443\u0447\u0448\u0438\u0442\u044c Emby",
"HeaderRunningTasks": "\u0412\u044b\u043f\u043e\u043b\u043d\u044f\u044e\u0449\u0438\u0435\u0441\u044f \u0437\u0430\u0434\u0430\u0447\u0438",
"HeaderActiveDevices": "\u0410\u043a\u0442\u0438\u0432\u043d\u044b\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
"HeaderPendingInstallations": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438",
- "HeaderServerInformation": "\u041e \u0441\u0435\u0440\u0432\u0435\u0440\u0435",
"ButtonRestartNow": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c \u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e",
"ButtonRestart": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u044c",
"ButtonShutdown": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u044c \u0440\u0430\u0431\u043e\u0442\u0443",
"ButtonUpdateNow": "\u041e\u0431\u043d\u043e\u0432\u0438\u0442\u044c \u043d\u0435\u043c\u0435\u0434\u043b\u0435\u043d\u043d\u043e",
- "TabHosting": "\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435",
"PleaseUpdateManually": "\u0417\u0430\u0432\u0435\u0440\u0448\u0438\u0442\u0435 \u0440\u0430\u0431\u043e\u0442\u0443 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0438 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u0435 \u0432\u0440\u0443\u0447\u043d\u0443\u044e.",
"NewServerVersionAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043d\u043e\u0432\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f Emby Server!",
"ServerUpToDate": "Emby Server - \u0441 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u043c\u0438 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f\u043c\u0438",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c \u0432 \u0441\u0435\u043a\u0443\u043d\u0434\u0430\u0445 \u043c\u0435\u0436\u0434\u0443 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f\u043c\u0438 \u043f\u0440\u043e\u0432\u0435\u0440\u043a\u0438 \u0430\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
"LabelDefaultUser": "\u0421\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0439 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c:",
"LabelDefaultUserHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0447\u044c\u044e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043d\u0430 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445. \u041f\u0435\u0440\u0435\u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435 \u044d\u0442\u043e\u0433\u043e \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0440\u043e\u0444\u0438\u043b\u0435\u0439.",
+ "HeaderPlaybackSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f",
"TitleDlna": "DLNA",
- "TitleChannels": "\u041a\u0430\u043d\u0430\u043b\u044b",
"HeaderServerSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
"LabelWeatherDisplayLocation": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u043e\u0433\u043e\u0434\u044b \u0434\u043b\u044f \u043c\u0435\u0441\u0442\u043d\u043e\u0441\u0442\u0438:",
"LabelWeatherDisplayLocationHelp": "\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434 \u0421\u0428\u0410 \/ \u0413\u043e\u0440\u043e\u0434, \u0420\u0435\u0433\u0438\u043e\u043d, \u0421\u0442\u0440\u0430\u043d\u0430 \/ \u0413\u043e\u0440\u043e\u0434, \u0421\u0442\u0440\u0430\u043d\u0430",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "\u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0434\u043b\u044f \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u0434\u044a\u044f\u0432\u043b\u0435\u043d\u0438\u0435 \u044d\u043a\u0440\u0430\u043d\u0430 \u0432\u0445\u043e\u0434\u0430 \u0441 \u0432\u0438\u0437\u0443\u0430\u043b\u044c\u043d\u044b\u043c \u0432\u044b\u0431\u043e\u0440\u043e\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439.",
"OptionOtherApps": "\u0414\u0440\u0443\u0433\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
"OptionMobileApps": "\u041c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
+ "TabNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
"HeaderNotificationList": "\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044e, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0435\u0433\u043e \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438.",
+ "LabelNotificationEnabled": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435",
+ "NotificationOptionVideoPlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f-\u043d\u043e",
+ "NotificationOptionAudioPlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0430\u0443\u0434\u0438\u043e \u0437\u0430\u043f-\u043d\u043e",
+ "NotificationOptionGamePlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0438\u0433\u0440\u044b \u0437\u0430\u043f-\u043d\u043e",
+ "NotificationOptionNewLibraryContent": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e",
+ "NotificationOptionServerRestartRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
+ "LabelMonitorUsers": "\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043e\u0442:",
+ "LabelSendNotificationToUsers": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0434\u043b\u044f:",
+ "LabelUseNotificationServices": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0441\u043b\u0443\u0436\u0431:",
"NotificationOptionApplicationUpdateAvailable": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
"NotificationOptionApplicationUpdateInstalled": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
"NotificationOptionPluginUpdateInstalled": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e",
"NotificationOptionPluginInstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d",
"NotificationOptionPluginUninstalled": "\u041f\u043b\u0430\u0433\u0438\u043d \u0443\u0434\u0430\u043b\u0451\u043d",
- "NotificationOptionVideoPlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u0437\u0430\u043f-\u043d\u043e",
- "NotificationOptionAudioPlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0430\u0443\u0434\u0438\u043e \u0437\u0430\u043f-\u043d\u043e",
- "NotificationOptionGamePlayback": "\u0412\u043e\u0441\u043f\u0440-\u0438\u0435 \u0438\u0433\u0440\u044b \u0437\u0430\u043f-\u043d\u043e",
- "NotificationOptionVideoPlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u043e\u0441\u0442-\u043d\u043e",
- "NotificationOptionAudioPlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0430\u0443\u0434\u0438\u043e \u043e\u0441\u0442-\u043d\u043e",
- "NotificationOptionGamePlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0438\u0433\u0440\u044b \u043e\u0441\u0442-\u043d\u043e",
"NotificationOptionTaskFailed": "\u0421\u0431\u043e\u0439 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438",
"NotificationOptionInstallationFailed": "\u0421\u0431\u043e\u0439 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438",
- "NotificationOptionNewLibraryContent": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e",
- "NotificationOptionNewLibraryContentMultiple": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e (\u043c\u043d\u043e\u0433\u043e\u043a\u0440\u0430\u0442\u043d\u043e)",
- "NotificationOptionCameraImageUploaded": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0430 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u043e\u0442\u0441\u043d\u044f\u0442\u043e\u0433\u043e \u0441 \u043a\u0430\u043c\u0435\u0440\u044b",
- "NotificationOptionUserLockedOut": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d",
- "HeaderSendNotificationHelp": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043f\u0430\u043f\u043a\u0443 \u0412\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0432 Emby. \u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0438\u0437 \u0432\u043a\u043b\u0430\u0434\u043a\u0438 \u0421\u043b\u0443\u0436\u0431\u044b.",
- "NotificationOptionServerRestartRequired": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
- "LabelNotificationEnabled": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0435",
- "LabelMonitorUsers": "\u041e\u0442\u0441\u043b\u0435\u0436\u0438\u0432\u0430\u043d\u0438\u0435 \u0434\u0435\u044f\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u0438 \u043e\u0442:",
- "LabelSendNotificationToUsers": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0434\u043b\u044f:",
- "LabelUseNotificationServices": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u0441\u043b\u0443\u0436\u0431:",
"CategoryUser": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c",
"CategorySystem": "\u0421\u0438\u0441\u0442\u0435\u043c\u0430",
- "CategoryApplication": "\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435",
- "CategoryPlugin": "\u041f\u043b\u0430\u0433\u0438\u043d",
"LabelMessageTitle": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f:",
"LabelAvailableTokens": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u043c\u0430\u0440\u043a\u0435\u0440\u044b:",
"AdditionalNotificationServices": "\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 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b \u0443\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u0439.",
+ "LabelSelectUsers": "\u0412\u044b\u0431\u043e\u0440 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439:",
"OptionAllUsers": "\u0412\u0441\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
"OptionAdminUsers": "\u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b",
"OptionCustomUsers": "\u041d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "\u0412\u043f\u0440\u0430\u0432\u043e",
"ButtonBack": "\u041d\u0430\u0437\u0430\u0434",
"ButtonInfo": "\u0418\u043d\u0444\u043e...",
- "ButtonOsd": "\u042d\u043a\u0440\u0430\u043d\u043d\u043e\u0435 \u043c\u0435\u043d\u044e...",
"ButtonPageUp": "\u041d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0432\u0432\u0435\u0440\u0445",
"ButtonPageDown": "\u041d\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0443 \u0432\u043d\u0438\u0437",
"PageAbbreviation": "\u0421\u0422\u0420",
"ButtonHome": "\u0413\u043b\u0430\u0432\u043d\u043e\u0435...",
- "ButtonSearch": "\u0412\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a",
"ButtonSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b...",
"ButtonTakeScreenshot": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u0441\u043d\u0438\u043c\u043e\u043a \u044d\u043a\u0440\u0430\u043d\u0430",
"ButtonLetterUp": "\u041d\u0430 \u0431\u0443\u043a\u0432\u0443 \u0432\u0432\u0435\u0440\u0445",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "\u0411\u041a\u0412",
"TabNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0435",
"TabNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f",
- "TabControls": "\u0420\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u043a\u0438",
+ "ButtonFullscreen": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430...",
"ButtonScenes": "\u0421\u0446\u0435\u043d\u044b...",
"ButtonSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b...",
+ "ButtonAudioTracks": "\u0410\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0438...",
+ "ButtonPreviousTrack": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
+ "ButtonNextTrack": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0434\u043e\u0440\u043e\u0436\u043a\u0430...",
"ButtonStop": "\u041e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c",
"ButtonPause": "\u041f\u0440\u0438\u043e\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c",
- "ButtonNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435...",
- "ButtonPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435\u0435...",
"LabelGroupMoviesIntoCollections": "\u0413\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0444\u0438\u043b\u044c\u043c\u044b \u0432\u043d\u0443\u0442\u0440\u044c \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439",
"LabelGroupMoviesIntoCollectionsHelp": "\u041f\u0440\u0438 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0438 \u0444\u0438\u043b\u044c\u043c\u043e\u0432\u044b\u0445 \u0441\u043f\u0438\u0441\u043a\u043e\u0432, \u0444\u0438\u043b\u044c\u043c\u044b, \u043f\u0440\u0438\u043d\u0430\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u0435 \u043a\u043e \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u0435\u0434\u0438\u043d\u044b\u0439 \u0441\u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442.",
+ "CategoryApplication": "\u041f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435",
+ "CategoryPlugin": "\u041f\u043b\u0430\u0433\u0438\u043d",
"NotificationOptionPluginError": "\u0421\u0431\u043e\u0439 \u043f\u043b\u0430\u0433\u0438\u043d\u0430",
+ "TabControls": "\u0420\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u043a\u0438",
"ButtonVolumeUp": "\u041f\u043e\u0432\u044b\u0441\u0438\u0442\u044c \u0433\u0440\u043e\u043c\u043a\u043e\u0441\u0442\u044c",
"ButtonVolumeDown": "\u041f\u043e\u043d\u0438\u0437\u0438\u0442\u044c \u0433\u0440\u043e\u043c\u043a\u043e\u0441\u0442\u044c",
"ButtonMute": "\u041e\u0442\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0437\u0432\u0443\u043a",
"HeaderLatestMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
+ "OptionNoSubtitles": "\u0411\u0435\u0437 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432",
"OptionSpecialFeatures": "\u0414\u043e\u043f. \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b",
+ "ChannelAccessHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u044d\u0442\u043e\u043c\u0443 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e. \u0410\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u043f\u0440\u0430\u0432\u0438\u0442\u044c \u0432\u0441\u0435 \u043a\u0430\u043d\u0430\u043b\u044b \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u00ab\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445\u00bb.",
"HeaderCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
"LabelProfileCodecsHelp": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u0430\u043f\u044f\u0442\u043e\u0439. \u041f\u043e\u043b\u0435 \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043a\u043e\u0434\u0435\u043a\u043e\u0432.",
"LabelProfileContainersHelp": "\u0420\u0430\u0437\u0434\u0435\u043b\u044f\u044e\u0442\u0441\u044f \u0437\u0430\u043f\u044f\u0442\u043e\u0439. \u041f\u043e\u043b\u0435 \u043c\u043e\u0436\u043d\u043e \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u0442\u044c \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u043a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u043e\u0432.",
"HeaderResponseProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u043e\u0442\u043a\u043b\u0438\u043a\u0430",
"LabelType": "\u0422\u0438\u043f:",
- "LabelPersonRole": "\u0420\u043e\u043b\u044c:",
- "LabelPersonRoleHelp": "\u0420\u043e\u043b\u0438 \u043e\u0431\u044b\u0447\u043d\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0430\u043a\u0442\u0451\u0440\u0430\u043c.",
"LabelProfileContainer": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440:",
"LabelProfileVideoCodecs": "\u0412\u0438\u0434\u0435\u043e \u043a\u043e\u0434\u0435\u043a\u0438:",
"LabelProfileAudioCodecs": "\u0410\u0443\u0434\u0438\u043e \u043a\u043e\u0434\u0435\u043a\u0438:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0432\u0441\u0435 \u0432\u0438\u0434\u0435\u043e \u043e\u043f\u0438\u0441\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u0432 DIDL \u043a\u0430\u043a \u00abobject.item.videoItem\u00bb, \u0432\u043c\u0435\u0441\u0442\u043e \u0431\u043e\u043b\u0435\u0435 \u043a\u043e\u043d\u043a\u0440\u0435\u0442\u043d\u043e\u0433\u043e \u0442\u0438\u043f\u0430, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u00abobject.item.videoItem.movie\u00bb.",
"LabelSupportedMediaTypes": "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u0442\u0438\u043f\u044b \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
"TabIdentification": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435",
- "HeaderIdentification": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435",
"TabDirectPlay": "\u041f\u0440\u044f\u043c\u043e\u0435 \u0432\u043e\u0441\u043f\u0440.",
"TabContainers": "\u041a\u043e\u043d\u0442\u0435\u0439\u043d\u0435\u0440\u044b",
"TabCodecs": "\u041a\u043e\u0434\u0435\u043a\u0438",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "\u0414\u0430\u043d\u043d\u044b\u043c\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f\u043c\u0438 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u044e\u0442 \u0442\u0435\u043c, \u043a\u0430\u043a Emby Server \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u044f\u0442\u044c \u0441\u0435\u0431\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443.",
"LabelMaxBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c:",
"LabelMaxBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0432 \u0441\u0440\u0435\u0434\u0430\u0445 \u0441 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e, \u043b\u0438\u0431\u043e, \u0435\u0441\u043b\u0438 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0443 - \u0435\u0433\u043e \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435.",
- "LabelMaxStreamingBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438:",
- "LabelMaxStreamingBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.",
- "LabelMaxChromecastBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0434\u043b\u044f Chromecast:",
- "LabelMaxStaticBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:",
- "LabelMaxStaticBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u044b\u0441\u043e\u043a\u043e\u043c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435.",
- "LabelMusicStaticBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0441\u0438\u043d\u0445\u0440-\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438:",
- "LabelMusicStaticBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438",
- "LabelMusicStreamingTranscodingBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 \u043c\u0443\u0437\u044b\u043a\u0438:",
- "LabelMusicStreamingTranscodingBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438",
"OptionIgnoreTranscodeByteRangeRequests": "\u0418\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0437\u0430\u043f\u0440\u043e\u0441\u044b \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430 \u0431\u0430\u0439\u0442\u043e\u0432 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u044d\u0442\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u044b \u0431\u0443\u0434\u0443\u0442 \u0443\u0447\u0442\u0435\u043d\u044b, \u043d\u043e \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430 \u0431\u0430\u0439\u0442\u043e\u0432 \u0431\u0443\u0434\u0435\u0442 \u043f\u0440\u043e\u0438\u0433\u043d\u043e\u0440\u0438\u0440\u043e\u0432\u0430\u043d.",
"LabelFriendlyName": "\u041f\u043e\u043d\u044f\u0442\u043d\u043e\u0435 \u0438\u043c\u044f",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "\u042d\u0442\u043e \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0434\u0435\u043b\u0430\u044e\u0442 \u043f\u043e\u0432\u0440\u0435\u043c\u0451\u043d\u043d\u0443\u044e \u043f\u0435\u0440\u0435\u043c\u043e\u0442\u043a\u0443 \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u0438\u0442\u0435\u043b\u044c\u043d\u043e.",
"HeaderSubtitleDownloadingHelp": "\u041f\u0440\u0438 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u043e\u0432 \u0432 Emby, \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u044e\u0449\u0438\u0445 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0438\u0445 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u0434\u043b\u044f:",
- "MessageNoChapterProviders": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043f\u043b\u0430\u0433\u0438\u043d-\u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0441\u0446\u0435\u043d (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: ChapterDb) \u0434\u043b\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0434\u043b\u044f \u0441\u0446\u0435\u043d.",
- "LabelSkipIfGraphicalSubsPresent": "\u041e\u043f\u0443\u0441\u0442\u0438\u0442\u044c, \u0435\u0441\u043b\u0438 \u0432\u0438\u0434\u0435\u043e \u0443\u0436\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
- "LabelSkipIfGraphicalSubsPresentHelp": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0431\u043e\u043b\u044c\u0448\u0435\u0439 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0438 \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 \u0432\u0438\u0434\u0435\u043e.",
"TabSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
- "TabChapters": "\u0421\u0446\u0435\u043d\u044b",
- "HeaderDownloadChaptersFor": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0434\u043b\u044f:",
"LabelOpenSubtitlesUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Open Subtitles:",
"LabelOpenSubtitlesPassword": "\u041f\u0430\u0440\u043e\u043b\u044c Open Subtitles:",
- "HeaderChapterDownloadingHelp": "\u041f\u0440\u0438 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u043e\u0432 \u0432 Emby, \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043f\u043e\u043d\u044f\u0442\u043d\u044b\u0445 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u044b \u0441\u0446\u0435\u043d, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, ChapterDb.",
- "LabelPlayDefaultAudioTrack": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0443\u044e \u0430\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0443 \u0432\u043d\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u044f\u0437\u044b\u043a\u0430",
- "LabelSubtitlePlaybackMode": "\u0420\u0435\u0436\u0438\u043c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:",
"LabelDownloadLanguages": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0435 \u044f\u0437\u044b\u043a\u0438:",
"ButtonRegister": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f",
+ "LabelSkipIfGraphicalSubsPresent": "\u041e\u043f\u0443\u0441\u0442\u0438\u0442\u044c, \u0435\u0441\u043b\u0438 \u0432\u0438\u0434\u0435\u043e \u0443\u0436\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0433\u0440\u0430\u0444\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
+ "LabelSkipIfGraphicalSubsPresentHelp": "\u041d\u0430\u043b\u0438\u0447\u0438\u0435 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u044b\u0445 \u0432\u0435\u0440\u0441\u0438\u0439 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0431\u043e\u043b\u044c\u0448\u0435\u0439 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0441\u0442\u0438 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438 \u0438 \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442 \u0432\u0435\u0440\u043e\u044f\u0442\u043d\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 \u0432\u0438\u0434\u0435\u043e.",
"LabelSkipIfAudioTrackPresent": "\u041e\u043f\u0443\u0441\u0442\u0438\u0442\u044c, \u0435\u0441\u043b\u0438 \u0430\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0430 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u043c\u0443 \u044f\u0437\u044b\u043a\u0443",
"LabelSkipIfAudioTrackPresentHelp": "\u0421\u043d\u044f\u0442\u044c \u0444\u043b\u0430\u0436\u043e\u043a, \u0447\u0442\u043e\u0431\u044b \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0442\u044c \u0432\u0441\u0435\u043c\u0443 \u0432\u0438\u0434\u0435\u043e \u043d\u0430\u043b\u0438\u0447\u0438\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432, \u0432\u043d\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e.",
+ "NotificationOptionNewLibraryContentMultiple": "\u041d\u043e\u0432\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u043e (\u043c\u043d\u043e\u0433\u043e\u043a\u0440\u0430\u0442\u043d\u043e)",
"HeaderSendMessage": "\u041f\u0435\u0440\u0435\u0434\u0430\u0447\u0430 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f",
"ButtonSend": "\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c",
"LabelMessageText": "\u0422\u0435\u043a\u0441\u0442 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f:",
+ "LabelService": "\u0421\u043b\u0443\u0436\u0431\u0430:",
+ "LabelStatus": "\u0421\u043e\u0441\u0442\u043e\u044f\u043d\u0438\u0435:",
+ "LabelVersion": "\u0412\u0435\u0440\u0441\u0438\u044f:",
+ "LabelLastResult": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0439 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442:",
+ "ButtonOsd": "\u042d\u043a\u0440\u0430\u043d\u043d\u043e\u0435 \u043c\u0435\u043d\u044e...",
"MessageNoAvailablePlugins": "\u041d\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0445 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432.",
"LabelDisplayPluginsFor": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432 \u0434\u043b\u044f:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
- "LabelSeriesNamePlain": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0435\u0440\u0438\u0430\u043b\u0430",
"ValueSeriesNamePeriod": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435.\u0441\u0435\u0440\u0438\u0430\u043b\u0430",
"ValueSeriesNameUnderscore": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u0441\u0435\u0440\u0438\u0430\u043b\u0430",
"ValueEpisodeNamePeriod": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435.\u044d\u043f\u0438\u0437\u043e\u0434\u0430",
"ValueEpisodeNameUnderscore": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435_\u044d\u043f\u0438\u0437\u043e\u0434\u0430",
- "LabelSeasonNumberPlain": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430",
- "LabelEpisodeNumberPlain": "\u041d\u043e\u043c\u0435\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
- "LabelEndingEpisodeNumberPlain": "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
"HeaderTypeText": "\u0412\u0432\u043e\u0434 \u0442\u0435\u043a\u0441\u0442\u0430",
"LabelTypeText": "\u0422\u0435\u043a\u0441\u0442",
+ "OptionDefaultSubtitles": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
+ "OptionOnlyForcedSubtitles": "\u0422\u043e\u043b\u044c\u043a\u043e \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
+ "OptionAlwaysPlaySubtitles": "\u0412\u0441\u0435\u0433\u0434\u0430 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0441 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u0430\u043c\u0438",
+ "OptionDefaultSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f, \u0435\u0441\u043b\u0438 \u0430\u0443\u0434\u0438\u043e \u043d\u0430 \u0438\u043d\u043e\u0441\u0442\u0440\u0430\u043d\u043d\u043e\u043c \u044f\u0437\u044b\u043a\u0435.",
+ "OptionOnlyForcedSubtitlesHelp": "\u0411\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u043a\u0430\u043a \u0444\u043e\u0440\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u0435.",
+ "OptionAlwaysPlaySubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0435 \u044f\u0437\u044b\u043a\u0430, \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u0432\u043d\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u044f\u0437\u044b\u043a\u0430 \u0430\u0443\u0434\u0438\u043e.",
+ "OptionNoSubtitlesHelp": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0442\u044c\u0441\u044f \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.",
+ "TangibleSoftwareMessage": "\u041a\u043e\u043d\u0432\u0435\u0440\u0442\u0435\u0440\u044b Java\/C# \u043e\u0442 Tangible Solutions \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u043f\u043e \u043f\u043e\u0434\u0430\u0440\u0435\u043d\u043d\u043e\u0439 \u043b\u0438\u0446\u0435\u043d\u0437\u0438\u0438.",
+ "HeaderCredits": "\u041f\u0440\u0430\u0432\u043e\u043e\u0431\u043b\u0430\u0434\u0430\u0442\u0435\u043b\u0438",
+ "TabCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
+ "TabFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
+ "TabMyLibrary": "\u041c\u043e\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430",
+ "LabelCustomizeOptionsPerMediaType": "\u041f\u043e\u0434\u0433\u043e\u043d\u043a\u0430 \u043f\u043e \u0442\u0438\u043f\u0443 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
+ "LabelPlayDefaultAudioTrack": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0443\u044e \u0430\u0443\u0434\u0438\u043e\u0434\u043e\u0440\u043e\u0436\u043a\u0443 \u0432\u043d\u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u043e\u0441\u0442\u0438 \u043e\u0442 \u044f\u0437\u044b\u043a\u0430",
+ "LabelSubtitlePlaybackMode": "\u0420\u0435\u0436\u0438\u043c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432:",
+ "TabOther": "\u0414\u0440\u0443\u0433\u0438\u0435",
+ "NotificationOptionVideoPlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0432\u0438\u0434\u0435\u043e \u043e\u0441\u0442-\u043d\u043e",
+ "NotificationOptionAudioPlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0430\u0443\u0434\u0438\u043e \u043e\u0441\u0442-\u043d\u043e",
+ "NotificationOptionGamePlaybackStopped": "\u0412\u043e\u0441\u043f-\u0438\u0435 \u0438\u0433\u0440\u044b \u043e\u0441\u0442-\u043d\u043e",
"HeaderSearchForSubtitles": "\u041f\u043e\u0438\u0441\u043a \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432",
- "ButtonMore": "\u0415\u0449\u0451",
"MessageNoSubtitleSearchResultsFound": "\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u0440\u0438 \u043f\u043e\u0438\u0441\u043a\u0435.",
"TabDisplay": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
"TabLanguages": "\u042f\u0437\u044b\u043a\u0438",
- "TabAppSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
"LabelEnableThemeSongs": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0445 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0439",
"LabelEnableBackdrops": "\u0412\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435 \u0437\u0430\u0434\u043d\u0438\u043a\u043e\u0432",
"LabelEnableThemeSongsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438 \u0431\u0443\u0434\u0443\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c\u0441\u044f \u0444\u043e\u043d\u043e\u043c \u043f\u0440\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
"LabelEnableBackdropsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0437\u0430\u0434\u043d\u0438\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0444\u043e\u043d\u043e\u043c \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u0442\u0440\u0430\u043d\u0438\u0446 \u043f\u0440\u0438 \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
- "HeaderHomePage": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430",
- "HeaderSettingsForThisDevice": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
"OptionAuto": "\u0410\u0432\u0442\u043e",
"OptionYes": "\u0414\u0430",
"OptionNo": "\u041d\u0435\u0442",
- "HeaderOptions": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442\u044b",
- "HeaderIdentificationResult": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u044f",
"LabelHomePageSection1": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b 1:",
"LabelHomePageSection2": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b 2:",
"LabelHomePageSection3": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b 3:",
- "LabelHomePageSection4": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b 4:",
- "OptionMyMediaButtons": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 (\u043a\u043d\u043e\u043f\u043a\u0438)",
- "OptionMyMedia": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
- "OptionMyMediaSmall": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 (\u043a\u043e\u043c\u043f\u0430\u043a\u0442\u043d\u043e)",
"OptionResumablemedia": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435",
"OptionLatestMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
- "OptionLatestChannelMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432",
- "HeaderLatestChannelItems": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432",
"OptionNone": "\u041d\u0438\u0447\u0435\u0433\u043e",
"HeaderLiveTv": "\u042d\u0444\u0438\u0440",
"HeaderReports": "\u041e\u0442\u0447\u0451\u0442\u044b",
"HeaderMetadataManager": "\u0414\u0438\u0441\u043f\u0435\u0442\u0447\u0435\u0440 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
- "HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
"MessageLoadingChannels": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u043a\u0430\u043d\u0430\u043b\u0430...",
- "MessageLoadingContent": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435...",
"ButtonMarkRead": "\u041e\u0442\u043c\u0435\u0442\u0438\u0442\u044c \u043a\u0430\u043a \u043f\u0440\u043e\u0447\u0442\u0451\u043d\u043d\u043e\u0435",
"OptionDefaultSort": "\u0423\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u0435",
"OptionCommunityMostWatchedSort": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0431\u043e\u043b\u044c\u0448\u0435",
"TabNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
- "PlaceholderUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
- "HeaderBecomeProjectSupporter": "\u0421\u0442\u0430\u043d\u044c\u0442\u0435 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c Emby",
"MessageNoMovieSuggestionsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435 \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u043f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u044b\u0445 \u0444\u0438\u043b\u044c\u043c\u043e\u0432. \u041d\u0430\u0447\u043d\u0438\u0442\u0435 \u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0438 \u043e\u0446\u0435\u043d\u0438\u0432\u0430\u0442\u044c \u0441\u0432\u043e\u0438 \u0444\u0438\u043b\u044c\u043c\u044b, \u0438 \u0442\u043e\u0433\u0434\u0430 \u0432\u0435\u0440\u043d\u0438\u0442\u0435\u0441\u044c \u043d\u0430\u0437\u0430\u0434, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c \u0440\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0430\u0446\u0438\u0438.",
"MessageNoCollectionsAvailable": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044e\u0442 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043e\u0431\u043e\u0441\u043e\u0431\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f \u0444\u0438\u043b\u044c\u043c\u043e\u0432, \u0441\u0435\u0440\u0438\u0430\u043b\u043e\u0432, \u0430\u043b\u044c\u0431\u043e\u043c\u043e\u0432, \u043a\u043d\u0438\u0433 \u0438 \u0438\u0433\u0440. \u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \"+\", \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0438\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u043a \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044e \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439.",
- "MessageNoPlaylistsAvailable": "\u041f\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) \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0438\u0437 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432\u043e \u0441\u043f\u0438\u0441\u043a\u0438, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435, \u0437\u0430\u0442\u0435\u043c \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u00bb.",
- "MessageNoPlaylistItemsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442 \u043f\u0443\u0441\u0442.",
+ "ButtonClose": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c",
+ "HeaderConfirmDeletion": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f",
+ "HeaderHomePage": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430",
+ "HeaderSettingsForThisDevice": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
"ButtonDismiss": "\u041f\u0440\u0435\u043a\u0440\u0430\u0442\u0438\u0442\u044c",
+ "ButtonMore": "\u0415\u0449\u0451",
"ButtonEditOtherUserPreferences": "\u041f\u0440\u0430\u0432\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c, \u0440\u0438\u0441\u0443\u043d\u043e\u043a \u0438 \u043b\u0438\u0447\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.",
+ "TitleChannels": "\u041a\u0430\u043d\u0430\u043b\u044b",
"LabelChannelStreamQuality": "\u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u0435\u043c\u043e\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u043e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438:",
"LabelChannelStreamQualityHelp": "\u0412 \u0441\u0440\u0435\u0434\u0435 \u0441 \u043d\u0438\u0437\u043a\u043e\u0439 \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u043d\u043e\u0439 \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e\u0441\u0442\u044c\u044e, \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0430 \u043c\u043e\u0436\u0435\u0442 \u043f\u043e\u043c\u043e\u0447\u044c \u0433\u0430\u0440\u0430\u043d\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u044f \u043f\u043b\u0430\u0432\u043d\u043e\u0439 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.",
"OptionBestAvailableStreamQuality": "\u041d\u0430\u0438\u043b\u0443\u0447\u0448\u0435\u0435 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0435",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "\u0423\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0447\u0435\u0440\u0435\u0437, \u0434\u043d\u0438:",
"LabelChannelDownloadAgeHelp": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0441\u0442\u0430\u0440\u0448\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u043e\u0433\u043e \u0431\u0443\u0434\u0435\u0442 \u0443\u0434\u0430\u043b\u0435\u043d\u043e. \u0415\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u044c \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0435\u0442\u0441\u044f \u043f\u0440\u0438 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.",
"ChannelSettingsFormHelp": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b\u044b (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: Trailers \u0438\u043b\u0438 Vimeo) \u0438\u0437 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u043e\u0432.",
- "ButtonOptions": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442\u044b...",
- "ViewTypePlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b",
+ "ButtonAddToCollection": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e",
+ "ButtonSubmit": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u044c",
"ViewTypeMovies": "\u041a\u0438\u043d\u043e",
"ViewTypeTvShows": "\u0422\u0412",
"ViewTypeGames": "\u0418\u0433\u0440\u044b",
"ViewTypeMusic": "\u041c\u0443\u0437\u044b\u043a\u0430",
- "ViewTypeMusicGenres": "\u0416\u0430\u043d\u0440\u044b",
- "ViewTypeMusicArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
"ViewTypeBoxSets": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
- "ViewTypeChannels": "\u041a\u0430\u043d\u0430\u043b\u044b",
- "ViewTypeLiveTV": "\u042d\u0444\u0438\u0440",
- "ViewTypeLiveTvNowPlaying": "\u0412 \u044d\u0444\u0438\u0440\u0435",
- "ViewTypeLatestGames": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0438\u0433\u0440\u044b",
- "ViewTypeRecentlyPlayedGames": "C\u044b\u0433\u0440\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e",
- "ViewTypeGameFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
- "ViewTypeGameSystems": "\u0418\u0433\u0440\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b",
- "ViewTypeGameGenres": "\u0416\u0430\u043d\u0440\u044b",
- "ViewTypeTvResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435",
- "ViewTypeTvNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
- "ViewTypeTvLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435",
- "ViewTypeTvShowSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b",
- "ViewTypeTvGenres": "\u0416\u0430\u043d\u0440\u044b",
- "ViewTypeTvFavoriteSeries": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0441\u0435\u0440\u0438\u0430\u043b\u044b",
- "ViewTypeTvFavoriteEpisodes": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
- "ViewTypeMovieResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435",
- "ViewTypeMovieLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435",
- "ViewTypeMovieMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
- "ViewTypeMovieCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
- "ViewTypeMovieFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
- "ViewTypeMovieGenres": "\u0416\u0430\u043d\u0440\u044b",
- "ViewTypeMusicLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435",
- "ViewTypeMusicPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b",
- "ViewTypeMusicAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
- "ViewTypeMusicAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
"HeaderOtherDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f",
- "ViewTypeMusicSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
- "ViewTypeMusicFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
- "ViewTypeMusicFavoriteAlbums": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b",
- "ViewTypeMusicFavoriteArtists": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
- "ViewTypeMusicFavoriteSongs": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
- "HeaderMyViews": "\u041c\u043e\u0438 \u0430\u0441\u043f\u0435\u043a\u0442\u044b",
"LabelSelectFolderGroups": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u0433\u0440\u0443\u043f\u043f\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u043d\u0443\u0442\u0440\u044c \u0430\u0441\u043f\u0435\u043a\u0442\u043e\u0432 (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: \u041a\u0438\u043d\u043e, \u041c\u0443\u0437\u044b\u043a\u0430 \u0438 \u0422\u0412) \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0438\u0437 \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0445 \u043f\u0430\u043f\u043e\u043a:",
"LabelSelectFolderGroupsHelp": "\u041f\u0430\u043f\u043a\u0438, \u0441 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0441\u043d\u044f\u0442\u044b \u0444\u043b\u0430\u0436\u043a\u0438, \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0441\u0430\u043c\u043e\u0441\u0442\u043e\u044f\u0442\u0435\u043b\u044c\u043d\u043e \u0432 \u0438\u0445 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u0430\u0441\u043f\u0435\u043a\u0442\u0430\u0445.",
+ "ViewTypeChannels": "\u041a\u0430\u043d\u0430\u043b\u044b",
+ "ViewTypeLiveTV": "\u042d\u0444\u0438\u0440",
"OptionDisplayAdultContent": "\u041e\u0442\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u044c \u00ab\u0432\u0437\u0440\u043e\u0441\u043b\u043e\u0435\u00bb \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435",
+ "MessageNoChapterProviders": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043f\u043b\u0430\u0433\u0438\u043d-\u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0441\u0446\u0435\u043d (\u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440: ChapterDb) \u0434\u043b\u044f \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u0434\u043b\u044f \u0441\u0446\u0435\u043d.",
+ "TabChapters": "\u0421\u0446\u0435\u043d\u044b",
+ "HeaderDownloadChaptersFor": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0434\u043b\u044f:",
+ "HeaderChapterDownloadingHelp": "\u041f\u0440\u0438 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u043e\u0432 \u0432 Emby, \u0438\u043c\u0435\u044e\u0442\u0441\u044f \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0438 \u043f\u043e\u043d\u044f\u0442\u043d\u044b\u0445 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0439 \u0441\u0446\u0435\u043d \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044f \u043f\u043b\u0430\u0433\u0438\u043d\u044b \u0441\u0446\u0435\u043d, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, ChapterDb.",
"OptionLibraryFolders": "\u041c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438",
+ "LabelHomePageSection4": "\u0413\u043b\u0430\u0432\u043d\u0430\u044f \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430 - \u0440\u0430\u0437\u0434\u0435\u043b 4:",
+ "OptionLatestChannelMedia": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432",
+ "HeaderLatestChannelItems": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437 \u043a\u0430\u043d\u0430\u043b\u043e\u0432",
"TitleRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
+ "HeaderMyViews": "\u041c\u043e\u0438 \u0430\u0441\u043f\u0435\u043a\u0442\u044b",
"OptionLatestTvRecordings": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0437\u0430\u043f\u0438\u0441\u0438",
+ "ButtonRefresh": "\u041f\u043e\u0434\u043d\u043e\u0432\u0438\u0442\u044c",
"LabelProtocolInfo": "\u041e \u043f\u0440\u043e\u0442\u043e\u043a\u043e\u043b\u0435:",
"LabelProtocolInfoHelp": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u043f\u0440\u0438 \u043e\u0442\u043a\u043b\u0438\u043a\u0435 \u043d\u0430 \u0437\u0430\u043f\u0440\u043e\u0441\u044b GetProtocolInfo \u043e\u0442 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430.",
- "TabNfo": "NFO-\u0444\u0430\u0439\u043b\u044b",
- "HeaderKodiMetadataHelp": "\u0412 Emby \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432 NFO-\u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u0427\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0430\u0442\u044c NFO-\u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0432\u043a\u043b\u0430\u0434\u043a\u0443 \u00ab\u0421\u043b\u0443\u0436\u0431\u044b\u00bb, \u0434\u043b\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u043f\u043e \u0442\u0438\u043f\u0430\u043c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445.",
- "LabelKodiMetadataUser": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441 NFO-\u0444\u0430\u0439\u043b\u0430\u043c\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c:",
- "LabelKodiMetadataUserHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u043d\u043d\u044b\u0435 \u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043b\u0438\u0441\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 Emby Server \u0438 NFO-\u0444\u0430\u0439\u043b\u0430\u043c\u0438.",
- "LabelKodiMetadataDateFormat": "\u0424\u043e\u0440\u043c\u0430\u0442 \u0434\u0430\u0442\u044b \u0432\u044b\u043f\u0443\u0441\u043a\u0430:",
- "LabelKodiMetadataDateFormatHelp": "\u0412\u0441\u0435 \u0434\u0430\u0442\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 NFO-\u0444\u0430\u0439\u043b\u043e\u0432 \u0431\u0443\u0434\u0443\u0442 \u0441\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0438 \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0430.",
- "LabelKodiMetadataSaveImagePaths": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0443\u0442\u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 NFO-\u0444\u0430\u0439\u043b\u043e\u0432",
- "LabelKodiMetadataSaveImagePathsHelp": "\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f, \u0435\u0441\u043b\u0438 \u0438\u043c\u0435\u043d\u0430 \u0444\u0430\u0439\u043b\u043e\u0432 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u043d\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u044f\u0449\u0438\u043c \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0430\u043c Kodi.",
- "LabelKodiMetadataEnablePathSubstitution": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "\u0412\u043a\u043b\u044e\u0447\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u043a \u0440\u0438\u0441\u0443\u043d\u043a\u0430\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "\u0421\u043c. \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439",
- "OptionDisplayChannelsInline": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043a\u0430\u043d\u0430\u043b\u044b \u0440\u044f\u0434\u043e\u043c \u0441 \u043c\u043e\u0438\u043c\u0438 \u0430\u0441\u043f\u0435\u043a\u0442\u0430\u043c\u0438.",
- "OptionDisplayChannelsInlineHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043a\u0430\u043d\u0430\u043b\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0440\u044f\u0434\u043e\u043c \u0441 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0430\u0441\u043f\u0435\u043a\u0442\u0430\u043c\u0438. \u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432\u043d\u0443\u0442\u0440\u0438 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0430\u0441\u043f\u0435\u043a\u0442\u0430 \u00ab\u041a\u0430\u043d\u0430\u043b\u044b\u00bb.",
"LabelDisplayCollectionsView": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0430\u0441\u043f\u0435\u043a\u0442 \u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438 \u0444\u0438\u043b\u044c\u043c\u043e\u0432",
- "LabelDisplayCollectionsViewHelp": "\u042d\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0430\u043c\u0438 \u0438\u043b\u0438 \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0438\u043c\u0435\u0435\u0442\u0435 \u0434\u043e\u0441\u0442\u0443\u043f. \u0427\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435 \u043b\u044e\u0431\u043e\u0439 \u0444\u0438\u043b\u044c\u043c, \u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e\". ",
- "LabelKodiMetadataEnableExtraThumbs": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c extrafanart \u0432\u043d\u0443\u0442\u0440\u044c extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "\u041f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432, \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u044c extrafanart \u0438 extrathumbs \u0434\u043b\u044f \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0438 \u0441 \u043e\u0431\u043e\u043b\u043e\u0447\u043a\u043e\u0439 Kodi.",
+ "HeaderSubtitles": "\u0421\u0443\u0431\u0442.",
"TabServices": "\u0421\u043b\u0443\u0436\u0431\u044b",
"TabLogs": "\u0416\u0443\u0440\u043d\u0430\u043b\u044b",
"HeaderServerLogFiles": "\u0424\u0430\u0439\u043b\u044b \u0436\u0443\u0440\u043d\u0430\u043b\u0430 \u0441\u0435\u0440\u0432\u0435\u0440\u0430:",
@@ -1029,6 +820,8 @@
"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.",
+ "TabUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
+ "TabScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a",
"HeaderHttpHeaders": "HTTP-\u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043a\u0438",
"HeaderIdentificationHeader": "\u0417\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a \u0434\u043b\u044f \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u044f",
"LabelValue": "\u0417\u043d\u0430\u0447\u0435\u043d\u0438\u0435:",
@@ -1041,19 +834,19 @@
"TabFilter": "\u0424\u0438\u043b\u044c\u0442\u0440\u044b",
"ButtonView": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u0442\u044c",
"LabelPageSize": "\u041f\u0440\u0435\u0434\u0435\u043b \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u043e\u0432:",
- "LabelPath": "\u041f\u0443\u0442\u044c:",
"LabelView": "\u041f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435:",
- "TabUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
- "LabelSortName": "\u0418\u043c\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438:",
- "LabelDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f:",
+ "LabelManagement": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
"HeaderFeatures": "\u041c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b",
"HeaderAdvanced": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435",
"ButtonSync": "\u0421\u0438\u043d\u0445\u0440\u043e...",
- "TabScheduledTasks": "\u041f\u043b\u0430\u043d\u0438\u0440\u043e\u0432\u0449\u0438\u043a",
"HeaderChapters": "\u0421\u0446\u0435\u043d\u044b",
"HeaderResumeSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
"TabSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
"TitleUsers": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
+ "LabelMaxStreamingBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438:",
+ "LabelMaxStreamingBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438.",
+ "LabelMaxStaticBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0441\u0438\u043d\u0445\u0440-\u0438\u0438:",
+ "LabelMaxStaticBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u044b\u0441\u043e\u043a\u043e\u043c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435.",
"LabelProtocol": "\u041f\u0440\u043e\u0442\u043e\u043a\u043e\u043b:",
"OptionProtocolHttp": "HTTP",
"OptionProtocolHls": "\u041f\u0440\u044f\u043c\u0430\u044f HTTP-\u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044f (HLS)",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "\u0422\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044f",
"OptionContextStatic": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
"ButtonAddToPlaylist": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442",
+ "MessageNoPlaylistsAvailable": "\u041f\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) \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0441\u043f\u0438\u0441\u043a\u043e\u0432 \u0438\u0437 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0441\u0442\u0438 \u0435\u0434\u0438\u043d\u043e\u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e. \u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u044b \u0432\u043e \u0441\u043f\u0438\u0441\u043a\u0438, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435, \u0437\u0430\u0442\u0435\u043c \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u00ab\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u00bb.",
+ "MessageNoPlaylistItemsAvailable": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u0434\u0430\u043d\u043d\u044b\u0439 \u043f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442 \u043f\u0443\u0441\u0442.",
"TabPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b",
- "ButtonClose": "\u0417\u0430\u043a\u0440\u044b\u0442\u044c",
"LabelAllLanguages": "\u0412\u0441\u0435 \u044f\u0437\u044b\u043a\u0438",
"HeaderBrowseOnlineImages": "\u041f\u0440\u043e\u0441\u043c\u043e\u0442\u0440 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432 \u0441\u0435\u0442\u0438",
"LabelSource": "\u041e\u0442\u043a\u0443\u0434\u0430:",
@@ -1080,7 +874,6 @@
"OptionBox": "\u041a\u043e\u0440\u043e\u0431\u043a\u0430",
"OptionBoxRear": "\u041a\u043e\u0440\u043e\u0431\u043a\u0430 \u0441\u0437\u0430\u0434\u0438",
"OptionDisc": "\u0414\u0438\u0441\u043a",
- "OptionIcon": "\u0417\u043d\u0430\u0447\u043e\u043a",
"OptionLogo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
"OptionMenu": "\u041c\u0435\u043d\u044e",
"OptionScreenshot": "\u0421\u043d\u0438\u043c\u043e\u043a \u044d\u043a\u0440\u0430\u043d\u0430",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "\u041d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\u0435",
"OptionMissingParentalRating": "\u041d\u0435\u0442 \u0432\u043e\u0437\u0440\u0430\u0441\u0442. \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438",
"OptionStub": "\u0417\u0430\u0433\u043b\u0443\u0448\u043a\u0430",
+ "HeaderEpisodes": "\u042d\u043f\u0438\u0437\u043e\u0434\u044b:",
"OptionSeason0": "\u0421\u0435\u0437\u043e\u043d 0",
"LabelReport": "\u041e\u0442\u0447\u0451\u0442:",
"OptionReportSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
"OptionReportAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
"OptionReportAdultVideos": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
+ "ButtonMoreItems": "\u0415\u0449\u0451...",
"HeaderActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
"ScheduledTaskStartedWithName": "{0} - \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430",
"ScheduledTaskCancelledWithName": "{0} - \u0431\u044b\u043b\u0430 \u043e\u0442\u043c\u0435\u043d\u0435\u043d\u0430",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u044b \u043a {0} \u043d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c",
"LabelRunningTimeValue": "\u0412\u0440\u0435\u043c\u044f \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u0438\u044f: {0}",
"LabelIpAddressValue": "IP-\u0430\u0434\u0440\u0435\u0441: {0}",
- "UserLockedOutWithName": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u0431\u044b\u043b \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d",
"UserConfigurationUpdatedWithName": "\u041a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u044f \u043f\u043e\u043b\u044c\u0437-\u043b\u044f {0} \u0431\u044b\u043b\u0430 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0430",
"UserCreatedWithName": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u0431\u044b\u043b \u0441\u043e\u0437\u0434\u0430\u043d",
"UserPasswordChangedWithName": "\u041f\u0430\u0440\u043e\u043b\u044c \u043f\u043e\u043b\u044c\u0437-\u043b\u044f {0} \u0431\u044b\u043b \u0438\u0437\u043c\u0435\u043d\u0451\u043d",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server \u0431\u044b\u043b \u043e\u0431\u043d\u043e\u0432\u043b\u0451\u043d",
"AuthenticationSucceededWithUserName": "{0} - \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u044f \u0443\u0441\u043f\u0435\u0448\u043d\u0430",
"FailedLoginAttemptWithUserName": "{0} - \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u0432\u0445\u043e\u0434\u0430 \u043d\u0435\u0443\u0434\u0430\u0447\u043d\u0430",
- "UserDownloadingItemWithValues": "{0} \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 {1}",
"UserStartedPlayingItemWithValues": "{0} - \u0432\u043e\u0441\u043f\u0440. \u00ab{1}\u00bb \u0437\u0430\u043f-\u043d\u043e",
"UserStoppedPlayingItemWithValues": "{0} - \u0432\u043e\u0441\u043f\u0440. \u00ab{1}\u00bb \u043e\u0441\u0442-\u043d\u043e",
"AppDeviceValues": "\u041f\u0440\u0438\u043b.: {0}, \u0423\u0441\u0442\u0440.: {1}",
"ProviderValue": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a: {0}",
+ "HeaderAudio": "\u0410\u0443\u0434\u0438\u043e",
+ "HeaderVideo": "\u0412\u0438\u0434\u0435\u043e",
+ "MessageLoadingContent": "\u0417\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442\u0441\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435...",
"LabelChannelDownloadSizeLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0440\u0430\u0437\u043c\u0435\u0440\u0430 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u043e\u0433\u043e, \u0413\u0411:",
- "LabelChannelDownloadSizeLimitHelpText": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u044c\u0442\u0435 \u0440\u0430\u0437\u043c\u0435\u0440 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432.",
+ "LabelMusicStaticBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0441\u0438\u043d\u0445\u0440-\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438:",
+ "LabelMusicStaticBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438",
+ "LabelMusicStreamingTranscodingBitrate": "\u041f\u043e\u0442\u043e\u043a. \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 \u043c\u0443\u0437\u044b\u043a\u0438:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u0443\u044e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u043c\u0443\u0437\u044b\u043a\u0438",
"HeaderRecentActivity": "\u041d\u0435\u0434\u0430\u0432\u043d\u0438\u0435 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
"HeaderPeople": "\u041b\u044e\u0434\u0438",
"HeaderDownloadPeopleMetadataFor": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u0431\u0438\u043e\u0433\u0440\u0430\u0444\u0438\u0439 \u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0434\u043b\u044f:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u0430\u0441\u043f\u0435\u043a\u0442 \u041f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u043f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043e\u0431\u044b\u0447\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438",
"ViewTypeLiveTvRecordingGroups": "\u0417\u0430\u043f\u0438\u0441\u0438",
"ViewTypeLiveTvChannels": "\u041a\u0430\u043d\u0430\u043b\u044b",
- "LabelEasyPinCode": "\u0423\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434:",
- "EasyPasswordHelp": "\u0423\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0438 \u043c\u043e\u0436\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u043d\u0443\u0442\u0440\u0438\u0441\u0435\u0442\u0435\u0432\u043e\u0433\u043e \u0432\u0445\u043e\u0434\u0430.",
- "LabelInNetworkSignInWithEasyPassword": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u0438\u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0432\u0445\u043e\u0434 \u0441 \u043c\u043e\u0438\u043c \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u043c PIN-\u043a\u043e\u0434\u043e\u043c",
- "LabelInNetworkSignInWithEasyPasswordHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448 \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434 \u0434\u043b\u044f \u0432\u0445\u043e\u0434\u0430 \u0432 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438. \u0412\u0430\u0448 \u043e\u0431\u044b\u0447\u043d\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c \u0431\u0443\u0434\u0435\u0442 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u043d\u0435 \u0434\u043e\u043c\u0430. \u0415\u0441\u043b\u0438 \u043f\u043e\u043b\u0435 PIN-\u043a\u043e\u0434\u0430 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0442\u043e \u0432\u0430\u043c \u043d\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0430\u0440\u043e\u043b\u044c \u0432\u043d\u0443\u0442\u0440\u0438 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438.",
"HeaderPassword": "\u041f\u0430\u0440\u043e\u043b\u044c",
"HeaderLocalAccess": "\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f",
"HeaderViewOrder": "\u041f\u043e\u0440\u044f\u0434\u043e\u043a \u0430\u0441\u043f\u0435\u043a\u0442\u043e\u0432",
- "ButtonResetEasyPassword": "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434",
"LabelSelectUserViewOrder": "\u0412\u044b\u0431\u043e\u0440 \u043f\u043e\u0440\u044f\u0434\u043a\u0430 \u0430\u0441\u043f\u0435\u043a\u0442\u043e\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439",
+ "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:",
+ "FolderTypeMixed": "\u0420\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\u0437\u0440\u043e\u0441\u043b\u044b\u0435 \u0432\u0438\u0434\u0435\u043e",
+ "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",
+ "LabelArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438:",
+ "LabelArtistsHelp": "\u0414\u043b\u044f \u0440\u0430\u0437\u0434\u0435\u043b\u0435\u043d\u0438\u044f \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u00ab;\u00bb",
+ "ButtonAdvancedRefresh": "\u0420\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u043f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u0435...",
+ "LabelPersonRole": "\u0420\u043e\u043b\u044c:",
+ "LabelPersonRoleHelp": "\u0420\u043e\u043b\u0438 \u043e\u0431\u044b\u0447\u043d\u043e \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0430\u043a\u0442\u0451\u0440\u0430\u043c.",
+ "LabelPath": "\u041f\u0443\u0442\u044c:",
+ "LabelSortName": "\u0418\u043c\u044f \u0441\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u043a\u0438:",
+ "LabelDateAdded": "\u0414\u0430\u0442\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f:",
"LabelMetadataRefreshMode": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445:",
"LabelImageRefreshMode": "\u0420\u0435\u0436\u0438\u043c \u043f\u043e\u0434\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432:",
"OptionDownloadMissingImages": "\u041f\u043e\u0434\u0433\u0440\u0443\u0437\u043a\u0430 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0438\u0445 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "\u041e \u043f\u0435\u0440\u0441\u043e\u043d\u0435",
"HeaderIdentifyItem": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
"HeaderIdentifyItemHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043e\u0434\u043d\u043e \u0438\u043b\u0438 \u0431\u043e\u043b\u0435\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u0439 \u043f\u043e\u0438\u0441\u043a\u0430. \u0414\u043b\u044f \u043f\u0440\u0438\u0440\u043e\u0441\u0442\u0430 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u043e\u0432 \u043f\u043e\u0438\u0441\u043a\u0430 \u0443\u0431\u0435\u0440\u0438\u0442\u0435 \u0443\u0441\u043b\u043e\u0432\u0438\u0435.",
- "HeaderConfirmDeletion": "\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u044f",
"LabelFollowingFileWillBeDeleted": "\u0411\u0443\u0434\u0435\u0442 \u0443\u0434\u0430\u043b\u0451\u043d \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0444\u0430\u0439\u043b:",
"LabelIfYouWishToContinueWithDeletion": "\u0415\u0441\u043b\u0438 \u0432\u044b \u0445\u043e\u0442\u0438\u0442\u0435 \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c, \u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u044d\u0442\u043e, \u0432\u0432\u0435\u0434\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f:",
"ButtonIdentify": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u0442\u044c",
"LabelAlbumArtist": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c \u0430\u043b\u044c\u0431\u043e\u043c\u0430:",
- "LabelAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430:",
"LabelAlbum": "\u0410\u043b\u044c\u0431\u043e\u043c",
"LabelCommunityRating": "\u041e\u0431\u0449\u0435\u0441\u0442\u0432\u0435\u043d\u043d\u0430\u044f \u043e\u0446\u0435\u043d\u043a\u0430:",
"LabelVoteCount": "\u041a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u043e \u0433\u043e\u043b\u043e\u0441\u043e\u0432:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "\u041a\u043b\u044e\u0447\u0435\u0432\u0430\u044f \u0444\u0440\u0430\u0437\u0430:",
"LabelOverview": "\u041e\u0431\u0437\u043e\u0440:",
"LabelShortOverview": "\u041a\u0440\u0430\u0442\u043a\u0438\u0439 \u043e\u0431\u0437\u043e\u0440:",
- "LabelReleaseDate": "\u0414\u0430\u0442\u0430 \u0432\u044b\u043f\u0443\u0441\u043a\u0430:",
- "LabelYear": "\u0413\u043e\u0434:",
"LabelPlaceOfBirth": "\u041c\u0435\u0441\u0442\u043e \u0440\u043e\u0436\u0434\u0435\u043d\u0438\u044f:",
- "LabelEndDate": "\u041a\u043e\u043d\u0435\u0447\u043d\u0430\u044f \u0434\u0430\u0442\u0430:",
"LabelAirDate": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430:",
"LabelAirTime:": "\u0412\u0440\u0435\u043c\u044f \u044d\u0444\u0438\u0440\u0430:",
"LabelRuntimeMinutes": "\u0414\u043b\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0441\u0442\u044c, \u043c\u0438\u043d:",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
"LabelLockItemToPreventChanges": "\u0417\u0430\u0444\u0438\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u044d\u043b\u0435\u043c\u0435\u043d\u0442, \u0447\u0442\u043e\u0431\u044b \u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442\u044c \u0431\u0443\u0434\u0443\u0449\u0438\u0435 \u043f\u0440\u0430\u0432\u043a\u0438",
"MessageLeaveEmptyToInherit": "\u041d\u0435 \u0437\u0430\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442 \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430, \u0438\u043b\u0438 \u0433\u043b\u043e\u0431\u0430\u043b\u044c\u043d\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.",
- "TabDonate": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f",
"HeaderDonationType": "\u0422\u0438\u043f \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f:",
"OptionMakeOneTimeDonation": "\u0421\u0434\u0435\u043b\u0430\u0442\u044c \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0435 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435",
- "OptionOneTimeDescription": "\u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043a\u043e\u043c\u0430\u043d\u0434\u0435 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430 \u0432\u0430\u0448\u0435\u0439 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438. \u041d\u0435 \u0434\u0430\u0451\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432 \u0438 \u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0441\u044f \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430.",
- "OptionLifeTimeSupporterMembership": "\u041f\u043e\u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
- "OptionYearlySupporterMembership": "\u0413\u043e\u0434\u043e\u0432\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
- "OptionMonthlySupporterMembership": "\u041c\u0435\u0441\u044f\u0447\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
"OptionNoTrailer": "\u0411\u0435\u0437 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0430",
"OptionNoThemeSong": "\u0411\u0435\u0437 \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0439 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
"OptionNoThemeVideo": "\u0411\u0435\u0437 \u0442\u0435\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0432\u0438\u0434\u0435\u043e",
"LabelOneTimeDonationAmount": "\u0421\u0443\u043c\u043c\u0430 \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f:",
- "ButtonDonate": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u044c",
- "ButtonPurchase": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438",
"OptionActor": "\u0410\u043a\u0442\u0451\u0440",
"OptionComposer": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0442\u043e\u0440",
"OptionDirector": "\u0420\u0435\u0436\u0438\u0441\u0441\u0451\u0440",
"OptionGuestStar": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0451\u043d\u043d\u044b\u0439 \u0430\u043a\u0442\u0451\u0440",
"OptionProducer": "\u041f\u0440\u043e\u0434\u044e\u0441\u0435\u0440",
"OptionWriter": "\u0421\u0446\u0435\u043d\u0430\u0440\u0438\u0441\u0442",
+ "LabelEpisodeNamePlain": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
+ "LabelSeriesNamePlain": "\u041d\u0430\u0437\u0432\u0430\u043d\u0438\u0435 \u0441\u0435\u0440\u0438\u0430\u043b\u0430",
+ "LabelSeasonNumberPlain": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430",
+ "LabelEpisodeNumberPlain": "\u041d\u043e\u043c\u0435\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
+ "LabelEndingEpisodeNumberPlain": "\u041d\u043e\u043c\u0435\u0440 \u043a\u043e\u043d\u0435\u0447\u043d\u043e\u0433\u043e \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
+ "OptionOneTimeDescription": "\u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u043a\u043e\u043c\u0430\u043d\u0434\u0435 \u0434\u043b\u044f \u043f\u043e\u043a\u0430\u0437\u0430 \u0432\u0430\u0448\u0435\u0439 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438. \u041d\u0435 \u0434\u0430\u0451\u0442 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0445 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432 \u0438 \u043d\u0435 \u0431\u0443\u0434\u0435\u0442 \u0432\u044b\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0441\u044f \u043a\u043b\u044e\u0447 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430.",
"LabelAirDays": "\u0414\u043d\u0438 \u044d\u0444\u0438\u0440\u0430:",
"LabelAirTime": "\u0412\u0440\u0435\u043c\u044f \u044d\u0444\u0438\u0440\u0430:",
"HeaderMediaInfo": "\u041e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "\u041e \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u0430\u0445",
"HeaderRevisionHistory": "\u0418\u0441\u0442\u043e\u0440\u0438\u044f \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439",
"ButtonViewWebsite": "\u0421\u043c. \u0432\u0435\u0431\u0441\u0430\u0439\u0442",
+ "ViewTypeLiveTvNowPlaying": "\u0412 \u044d\u0444\u0438\u0440\u0435",
+ "ViewTypeLatestGames": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0435 \u0438\u0433\u0440\u044b",
+ "ViewTypeRecentlyPlayedGames": "C\u044b\u0433\u0440\u0430\u043d\u043d\u044b\u0435 \u043d\u0435\u0434\u0430\u0432\u043d\u043e",
+ "ViewTypeGameFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
+ "ViewTypeGameSystems": "\u0418\u0433\u0440\u043e\u0432\u044b\u0435 \u0441\u0438\u0441\u0442\u0435\u043c\u044b",
+ "ViewTypeGameGenres": "\u0416\u0430\u043d\u0440\u044b",
+ "ViewTypeTvResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435",
+ "ViewTypeTvNextUp": "\u041e\u0447\u0435\u0440\u0435\u0434\u043d\u043e\u0435",
+ "ViewTypeTvLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435",
+ "ViewTypeTvGenres": "\u0416\u0430\u043d\u0440\u044b",
+ "ViewTypeMovieResume": "\u0412\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u0438\u043c\u043e\u0435",
+ "ViewTypeMovieLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435",
+ "ViewTypeMovieMovies": "\u0424\u0438\u043b\u044c\u043c\u044b",
+ "ViewTypeMovieCollections": "\u041a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0438",
+ "ViewTypeMovieFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
+ "ViewTypeMovieGenres": "\u0416\u0430\u043d\u0440\u044b",
+ "ViewTypeMusicLatest": "\u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435",
+ "ViewTypeMusicAlbums": "\u0410\u043b\u044c\u0431\u043e\u043c\u044b",
+ "ViewTypeMusicAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430",
+ "TabDonate": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u043d\u0438\u044f",
+ "OptionLifeTimeSupporterMembership": "\u041f\u043e\u0436\u0438\u0437\u043d\u0435\u043d\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
+ "OptionYearlySupporterMembership": "\u0413\u043e\u0434\u043e\u0432\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
+ "OptionMonthlySupporterMembership": "\u041c\u0435\u0441\u044f\u0447\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
+ "ViewTypeTvShowSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b",
+ "ViewTypeTvFavoriteSeries": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0441\u0435\u0440\u0438\u0430\u043b\u044b",
+ "ViewTypeTvFavoriteEpisodes": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u044d\u043f\u0438\u0437\u043e\u0434\u044b",
"HeaderXmlSettings": "XML-\u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
"HeaderXmlDocumentAttributes": "\u0410\u0442\u0440\u0438\u0431\u0443\u0442\u044b XML-\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
"HeaderXmlDocumentAttribute": "\u0410\u0442\u0440\u0438\u0431\u0443\u0442 XML-\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430",
"XmlDocumentAttributeListHelp": "\u0414\u0430\u043d\u043d\u044b\u0435 \u0430\u0442\u0440\u0438\u0431\u0443\u0442\u044b \u043f\u0440\u0438\u043c\u0435\u043d\u044f\u044e\u0442\u0441\u044f \u043a\u043e \u043a\u043e\u0440\u043d\u0435\u0432\u043e\u043c\u0443 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443 \u043a\u0430\u0436\u0434\u043e\u0433\u043e XML-\u043e\u0442\u043a\u043b\u0438\u043a\u0430.",
"OptionSaveMetadataAsHidden": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435 \u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0432 \u0432\u0438\u0434\u0435 \u0441\u043a\u0440\u044b\u0442\u044b\u0445 \u0444\u0430\u0439\u043b\u043e\u0432",
+ "ViewTypeMusicSongs": "\u041a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
"LabelExtractChaptersDuringLibraryScan": "\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u0442\u044c \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
"LabelExtractChaptersDuringLibraryScanHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0440\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d \u0431\u0443\u0434\u0443\u0442 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u044b, \u043a\u043e\u0433\u0434\u0430 \u0432\u0438\u0434\u0435\u043e \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u0443\u0435\u0442\u0441\u044f \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438. \u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u0438\u0437\u0432\u043b\u0435\u0447\u0435\u043d\u044b \u0432 \u0442\u0435\u0447\u0435\u043d\u0438\u0435 \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u0447\u0438 \u00ab\u0420\u0438\u0441\u0443\u043d\u043a\u0438 \u0441\u0446\u0435\u043d\u00bb, \u043f\u043e\u0437\u0432\u043e\u043b\u044f\u044f \u0440\u0435\u0433\u0443\u043b\u044f\u0440\u043d\u043e\u043c\u0443 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044e \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0432\u0435\u0440\u0448\u0430\u0442\u044c\u0441\u044f \u0431\u044b\u0441\u0442\u0440\u0435\u0435.",
- "LabelConnectGuestUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Emby \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441 \u044d-\u043f\u043e\u0447\u0442\u044b:",
+ "ViewTypeMusicFavorites": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
+ "ViewTypeMusicFavoriteAlbums": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0430\u043b\u044c\u0431\u043e\u043c\u044b",
+ "ViewTypeMusicFavoriteArtists": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u0438\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
+ "ViewTypeMusicFavoriteSongs": "\u0418\u0437\u0431\u0440\u0430\u043d\u043d\u044b\u0435 \u043a\u043e\u043c\u043f\u043e\u0437\u0438\u0446\u0438\u0438",
+ "ButtonAddLocalUser": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
+ "HeaderIdentification": "\u0420\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u0435",
"LabelConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Emby \/ \u044d-\u043f\u043e\u0447\u0442\u0430:",
- "LabelConnectUserNameHelp": "\u0421\u043e\u0435\u0434\u0438\u043d\u044f\u0435\u0442 \u044d\u0442\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f c \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e Emby, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u043c \u0432\u0445\u043e\u0434\u043e\u043c \u0438\u0437 \u043b\u044e\u0431\u043e\u0433\u043e Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043d\u0435 \u0437\u043d\u0430\u044f IP-\u0430\u0434\u0440\u0435\u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
- "ButtonLearnMoreAboutEmbyConnect": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e\u0431 Emby Connect",
+ "LabelConnectUserNameHelp": "\u0421\u043e\u0435\u0434\u0438\u043d\u044f\u0435\u0442 \u044d\u0442\u043e\u0433\u043e \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f c \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u044c\u044e Emby, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u043c \u0432\u0445\u043e\u0434\u043e\u043c \u0438\u0437 \u043b\u044e\u0431\u043e\u0433\u043e Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043d\u0435 \u0437\u043d\u0430\u044f IP-\u0430\u0434\u0440\u0435\u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
+ "ButtonNext": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0435\u0435...",
+ "ButtonPrevious": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0435\u0435\u0435...",
"LabelExternalPlayers": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0438:",
"LabelExternalPlayersHelp": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442\u0441\u044f \u043a\u043d\u043e\u043f\u043a\u0438 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445. \u042d\u0442\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 URL-\u0441\u0445\u0435\u043c\u044b, \u0431\u043e\u043b\u044c\u0448\u0435\u0439 \u0447\u0430\u0441\u0442\u044c\u044e \u0432 Android \u0438 iOS. \u0412\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445 \u043e\u0431\u044b\u0447\u043d\u043e \u043d\u0435\u0442 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0438 \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0433\u043e \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u0432\u043e\u0437\u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f.",
- "LabelNativeExternalPlayersHelp": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442\u0441\u044f \u043a\u043d\u043e\u043f\u043a\u0438 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445.",
- "LabelEnableItemPreviews": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
- "LabelEnableItemPreviewsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0441\u043a\u043e\u043b\u044c\u0437\u044f\u0449\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u044d\u043a\u0440\u0430\u043d\u0430\u0445, \u0435\u0441\u043b\u0438 \u0449\u0451\u043b\u043a\u043d\u0443\u0442\u044c \u043f\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443.",
+ "ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}",
"HeaderSubtitleProfile": "\u041f\u0440\u043e\u0444\u0438\u043b\u044c \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432",
"HeaderSubtitleProfiles": "\u041f\u0440\u043e\u0444\u0438\u043b\u0438 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432",
"HeaderSubtitleProfilesHelp": "\u0412 \u043f\u0440\u043e\u0444\u0438\u043b\u044f\u0445 \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u043e\u043f\u0438\u0441\u044b\u0432\u0430\u044e\u0442\u0441\u044f \u0444\u043e\u0440\u043c\u0430\u0442\u044b \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u043e\u0432 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "HLS-\u0441\u0435\u0433\u043c\u0435\u043d\u0442. \u0441\u0443\u0431\u0442\u0438\u0442\u0440\u044b",
"LabelSubtitleFormatHelp": "\u041f\u0440\u0438\u043c\u0435\u0440: srt",
"ButtonLearnMore": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435",
+ "HeaderKodiMetadataHelp": "\u0412 Emby \u0432\u0441\u0442\u0440\u043e\u0435\u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u043a\u0430 \u0434\u043b\u044f \u0444\u0430\u0439\u043b\u043e\u0432 NFO-\u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445. \u0427\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0438\u043b\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0430\u0442\u044c NFO-\u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 \u0432\u043a\u043b\u0430\u0434\u043a\u0443 \u00ab\u0421\u043b\u0443\u0436\u0431\u044b\u00bb, \u0434\u043b\u044f \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u043f\u043e \u0442\u0438\u043f\u0430\u043c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445.",
+ "LabelKodiMetadataUser": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0441 NFO-\u0444\u0430\u0439\u043b\u0430\u043c\u0438 \u0434\u0430\u043d\u043d\u044b\u0445 \u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u043c:",
+ "LabelKodiMetadataUserHelp": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0434\u0430\u043d\u043d\u044b\u0435 \u043e \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u043c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u043b\u0438\u0441\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u044b\u043c\u0438 \u043c\u0435\u0436\u0434\u0443 Emby Server \u0438 NFO-\u0444\u0430\u0439\u043b\u0430\u043c\u0438.",
+ "LabelKodiMetadataDateFormat": "\u0424\u043e\u0440\u043c\u0430\u0442 \u0434\u0430\u0442\u044b \u0432\u044b\u043f\u0443\u0441\u043a\u0430:",
+ "LabelKodiMetadataDateFormatHelp": "\u0412\u0441\u0435 \u0434\u0430\u0442\u044b \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 NFO-\u0444\u0430\u0439\u043b\u043e\u0432 \u0431\u0443\u0434\u0443\u0442 \u0441\u0447\u0438\u0442\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0438 \u0437\u0430\u043f\u0438\u0441\u044b\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0430.",
+ "LabelKodiMetadataSaveImagePaths": "\u0421\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u043f\u0443\u0442\u0438 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 NFO-\u0444\u0430\u0439\u043b\u043e\u0432",
+ "LabelKodiMetadataSaveImagePathsHelp": "\u0420\u0435\u043a\u043e\u043c\u0435\u043d\u0434\u0443\u0435\u0442\u0441\u044f, \u0435\u0441\u043b\u0438 \u0438\u043c\u0435\u043d\u0430 \u0444\u0430\u0439\u043b\u043e\u0432 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u043d\u0435 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0442 \u0440\u0443\u043a\u043e\u0432\u043e\u0434\u044f\u0449\u0438\u043c \u043f\u0440\u0438\u043d\u0446\u0438\u043f\u0430\u043c Kodi.",
+ "LabelKodiMetadataEnablePathSubstitution": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "\u0412\u043a\u043b\u044e\u0447\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u043a \u0440\u0438\u0441\u0443\u043d\u043a\u0430\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u043e\u0432 \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439 \u0441\u0435\u0440\u0432\u0435\u0440\u0430.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "\u0421\u043c. \u043f\u043e\u0434\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u043f\u0443\u0442\u0435\u0439",
+ "LabelKodiMetadataEnableExtraThumbs": "\u041a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u0442\u044c extrafanart \u0432\u043d\u0443\u0442\u0440\u044c extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "\u041f\u0440\u0438 \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435 \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432, \u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u044c extrafanart \u0438 extrathumbs \u0434\u043b\u044f \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0439 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u043e\u0441\u0442\u0438 \u0441 \u043e\u0431\u043e\u043b\u043e\u0447\u043a\u043e\u0439 Kodi.",
"TabPlayback": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435",
"HeaderLanguagePreferences": "\u042f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438",
"TabCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "\u0418\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u043c\u0443 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e",
"LabelEnableIntroParentalControl": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0438\u043d\u0442\u0435\u043b\u043b\u0435\u043a\u0442\u0443\u0430\u043b\u044c\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435\u043c",
"LabelEnableIntroParentalControlHelp": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u0431\u0443\u0434\u0443\u0442 \u0432\u044b\u0431\u0438\u0440\u0430\u0442\u044c\u0441\u044f \u0441 \u0432\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u043e\u0439 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0435\u0439 \u0440\u0430\u0432\u043d\u043e\u0439 \u0438\u043b\u0438 \u043c\u0435\u043d\u044c\u0448\u0435\u0439, \u0447\u0435\u043c \u043f\u0440\u043e\u0441\u043c\u0430\u0442\u0440\u0438\u0432\u0430\u0435\u043c\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u0414\u043b\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0444\u0443\u043d\u043a\u0446\u0438\u0439 \u0442\u0440\u0435\u0431\u0443\u044e\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u043a\u0430\u043d\u0430\u043b\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
"OptionTrailersFromMyMoviesHelp": "\u0422\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0445 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
"LabelCustomIntrosPath": "\u041f\u0443\u0442\u044c \u043a \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u043c \u0437\u0430\u0441\u0442\u0430\u0432\u043a\u0430\u043c:",
"LabelCustomIntrosPathHelp": "\u041f\u0430\u043f\u043a\u0430, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0430\u044f \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b. \u0421\u043b\u0443\u0447\u0430\u0439\u043d\u043e \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u0432\u0438\u0434\u0435\u043e \u0431\u0443\u0434\u0435\u0442 \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u043e \u043f\u043e\u0441\u043b\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
- "ValueSpecialEpisodeName": "\u0421\u043f\u0435\u0446\u044d\u043f\u0438\u0437\u043e\u0434 - {0}",
+ "ButtonOptions": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442\u044b...",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u0414\u043b\u044f \u0434\u0430\u043d\u043d\u044b\u0445 \u0444\u0443\u043d\u043a\u0446\u0438\u0439 \u0442\u0440\u0435\u0431\u0443\u044e\u0442\u0441\u044f \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u043f\u043b\u0430\u0433\u0438\u043d\u0430 \u043a\u0430\u043d\u0430\u043b\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
"LabelSelectInternetTrailersForCinemaMode": "\u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b:",
"OptionUpcomingDvdMovies": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u043d\u043e\u0432\u044b\u043c \u0438 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c \u043d\u0430 DVD \u0438 BluRay",
"OptionUpcomingStreamingMovies": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u043d\u043e\u0432\u044b\u043c \u0438 \u043e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c \u043d\u0430 Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "\u041e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0441\u043c\u043e\u0433\u0443\u0442 \u0432\u044b\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0440\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0441\u0432\u043e\u0438\u0445 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0445 \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a.",
"LabelEnableCinemaMode": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430",
"HeaderCinemaMode": "\u0420\u0435\u0436\u0438\u043c \u043a\u0438\u043d\u043e\u0442\u0435\u0430\u0442\u0440\u0430",
+ "TabDevices": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
+ "LabelLocalHttpServerPortNumber": "\u041d\u043e\u043c\u0435\u0440 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e HTTP-\u043f\u043e\u0440\u0442\u0430:",
+ "LabelLocalHttpServerPortNumberHelp": "TCP-\u043f\u043e\u0440\u0442, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0443 HTTP-\u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby.",
+ "LabelEnableAutomaticPortMap": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u0440\u0442\u043e\u0432",
+ "LabelEnableAutomaticPortMapHelp": "\u041f\u043e\u043f\u044b\u0442\u0430\u0442\u044c\u0441\u044f \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043f\u043e\u0440\u0442 \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c \u043f\u043e\u0440\u0442\u043e\u043c \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e UPnP. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u043d\u0435 \u0441\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043c\u043e\u0434\u0435\u043b\u044f\u043c\u0438 \u043c\u0430\u0440\u0448\u0440\u0443\u0442\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u0432.",
"LabelDateAddedBehavior": "\u0414\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0437\u0430 \u0434\u0430\u0442\u0443 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u0438\u043d\u0438\u043c\u0430\u0435\u0442\u0441\u044f:",
"OptionDateAddedImportTime": "\u0414\u0430\u0442\u0430 \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0432\u043d\u0443\u0442\u0440\u044c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
"OptionDateAddedFileTime": "\u0414\u0430\u0442\u0430 \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0444\u0430\u0439\u043b\u0430",
"LabelDateAddedBehaviorHelp": "\u041f\u0440\u0438 \u043d\u0430\u043b\u0438\u0447\u0438\u0438 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u044f \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445, \u043e\u043d\u043e \u0432\u0441\u0435\u0433\u0434\u0430 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u0440\u0438\u043e\u0440\u0438\u0442\u0435\u0442\u043d\u043e, \u0447\u0435\u043c \u043b\u044e\u0431\u043e\u0439 \u0438\u0437 \u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0430\u0440\u0438\u0430\u043d\u0442\u043e\u0432.",
"LabelNumberTrailerToPlay": "\u0427\u0438\u0441\u043b\u043e \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f:",
+ "LabelChannelDownloadSizeLimitHelpText": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u044c\u0442\u0435 \u0440\u0430\u0437\u043c\u0435\u0440 \u043f\u0430\u043f\u043a\u0438 \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u043c\u044b\u0445 \u043a\u0430\u043d\u0430\u043b\u043e\u0432.",
"TitleDevices": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
"TabCameraUpload": "\u041a\u0430\u043c\u0435\u0440\u044b",
- "TabDevices": "\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
"HeaderCameraUploadHelp": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0430\u044f \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u043e\u0442\u0441\u043d\u044f\u0442\u044b\u0445 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0439 \u0438 \u0432\u0438\u0434\u0435\u043e \u0438\u0437 \u043c\u043e\u0431\u0438\u043b\u044c\u043d\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0432 Emby.",
"MessageNoDevicesSupportCameraUpload": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435\u0442 \u043a\u0430\u043a\u0438\u0445-\u043b\u0438\u0431\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u044e\u0442 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0443 \u0441 \u043a\u0430\u043c\u0435\u0440\u044b.",
"LabelCameraUploadPath": "\u041f\u0443\u0442\u044c \u0434\u043b\u044f \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0438 \u0441 \u043a\u0430\u043c\u0435\u0440\u044b:",
"LabelCameraUploadPathHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u043f\u0443\u0442\u044c \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0438, \u043f\u043e \u0436\u0435\u043b\u0430\u043d\u0438\u044e. \u0415\u0441\u043b\u0438 \u043d\u0435 \u0437\u0430\u0434\u0430\u043d\u043e, \u0442\u043e \u0431\u0443\u0434\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0430 \u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u0430\u044f \u043f\u0430\u043f\u043a\u0430. \u0415\u0441\u043b\u0438 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u044b\u0439 \u043f\u0443\u0442\u044c, \u0442\u043e \u0435\u0433\u043e \u0442\u0430\u043a\u0436\u0435 \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043e\u0431\u043b\u0430\u0441\u0442\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0438 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438.",
"LabelCreateCameraUploadSubfolder": "\u0421\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u043f\u043e\u0434\u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u043a\u0430\u0436\u0434\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
"LabelCreateCameraUploadSubfolderHelp": "\u041d\u0435\u0441\u0442\u0430\u043d\u0434\u0430\u0440\u0442\u043d\u044b\u0435 \u043f\u0430\u043f\u043a\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u044b \u0434\u043b\u044f \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u043f\u0440\u0438 \u0449\u0435\u043b\u0447\u043a\u0435 \u043d\u0430 \u043d\u0451\u043c \u0441\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \"\u0423\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\".",
+ "ButtonInviteUser": "\u041f\u0440\u0438\u0433\u043b\u0430\u0441\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
"LabelCustomDeviceDisplayName": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0435\u043c\u043e\u0435 \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u0435:",
"LabelCustomDeviceDisplayNameHelp": "\u041f\u0440\u0438\u0432\u0435\u0434\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0438\u043c\u044f \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u0438\u043b\u0438 \u043d\u0435 \u0437\u0430\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0438\u043c\u044f, \u0432\u044b\u0434\u0430\u043d\u043d\u043e\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e\u043c.",
"HeaderInviteUser": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
- "LabelConnectGuestUserNameHelp": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u044d-\u043f\u043e\u0447\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0432\u0430\u0448 \u0434\u0440\u0443\u0433 \u0434\u043b\u044f \u0432\u0445\u043e\u0434\u0430 \u043d\u0430 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 Emby.",
"HeaderInviteUserHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0432\u0430\u0448\u0438\u043c \u0434\u0440\u0443\u0437\u044c\u044f\u043c \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043a \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u043c \u0443\u043f\u0440\u043e\u0449\u0430\u0435\u0442\u0441\u044f \u0447\u0435\u0440\u0435\u0437 Emby Connect.",
"ButtonSendInvitation": "\u041f\u0435\u0440\u0435\u0434\u0430\u0442\u044c \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u0435",
- "HeaderSignInWithConnect": "\u0412\u0445\u043e\u0434 \u0447\u0435\u0440\u0435\u0437 Emby Connect",
"HeaderGuests": "\u0413\u043e\u0441\u0442\u0438",
"HeaderLocalUsers": "\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
"HeaderPendingInvitations": "\u041e\u0442\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0435 \u043f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "\u0412 \u0431\u0443\u0434\u043d\u0438",
"OptionWeekends": "\u0412\u044b\u0445\u043e\u0434\u043d\u044b\u0435",
"MessageProfileInfoSynced": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0441 Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e: \u0421\u0432\u044f\u0437\u044b\u0432\u0430\u043d\u0438\u0435 \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby",
"ButtonTrailerReel": "\u0421\u043a\u043b\u0435\u0438\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b",
"HeaderTrailerReel": "\u0421\u043a\u043b\u0435\u0439\u043a\u0430 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432",
"OptionPlayUnwatchedTrailersOnly": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0435\u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u044b\u0435 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b. \u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u043a\u0430\u043d\u0430\u043b \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432, \u0447\u0442\u043e\u0431\u044b \u0443\u0441\u0438\u043b\u0438\u0442\u044c \u0441\u0432\u043e\u0438 \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u044f \u043e\u0442 \u0444\u0438\u043b\u044c\u043c\u0430 \u043f\u0443\u0442\u0451\u043c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u043e\u0431\u0440\u0430\u043d\u0438\u044f \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0442\u0440\u0435\u0439\u043b\u0435\u0440\u043e\u0432.",
"HeaderNewUsers": "\u041d\u043e\u0432\u044b\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438",
"ButtonSignUp": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c\u0441\u044f",
+ "LabelConnectGuestUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f Emby \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441 \u044d-\u043f\u043e\u0447\u0442\u044b:",
+ "LabelConnectGuestUserNameHelp": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u044d-\u043f\u043e\u0447\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u043c\u0438 \u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0432\u0430\u0448 \u0434\u0440\u0443\u0433 \u0434\u043b\u044f \u0432\u0445\u043e\u0434\u0430 \u043d\u0430 \u0432\u0435\u0431-\u0441\u0430\u0439\u0442 Emby.",
"ButtonForgotPassword": "\u041d\u0430\u043f\u043e\u043c\u043d\u0438\u0442\u044c \u043f\u0430\u0440\u043e\u043b\u044c",
"OptionDisableUserPreferences": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u043c \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430\u043c",
"OptionDisableUserPreferencesHelp": "\u0415\u0441\u043b\u0438 \u0444\u043b\u0430\u0436\u043e\u043a \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d, \u0442\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u044b \u0441\u043c\u043e\u0433\u0443\u0442 \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u043f\u0440\u043e\u0444\u0438\u043b\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0440\u0438\u0441\u0443\u043d\u043a\u0438, \u043f\u0430\u0440\u043e\u043b\u0438 \u0438 \u044f\u0437\u044b\u043a\u043e\u0432\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "\u041e\u0431\u0449\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u043a \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0430\u043c",
"MessageGuestSharingPermissionsHelp": "\u041c\u043d\u043e\u0433\u0438\u0435 \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u044b \u0438\u0437\u043d\u0430\u0447\u0430\u043b\u044c\u043d\u043e \u043d\u0435\u0434\u043e\u0441\u0442\u0443\u043f\u043d\u044b \u0434\u043b\u044f \u0433\u043e\u0441\u0442\u0435\u0439, \u043d\u043e \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u044b \u043f\u043e \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438.",
"HeaderInvitations": "\u041f\u0440\u0438\u0433\u043b\u0430\u0448\u0435\u043d\u0438\u044f",
- "LabelForgotPasswordUsernameHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0435\u0441\u043b\u0438 \u043f\u043e\u043c\u043d\u0438\u0442\u0435 \u0435\u0433\u043e.",
"HeaderForgotPassword": "\u0417\u0430\u0431\u044b\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c?",
+ "LabelForgotPasswordUsernameHelp": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u0435\u0441\u043b\u0438 \u043f\u043e\u043c\u043d\u0438\u0442\u0435 \u0435\u0433\u043e.",
"TitleForgotPassword": "\u0417\u0430\u0431\u044b\u043b\u0438 \u043f\u0430\u0440\u043e\u043b\u044c?",
"TitlePasswordReset": "\u0421\u0431\u0440\u043e\u0441 \u043f\u0430\u0440\u043e\u043b\u044f",
"LabelPasswordRecoveryPinCode": "PIN-\u043a\u043e\u0434:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "\u0412\u043e\u0437\u0440\u0430\u0441\u0442\u043d\u0430\u044f \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f",
"HeaderVideoTypes": "\u0422\u0438\u043f\u044b \u0432\u0438\u0434\u0435\u043e",
"HeaderYears": "\u0413\u043e\u0434\u044b",
+ "OptionPosterCard": "\u041f\u043e\u0441\u0442\u0435\u0440-\u043a\u0430\u0440\u0442\u0430",
+ "OptionThumbCard": "\u0411\u0435\u0433\u0443\u043d\u043e\u043a-\u043a\u0430\u0440\u0442\u0430",
+ "OptionAllowRemoteSharedDevices": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0443\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043e\u0431\u0449\u0438\u043c\u0438 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c\u0438",
+ "OptionAllowRemoteSharedDevicesHelp": "DLNA-\u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0441\u0447\u0438\u0442\u0430\u044e\u0442\u0441\u044f \u043e\u0431\u0449\u0438\u043c\u0438, \u043f\u043e\u043a\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u043d\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u0435\u0442 \u0443\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0438\u043c\u0438.",
+ "HeaderRemoteControl": "\u0423\u0434\u0430\u043b\u0451\u043d\u043d\u043e\u0435 \u0443\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435",
+ "ViewTypeMusicGenres": "\u0416\u0430\u043d\u0440\u044b",
+ "ViewTypeMusicArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438",
+ "HeaderSignInWithConnect": "\u0412\u0445\u043e\u0434 \u0447\u0435\u0440\u0435\u0437 Emby Connect",
+ "LabelGithub": "GitHub",
+ "LabelApiDocumentation": "\u0414\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f \u043f\u043e API",
+ "LabelDeveloperResources": "\u0420\u0435\u0441\u0443\u0440\u0441\u044b \u0434\u043b\u044f \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432",
"HeaderAddTag": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0442\u0435\u0433\u0430",
- "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\u043b\u0438 \u043d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\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:",
- "LabelBlockContentWithTags": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u0442\u0435\u0433\u0430\u043c\u0438:",
"LabelTag": "\u0422\u0435\u0433:",
+ "HeaderServerInformation": "\u041e \u0441\u0435\u0440\u0432\u0435\u0440\u0435",
"LabelEnableSingleImageInDidlLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0442\u044c \u0434\u043e \u0435\u0434\u0438\u043d\u0441\u0442\u0432\u0435\u043d\u043d\u043e\u0433\u043e \u0432\u043d\u0435\u0434\u0440\u0451\u043d\u043d\u043e\u0433\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u0430",
"LabelEnableSingleImageInDidlLimitHelp": "\u041d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445 \u043d\u0435 \u043e\u0442\u0440\u0438\u0441\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u043e\u0440\u043c\u0430\u043b\u044c\u043d\u043e, \u0435\u0441\u043b\u0438 \u0432\u043d\u0435\u0434\u0440\u0435\u043d\u044b \u043d\u0435\u0441\u043a\u043e\u043b\u044c\u043a\u043e \u0440\u0438\u0441\u0443\u043d\u043a\u043e\u0432 \u0432\u043d\u0443\u0442\u0440\u0438 DIDL.",
"TabActivity": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u044f",
"TitleSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
+ "HeaderSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b",
"OptionAllowSyncContent": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e",
- "OptionAllowContentDownloading": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
+ "FolderTypeInherit": "\u041d\u0430\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u043d\u0438\u0435",
+ "LabelContentType": "\u0422\u0438\u043f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f:",
"NameSeasonUnknown": "\u0421\u0435\u0437\u043e\u043d \u043d\u0435\u043e\u043f\u043e\u0437\u043d\u0430\u043d",
"NameSeasonNumber": "\u0421\u0435\u0437\u043e\u043d {0}",
"LabelNewUserNameHelp": "\u0418\u043c\u0435\u043d\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u043c\u043e\u0433\u0443\u0442 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u043b\u0430\u0442\u0438\u043d\u0441\u043a\u0438\u0435 \u0431\u0443\u043a\u0432\u044b (a-z), \u0446\u0438\u0444\u0440\u044b (0-9), \u0434\u0435\u0444\u0438\u0441\u044b (-), \u043f\u043e\u0434\u0447\u0451\u0440\u043a\u0438\u0432\u0430\u043d\u0438\u044f (_), \u0430\u043f\u043e\u0441\u0442\u0440\u043e\u0444\u044b (') \u0438 \u0442\u043e\u0447\u043a\u0438 (.)",
+ "ButtonHelp": "\u0421\u043f\u0440\u0430\u0432\u043a\u0430...",
+ "TabAccess": "\u0414\u043e\u0441\u0442\u0443\u043f",
+ "HeaderDeviceAccess": "\u0414\u043e\u0441\u0442\u0443\u043f \u0441 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
+ "OptionEnableAccessFromAllDevices": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u0441\u043e \u0432\u0441\u0435\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432",
+ "DeviceAccessHelp": "\u042d\u0442\u043e \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u043c, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u043e\u0434\u043d\u043e\u0437\u043d\u0430\u0447\u043d\u043e \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u044b \u0438 \u043d\u0435 \u043f\u0440\u0435\u043f\u044f\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0434\u043e\u0441\u0442\u0443\u043f\u0443 \u0447\u0435\u0440\u0435\u0437 \u0431\u0440\u0430\u0443\u0437\u0435\u0440. \u0424\u0438\u043b\u044c\u0442\u0440\u0430\u0446\u0438\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u043e\u0433\u043e \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0437\u0430\u043f\u0440\u0435\u0442\u0438\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u043d\u043e\u0432\u044b\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432 \u0434\u043e \u0442\u0435\u0445 \u043f\u043e\u0440, \u043f\u043e\u043a\u0430 \u043e\u043d\u0438 \u043d\u0435 \u0431\u0443\u0434\u0443\u0442 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u044b.",
+ "ButtonQuickStartGuide": "\u0420\u0443\u043a\u043e\u0432\u043e\u0434\u0441\u0442\u0432\u043e \u043f\u043e \u0437\u0430\u043f\u0443\u0441\u043a\u0443...",
+ "HeaderSyncJobInfo": "\u0417\u0430\u0434\u0430\u043d\u0438\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438",
"TabJobs": "\u0417\u0430\u0434\u0430\u043d\u0438\u044f",
"TabSyncJobs": "\u0417\u0430\u0434\u0430\u043d\u0438\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438",
+ "HeaderTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433 Emby",
+ "MessagePleaseAcceptTermsOfService": "\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 \u0438 \u041f\u043e\u043b\u0438\u0442\u0438\u043a\u043e\u0439 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438, \u043f\u0440\u0435\u0436\u0434\u0435 \u0447\u0435\u043c \u043f\u0440\u043e\u0434\u043e\u043b\u0436\u0438\u0442\u044c.",
+ "OptionIAcceptTermsOfService": "\u042f \u0441\u043e\u0433\u043b\u0430\u0448\u0430\u044e\u0441\u044c \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",
+ "ButtonPrivacyPolicy": "\u041f\u043e\u043b\u0438\u0442\u0438\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0434\u0435\u043d\u0446\u0438\u0430\u043b\u044c\u043d\u043e\u0441\u0442\u0438...",
+ "ButtonTermsOfService": "\u0423\u0441\u043b\u043e\u0432\u0438\u044f \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0443\u0441\u043b\u0443\u0433...",
+ "OptionHideUserFromLoginHelp": "\u0426\u0435\u043b\u0435\u0441\u043e\u043e\u0431\u0440\u0430\u0437\u043d\u043e \u0434\u043b\u044f \u043b\u0438\u0447\u043d\u044b\u0445 \u0438\u043b\u0438 \u0441\u043a\u0440\u044b\u0442\u044b\u0445 \u0430\u0434\u043c\u0438\u043d\u0438\u0441\u0442\u0440\u0430\u0442\u043e\u0440\u0441\u043a\u0438\u0445 \u0443\u0447\u0451\u0442\u043d\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439. \u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044e \u0431\u0443\u0434\u0435\u0442 \u043d\u0443\u0436\u043d\u043e \u0432\u0445\u043e\u0434\u0438\u0442\u044c \u0432 \u0441\u0438\u0441\u0442\u0435\u043c\u0443 \u0432\u0440\u0443\u0447\u043d\u0443\u044e, \u0432\u0432\u043e\u0434\u044f \u0441\u0432\u043e\u0451 \u0438\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438 \u043f\u0430\u0440\u043e\u043b\u044c.",
+ "LabelEnterConnectUserName": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u042d-\u043f\u043e\u0447\u0442\u0430:",
+ "LabelEnterConnectUserNameHelp": "\u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0432\u0430\u0448\u0438\u043c \u0438\u043c\u0435\u043d\u0435\u043c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f \u0438\u043b\u0438 \u0430\u0434\u0440\u0435\u0441\u043e\u043c \u042d-\u043f\u043e\u0447\u0442\u044b \u0434\u043b\u044f \u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby.",
+ "HeaderTV": "\u0422\u0412",
+ "OptionDetectArchiveFilesAsMedia": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0442\u044c \u0430\u0440\u0445\u0438\u0432\u043d\u044b\u0435 \u0444\u0430\u0439\u043b\u044b \u043a\u0430\u043a \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
+ "OptionDetectArchiveFilesAsMediaHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0430\u0439\u043b\u044b \u0441 \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f\u043c\u0438 .RAR \u0438 .ZIP \u0431\u0443\u0434\u0443\u0442 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u044b \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u043c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u043e\u0432.",
+ "ButtonDonate": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u044c",
+ "HeaderOptions": "\u0412\u0430\u0440\u0438\u0430\u043d\u0442\u044b",
+ "HeaderIdentificationResult": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u0438\u044f",
+ "OptionEnableAccessToAllChannels": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043a\u0430\u043d\u0430\u043b\u0430\u043c",
+ "LabelAutomaticUpdates": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f",
+ "LabelFanartApiKey": "\u0418\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u0439 API-\u043a\u043b\u044e\u0447:",
+ "LabelFanartApiKeyHelp": "\u0417\u0430\u043f\u0440\u043e\u0441\u044b \u043a Fanart \u0431\u0435\u0437 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u043e\u0433\u043e API-\u043a\u043b\u044e\u0447\u0430 \u0432\u043e\u0437\u0432\u0440\u0430\u0449\u0430\u044e\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u0438\u0437 \u043e\u0434\u043e\u0431\u0440\u0435\u043d\u043d\u044b\u0445 \u0441\u0432\u044b\u0448\u0435 7 \u0434\u043d\u0435\u0439 \u043d\u0430\u0437\u0430\u0434. \u0421 \u0438\u043d\u0434\u0438\u0432\u0438\u0434\u0443\u0430\u043b\u044c\u043d\u044b\u043c API-\u043a\u043b\u044e\u0447\u043e\u043c \u0441\u0440\u043e\u043a \u0443\u043c\u0435\u043d\u044c\u0448\u0430\u0435\u0442\u0441\u044f \u0434\u043e 48 \u0447\u0430\u0441\u043e\u0432, \u0430 \u0435\u0441\u043b\u0438 \u0432\u044b \u0442\u0430\u043a\u0436\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0435\u0441\u044c VIP-\u0447\u043b\u0435\u043d\u043e\u043c Fanart, \u0442\u043e \u044d\u0442\u043e \u0432\u0440\u0435\u043c\u044f \u0443\u043c\u0435\u043d\u044c\u0448\u0438\u0442\u0441\u044f \u043f\u043e\u0447\u0442\u0438 \u0434\u043e 10 \u043c\u0438\u043d\u0443\u0442.",
+ "HeaderDeveloperOptions": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432",
+ "OptionEnableWebClientResponseCache": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u043e \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0435 \u043a\u044d\u0448\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u043e\u0442\u043a\u043b\u0438\u043a\u043e\u0432",
+ "OptionDisableForDevelopmentHelp": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u0442\u0435 \u0438\u0445, \u043f\u043e \u043c\u0435\u0440\u0435 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e\u0441\u0442\u0438, \u0432 \u0446\u0435\u043b\u044f\u0445 \u0440\u0430\u0437\u0432\u0438\u0442\u0438\u044f \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430.",
+ "OptionEnableWebClientResourceMinification": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u043e \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0435 \u043c\u0438\u043d\u0438\u043c\u0438\u0437\u0430\u0446\u0438\u044e \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432",
+ "LabelDashboardSourcePath": "\u041f\u0443\u0442\u044c \u043a \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0443 \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430:",
+ "LabelDashboardSourcePathHelp": "\u0415\u0441\u043b\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0440\u0430\u0431\u043e\u0442\u0430\u0435\u0442 \u043e\u0442 \u0438\u0441\u0445\u043e\u0434\u043d\u044b\u0445 \u043a\u043e\u0434\u043e\u0432, \u0443\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0443\u0442\u044c \u043a \u043f\u0430\u043f\u043a\u0435 dashboard-ui. \u0412\u0441\u0435 \u0444\u0430\u0439\u043b\u044b \u0432\u0435\u0431-\u043a\u043b\u0438\u0435\u043d\u0442\u0430 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u0434\u0430\u0432\u0430\u0442\u044c\u0441\u044f \u0441 \u044d\u0442\u043e\u0433\u043e \u0440\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u044f.",
+ "HeaderPaths": "\u041f\u0443\u0442\u0438",
+ "TitleNotifications": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f",
+ "ButtonDonateWithPayPal": "\u041f\u043e\u0436\u0435\u0440\u0442\u0432\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal",
+ "TitleScheduledTasks": "\u041d\u0430\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u0435 \u0437\u0430\u0434\u0430\u0447\u0438",
+ "LinkApi": "API",
+ "LabelPublicHttpPort": "\u041d\u043e\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e HTTP-\u043f\u043e\u0440\u0442\u0430:",
+ "LabelPublicHttpPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c HTTP-\u043f\u043e\u0440\u0442\u043e\u043c.",
+ "LabelPublicHttpsPort": "\u041d\u043e\u043c\u0435\u0440 \u043f\u0443\u0431\u043b\u0438\u0447\u043d\u043e\u0433\u043e HTTPS-\u043f\u043e\u0440\u0442\u0430:",
+ "LabelPublicHttpsPortHelp": "\u041f\u0443\u0431\u043b\u0438\u0447\u043d\u044b\u0439 \u043d\u043e\u043c\u0435\u0440 \u043f\u043e\u0440\u0442\u0430, \u043a\u043e\u0442\u043e\u0440\u044b\u0439 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u0441 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u044b\u043c HTTPS-\u043f\u043e\u0440\u0442\u043e\u043c.",
+ "LabelEnableHttps": "\u041e\u0442\u0434\u0430\u0432\u0430\u0442\u044c HTTPS \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441\u0430",
+ "LabelEnableHttpsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438 \u044d\u0442\u043e\u0439 \u043e\u043f\u0446\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u043e\u0442\u0434\u0430\u0451\u0442 HTTPS URL \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c \u0432 \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435 \u0435\u0433\u043e \u0432\u043d\u0435\u0448\u043d\u0435\u0433\u043e \u0430\u0434\u0440\u0435\u0441\u0430.",
+ "LabelHttpsPort": "\u041d\u043e\u043c\u0435\u0440 \u043b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0433\u043e HTTPS-\u043f\u043e\u0440\u0442\u0430:",
+ "LabelHttpsPortHelp": "TCP-\u043f\u043e\u0440\u0442, \u043a\u043e \u043a\u043e\u0442\u043e\u0440\u043e\u043c\u0443 \u0441\u043b\u0435\u0434\u0443\u0435\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0440\u0438\u0432\u044f\u0437\u043a\u0443 HTTPS-\u0441\u0435\u0440\u0432\u0435\u0440\u0430 Emby.",
+ "TabHosting": "\u0420\u0430\u0437\u043c\u0435\u0449\u0435\u043d\u0438\u0435",
+ "LabelCustomCss": "\u041d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435 CSS:",
+ "LabelCustomCssHelp": "\u041f\u0440\u0438\u043c\u0435\u043d\u044f\u0439\u0442\u0435 \u0441\u0432\u043e\u0438 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0435 \u043d\u0430\u0441\u0442\u0440\u0430\u0438\u0432\u0430\u0435\u043c\u044b\u0435 CSS \u043a \u0432\u0435\u0431-\u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0443.",
+ "ButtonConvertMedia": "\u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
+ "ButtonOrganize": "\u0420\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u043e\u0432\u0430\u0442\u044c",
+ "ButtonJoinTheDevelopmentTeam": "\u0412\u0441\u0442\u0443\u043f\u0438\u0442\u044c \u0432 \u043a\u043e\u043c\u0430\u043d\u0434\u0443 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432",
+ "OptionEnableAccessToAllLibraries": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u043e\u0441\u0442\u0443\u043f \u043a\u043e \u0432\u0441\u0435\u043c \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0430\u043c",
+ "LabelSyncTempPath": "\u041f\u0443\u0442\u044c \u043a\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u043c\u0443 \u0444\u0430\u0439\u043b\u0443:",
+ "LabelSyncTempPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u0443\u044e \u0440\u0430\u0431\u043e\u0447\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438. \u041f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043d\u044b\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435, \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0435\u043c\u044b\u0435 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0430 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0441\u043e\u0445\u0440\u0430\u043d\u044f\u0442\u044c\u0441\u044f \u0437\u0434\u0435\u0441\u044c.",
+ "LabelCustomCertificatePath": "\u041f\u0443\u0442\u044c \u043a \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0443:",
+ "LabelCustomCertificatePathHelp": "\u041f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u0441\u0432\u043e\u0439 \u0441\u043e\u0431\u0441\u0442\u0432\u0435\u043d\u043d\u044b\u0439 \u0444\u0430\u0439\u043b .pfx SSL-\u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442\u0430. \u041f\u0440\u0438 \u0435\u0433\u043e \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0438\u0438 \u0441\u0435\u0440\u0432\u0435\u0440 \u0441\u043e\u0437\u0434\u0430\u0441\u0442 \u0441\u0430\u043c\u043e\u043f\u043e\u0434\u043f\u0438\u0441\u0430\u043d\u043d\u044b\u0439 \u0441\u0435\u0440\u0442\u0438\u0444\u0438\u043a\u0430\u0442.",
+ "LabelDisplayCollectionsViewHelp": "\u042d\u0442\u043e \u043f\u043e\u0437\u0432\u043e\u043b\u0438\u0442 \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0430\u0441\u043f\u0435\u043a\u0442 \u0434\u043b\u044f \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u0439, \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0445 \u0432\u0430\u043c\u0438 \u0438\u043b\u0438 \u043a \u043a\u043e\u0442\u043e\u0440\u044b\u043c \u0438\u043c\u0435\u0435\u0442\u0435 \u0434\u043e\u0441\u0442\u0443\u043f. \u0427\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e, \u0449\u0435\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u0440\u0430\u0432\u043e\u0439 \u043a\u043d\u043e\u043f\u043a\u043e\u0439 \u043c\u044b\u0448\u0438 \u0438\u043b\u0438 \u043a\u043e\u0441\u043d\u0438\u0442\u0435\u0441\u044c \u0438 \u0443\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0439\u0442\u0435 \u043b\u044e\u0431\u043e\u0439 \u0444\u0438\u043b\u044c\u043c, \u0438 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \"\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0432 \u043a\u043e\u043b\u043b\u0435\u043a\u0446\u0438\u044e\". ",
+ "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 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
+ "HeaderEnjoyDayTrial": "\u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0431\u0435\u0441\u043f\u043b\u0430\u0442\u043d\u0443\u044e \u0432\u0435\u0440\u0441\u0438\u044e \u043d\u0430 14 \u0434\u043d\u0435\u0439",
+ "CategorySync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
+ "RegisterWithPayPal": "\u0417\u0430\u0440\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0447\u0435\u0440\u0435\u0437 PayPal",
+ "NotificationOptionCameraImageUploaded": "\u041f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0430 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0430 \u043e\u0442\u0441\u043d\u044f\u0442\u043e\u0433\u043e \u0441 \u043a\u0430\u043c\u0435\u0440\u044b",
+ "TabNfo": "NFO-\u0444\u0430\u0439\u043b\u044b",
+ "HeaderEasyPinCode": "\u0423\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434",
+ "LabelEasyPinCode": "\u0423\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434:",
+ "EasyPasswordHelp": "\u0423\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0430\u0432\u0442\u043e\u043d\u043e\u043c\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0441 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0439, \u0438 \u043c\u043e\u0436\u0435\u0442 \u0442\u0430\u043a\u0436\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c\u0441\u044f \u0434\u043b\u044f \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u043e\u0433\u043e \u0432\u043d\u0443\u0442\u0440\u0438\u0441\u0435\u0442\u0435\u0432\u043e\u0433\u043e \u0432\u0445\u043e\u0434\u0430.",
+ "LabelInNetworkSignInWithEasyPassword": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u043d\u0443\u0442\u0440\u0438\u0441\u0435\u0442\u0435\u0432\u043e\u0439 \u0432\u0445\u043e\u0434 \u0441 \u043c\u043e\u0438\u043c \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u043c PIN-\u043a\u043e\u0434\u043e\u043c",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0432\u044b \u0441\u043c\u043e\u0436\u0435\u0442\u0435 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448 \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434 \u0434\u043b\u044f \u0432\u0445\u043e\u0434\u0430 \u0432 Emby-\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f \u0438\u0437\u043d\u0443\u0442\u0440\u0438 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438. \u0412\u0430\u0448 \u043e\u0431\u044b\u0447\u043d\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c \u0431\u0443\u0434\u0435\u0442 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c \u0442\u043e\u043b\u044c\u043a\u043e \u0432\u043d\u0435 \u0434\u043e\u043c\u0430. \u0415\u0441\u043b\u0438 \u043f\u043e\u043b\u0435 PIN-\u043a\u043e\u0434\u0430 \u043e\u0441\u0442\u0430\u0432\u0438\u0442\u044c \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0442\u043e \u0432\u0430\u043c \u043d\u0435 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0430\u0440\u043e\u043b\u044c \u0432\u043d\u0443\u0442\u0440\u0438 \u0432\u0430\u0448\u0435\u0439 \u0434\u043e\u043c\u0430\u0448\u043d\u0435\u0439 \u0441\u0435\u0442\u0438.",
+ "ButtonResetEasyPassword": "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434",
+ "OptionAllowContentDownloading": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
+ "LabelBlockContentWithTags": "\u0411\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0441 \u0442\u0435\u0433\u0430\u043c\u0438:",
"LabelTagFilterMode": "\u0420\u0435\u0436\u0438\u043c:",
"LabelTagFilterAllowModeHelp": "\u0415\u0441\u043b\u0438 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u0442\u0435\u0433\u0438 \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0447\u0430\u0441\u0442\u044c\u044e \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u044b \u0433\u043b\u0443\u0431\u043e\u043a\u043e \u0432\u043b\u043e\u0436\u0435\u043d\u043d\u044b\u0445 \u043f\u0430\u043f\u043e\u043a, \u0442\u043e \u0434\u043b\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f, \u043f\u043e\u043c\u0435\u0447\u0435\u043d\u043d\u043e\u0433\u043e \u0442\u0435\u0433\u0430\u043c\u0438, \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f, \u0447\u0442\u043e\u0431\u044b \u0440\u043e\u0434\u0438\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0435 \u043f\u0430\u043f\u043a\u0438 \u0431\u044b\u043b\u0438 \u043f\u043e\u043c\u0435\u0447\u0435\u043d\u044b \u0442\u0430\u043a\u0436\u0435.",
+ "UserDownloadingItemWithValues": "{0} \u0437\u0430\u0433\u0440\u0443\u0436\u0430\u0435\u0442 {1}",
+ "LabelPinCode": "PIN-\u043a\u043e\u0434:",
+ "ButtonExit": "\u0412\u044b\u0439\u0442\u0438",
+ "HeaderGrownupsOnly": "\u0422\u043e\u043b\u044c\u043a\u043e \u0434\u043b\u044f \u0432\u0437\u0440\u043e\u0441\u043b\u044b\u0445!",
+ "DividerOr": "-- \u0438\u043b\u0438 --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "\u0414\u043b\u044f \u0434\u043e\u0441\u0442\u0443\u043f\u0430 \u0432\u0432\u0435\u0434\u0438\u0442\u0435 \u0432\u0430\u0448 \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 PIN-\u043a\u043e\u0434",
+ "KidsModeAdultInstruction": "\u0429\u0451\u043b\u043a\u043d\u0438\u0442\u0435 \u043f\u043e \u0437\u043d\u0430\u0447\u043a\u0443 \u0437\u0430\u043c\u043a\u0430 \u0441\u043f\u0440\u0430\u0432\u0430 \u0432\u043d\u0438\u0437\u0443, \u0447\u0442\u043e\u0431\u044b \u043d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c \u0438\u043b\u0438 \u043f\u043e\u043a\u0438\u043d\u0443\u0442\u044c \u0434\u0435\u0442\u0441\u043a\u0438\u0439 \u0440\u0435\u0436\u0438\u043c. \u041f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0432\u0430\u0448 PIN-\u043a\u043e\u0434.",
+ "ButtonConfigurePinCode": "\u041d\u0430\u0441\u0442\u0440\u043e\u0438\u0442\u044c PIN-\u043a\u043e\u0434",
+ "HeaderAdultsReadHere": "\u0412\u0437\u0440\u043e\u0441\u043b\u044b\u0435, \u043f\u0440\u043e\u0447\u0442\u0438\u0442\u0435 \u044d\u0442\u043e!",
+ "LabelEnableEnhancedMovies": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u043d\u043e\u0435 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0444\u0438\u043b\u044c\u043c\u043e\u0432",
+ "LabelEnableEnhancedMoviesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0444\u0438\u043b\u044c\u043c\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043a \u043f\u0430\u043f\u043a\u0438, \u0447\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b, \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043c\u0430\u0442\u0435\u0440\u0438\u0430\u043b\u044b, \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432 \u0441\u044a\u0451\u043c\u043e\u043a \u0438 \u0434\u0440\u0443\u0433\u043e\u0435 \u0441\u043e\u043f\u0443\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435.",
+ "NotificationOptionUserLockedOut": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d",
+ "OptionIcon": "\u0417\u043d\u0430\u0447\u043e\u043a",
+ "UserLockedOutWithName": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c {0} \u0431\u044b\u043b \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d",
"HeaderThisUserIsCurrentlyDisabled": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u044d\u0442\u043e\u0442 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c \u0437\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d",
"MessageReenableUser": "\u0421\u043c. \u043d\u0438\u0436\u0435 \u0434\u043b\u044f \u0440\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u043a\u0438",
+ "LabelTimeLimitHours": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438 (\u0447\u0430\u0441\u044b):",
+ "HeaderSendNotificationHelp": "\u0423\u0432\u0435\u0434\u043e\u043c\u043b\u0435\u043d\u0438\u044f \u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043f\u0430\u043f\u043a\u0443 \u0412\u0445\u043e\u0434\u044f\u0449\u0438\u0435 \u0432 Emby. \u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0438 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u044b \u0438\u0437 \u0432\u043a\u043b\u0430\u0434\u043a\u0438 \u0421\u043b\u0443\u0436\u0431\u044b.",
+ "HeaderInstalledServices": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
+ "HeaderAvailableServices": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u044b\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
+ "MessageNoServicesInstalled": "\u0412 \u043d\u0430\u0441\u0442\u043e\u044f\u0449\u0435\u0435 \u0432\u0440\u0435\u043c\u044f \u043d\u0435\u0442 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u043d\u044b\u0445 \u0441\u043b\u0443\u0436\u0431",
+ "TitlePlugins": "\u041f\u043b\u0430\u0433\u0438\u043d\u044b",
+ "HeaderServices": "\u0421\u043b\u0443\u0436\u0431\u044b",
+ "ViewTypePlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b",
+ "LabelAlbumArtists": "\u0418\u0441\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u0438 \u0430\u043b\u044c\u0431\u043e\u043c\u0430:",
"LabelEnableInternetMetadataForTvPrograms": "\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u0438\u0437 \u0418\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0430 \u0434\u043b\u044f:",
"OptionTVMovies": "\u0422\u0412-\u0444\u0438\u043b\u044c\u043c\u044b",
"HeaderUpcomingMovies": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u0444\u0438\u043b\u044c\u043c\u044b",
- "HeaderUpcomingSports": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435 \u0438\u0437 \u0441\u043f\u043e\u0440\u0442\u0430",
"HeaderUpcomingPrograms": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u044b\u0435 \u043f\u0435\u0440\u0435\u0434\u0430\u0447\u0438",
"LabelShowLibraryTileNames": "\u041f\u043e\u043a\u0430\u0437\u044b\u0432\u0430\u0442\u044c \u043d\u0430\u0437\u0432\u0430\u043d\u0438\u044f \u043f\u043b\u0438\u0442\u043e\u043a \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438",
"LabelShowLibraryTileNamesHelp": "\u041e\u043f\u0440\u0435\u0434\u0435\u043b\u044f\u0435\u0442\u0441\u044f, \u0431\u0443\u0434\u0443\u0442 \u043b\u0438 \u043d\u0430\u0434\u043f\u0438\u0441\u0438 \u043f\u043e\u043a\u0430\u0437\u0430\u043d\u044b \u043f\u043e\u0434 \u043f\u043b\u0438\u0442\u043a\u0430\u043c\u0438 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u043d\u0430 \u0433\u043b\u0430\u0432\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435.",
+ "HeaderSupporterBenefits": "\u041f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430",
+ "HeaderAddUser": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
+ "LabelAddConnectSupporterHelp": "\u0427\u0442\u043e\u0431\u044b \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f, \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0441\u0432\u044f\u0437\u0430\u0442\u044c \u0435\u0433\u043e \u0443\u0447\u0451\u0442\u043d\u0443\u044e \u0437\u0430\u043f\u0438\u0441\u044c \u0441 Emby Connect \u0441 \u0435\u0433\u043e \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b \u043f\u0440\u043e\u0444\u0438\u043b\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f.",
+ "TabPlaylist": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442",
+ "LabelConfigureServer": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 Emby",
+ "WelcomeToProject": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby",
+ "LinkedToEmbyConnect": "\u0418\u043c\u0435\u0435\u0442\u0441\u044f \u0441\u0432\u044f\u0437\u044c \u0441 Emby Connect",
+ "ProjectHasCommunity": "\u0423 Emby \u0438\u043c\u0435\u0435\u0442\u0441\u044f \u0440\u0430\u0441\u0442\u0443\u0449\u0435\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u0441\u0442\u0432\u043e \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0435\u0439 \u0438 \u0443\u0447\u0430\u0441\u0442\u043d\u0438\u043a\u043e\u0432.",
+ "VisitProjectWebsite": "\u041f\u043e\u0441\u0435\u0442\u0438\u0442\u044c \u0441\u0430\u0439\u0442 Emby",
+ "VisitProjectWebsiteLong": "\u041f\u043e\u0441\u0435\u0449\u0430\u0439\u0442\u0435 \u0441\u0430\u0439\u0442 Emby, \u0447\u0442\u043e\u0431\u044b \u0437\u043d\u0430\u043a\u043e\u043c\u0438\u0442\u044c\u0441\u044f \u0441 \u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u043c\u0438 \u043d\u043e\u0432\u043e\u0441\u0442\u044f\u043c\u0438 \u0438 \u0441\u043b\u0435\u0434\u0438\u0442\u044c \u0437\u0430 \u0431\u043b\u043e\u0433\u043e\u043c \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a\u043e\u0432.",
+ "HeaderHelpImproveProject": "\u041f\u043e\u043c\u043e\u0433\u0438\u0442\u0435 \u0443\u043b\u0443\u0447\u0448\u0438\u0442\u044c Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "\u0421\u0442\u0430\u043d\u044c\u0442\u0435 \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u043e\u043c Emby",
+ "ButtonLearnMoreAboutEmbyConnect": "\u0423\u0437\u043d\u0430\u0442\u044c \u0431\u043e\u043b\u044c\u0448\u0435 \u043e\u0431 Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "\u041d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u043e: \u0421\u0432\u044f\u0437\u044b\u0432\u0430\u043d\u0438\u0435 \u0432\u0430\u0448\u0435\u0439 \u0443\u0447\u0451\u0442\u043d\u043e\u0439 \u0437\u0430\u043f\u0438\u0441\u0438 Emby",
"OptionEnableTranscodingThrottle": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"OptionEnableTranscodingThrottleHelp": "\u0420\u0435\u0433\u0443\u043b\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435 \u0431\u0443\u0434\u0435\u0442 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043a\u043e\u0440\u0440\u0435\u043a\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0438 \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u043c\u0438\u043d\u0438\u043c\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043d\u0430 \u0426\u041f \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0432\u043e \u0432\u0440\u0435\u043c\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
+ "OptionHideWatchedContentFromLatestMedia": "\u0421\u043a\u0440\u044b\u0442\u044c \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0435\u043d\u043d\u043e\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u0438\u0437 \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0438\u0445 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
+ "TabSuggestions": "\u041f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u043e\u0435",
+ "PlaceholderUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
+ "HeaderSync": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044f",
+ "HeaderUpcomingSports": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435 \u0438\u0437 \u0441\u043f\u043e\u0440\u0442\u0430",
"LabelUploadSpeedLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0432\u044b\u043a\u043b\u0430\u0434\u043a\u0438, \u041c\u0431\u0438\u0442\/\u0441",
"OptionAllowSyncTranscoding": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u044e, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0439 \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
"HeaderPlayback": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445",
+ "OptionAllowMediaPlaybackTranscodingHelp": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u043f\u043e\u043d\u044f\u0442\u043d\u044b\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435 \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u043c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044e, \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u043a.",
"OptionAllowAudioPlaybackTranscoding": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0430\u0443\u0434\u0438\u043e, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
"OptionAllowVideoPlaybackTranscoding": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u0435 \u0432\u0438\u0434\u0435\u043e, \u0434\u043b\u044f \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430",
- "OptionAllowMediaPlaybackTranscodingHelp": "\u041f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u0438 \u0431\u0443\u0434\u0443\u0442 \u043f\u043e\u043b\u0443\u0447\u0430\u0442\u044c \u043f\u043e\u043d\u044f\u0442\u043d\u044b\u0435 \u0441\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u044f, \u043a\u043e\u0433\u0434\u0430 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435 \u043f\u043e\u0434\u043b\u0435\u0436\u0430\u0449\u0438\u043c \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044e, \u043d\u0430 \u043e\u0441\u043d\u043e\u0432\u0435 \u043f\u043e\u043b\u0438\u0442\u0438\u043a.",
"TabStreaming": "\u0422\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u044f",
"LabelRemoteClientBitrateLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0442\u0440\u0430\u043d\u0441\u043b\u044f\u0446\u0438\u0438 \u0432 \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442\u0435, \u041c\u0431\u0438\u0442\/\u0441:",
"LabelRemoteClientBitrateLimitHelp": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438 \u0434\u043b\u044f \u0432\u0441\u0435\u0445 \u0441\u0435\u0442\u0435\u0432\u044b\u0445 \u043a\u043b\u0438\u0435\u043d\u0442\u043e\u0432. \u042d\u0442\u043e \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0446\u0435\u043b\u0435\u0441\u043e\u043e\u0431\u0440\u0430\u0437\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0449\u0430\u0442\u044c \u0437\u0430\u043f\u0440\u0430\u0448\u0438\u0432\u0430\u043d\u0438\u0435 \u043a\u043b\u0438\u0435\u043d\u0442\u0430\u043c\u0438 \u0431\u043e\u043b\u0435\u0435 \u0432\u044b\u0441\u043e\u043a\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438, \u0447\u0435\u043c \u0441\u043f\u043e\u0441\u043e\u0431\u043d\u043e \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0447\u0438\u0441\u043b\u043e \u044f\u0434\u0435\u0440 \u0426\u041f, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u0431\u0443\u0434\u0443\u0442 \u0437\u0430\u0434\u0435\u0439\u0441\u0442\u0432\u043e\u0432\u0430\u043d\u044b \u0432\u043e \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0433\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f.",
"OptionEnableFullSpeedConversion": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043b\u043d\u043e\u0441\u043a\u043e\u0440\u043e\u0441\u0442\u043d\u043e\u0435 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435",
"OptionEnableFullSpeedConversionHelp": "\u041f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e, \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0430\u0446\u0438\u043e\u043d\u043d\u043e\u0435 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0435\u0442\u0441\u044f \u043f\u0440\u0438 \u043d\u0438\u0437\u043a\u043e\u0439 \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u0438, \u0447\u0442\u043e\u0431\u044b \u043c\u0438\u043d\u0438\u043c\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043f\u043e\u0442\u0440\u0435\u0431\u043b\u0435\u043d\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432.",
+ "HeaderRepeatingOptions": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u044f",
+ "OptionMyMediaButtons": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 (\u043a\u043d\u043e\u043f\u043a\u0438)",
+ "OptionMyMedia": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
+ "OptionMyMediaSmall": "\u041c\u043e\u0438 \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0435 (\u043a\u043e\u043c\u043f\u0430\u043a\u0442\u043d\u043e)",
"HeaderPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b",
+ "ViewTypeMusicPlaylists": "\u041f\u043b\u0435\u0439-\u043b\u0438\u0441\u0442\u044b",
"HeaderViewStyles": "\u0421\u0442\u0438\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043e\u043a",
"LabelSelectViewStyles": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0443\u043b\u0443\u0447\u0448\u0435\u043d\u043d\u044b\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u0434\u043b\u044f:",
"LabelSelectViewStylesHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043c\u0435\u0434\u0438\u0430\u043f\u0430\u043f\u043a\u0438 \u0431\u0443\u0434\u0443\u0442 \u0441\u0442\u0438\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u044b \u043c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u043c\u0438, \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0449\u0438\u043c\u0438 \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0438, \u043d\u0430\u043f\u0440\u0438\u043c\u0435\u0440, \u041f\u0440\u0435\u0434\u043b\u0430\u0433\u0430\u0435\u043c\u043e\u0435, \u041f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435, \u0416\u0430\u043d\u0440\u044b \u0438 \u0442.\u0434. \u041f\u0440\u0438 \u043e\u0442\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u044b \u043f\u0440\u043e\u0441\u0442\u044b\u043c\u0438 \u043f\u0430\u043f\u043a\u0430\u043c\u0438.",
+ "ButtonSignInWithConnect": "\u0412\u043e\u0439\u0442\u0438 \u0447\u0435\u0440\u0435\u0437 Connect",
+ "HeaderNewServer": "\u041d\u043e\u0432\u044b\u0439 \u0441\u0435\u0440\u0432\u0435\u0440",
+ "LabelMaxChromecastBitrate": "\u041c\u0430\u043a\u0441. \u043f\u043e\u0442\u043e\u043a\u043e\u0432\u0430\u044f \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u0434\u043b\u044f Chromecast:",
+ "TabAppSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u044f",
"TabPhotos": "\u0424\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438",
"TabVideos": "\u0412\u0438\u0434\u0435\u043e",
"HeaderWelcomeToEmby": "\u041d\u0430\u0447\u0430\u043b\u043e \u0440\u0430\u0431\u043e\u0442\u044b \u0432 Emby",
"EmbyIntroMessage": "\u0421 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Emby \u0443\u0434\u043e\u0431\u043d\u043e \u0442\u0440\u0430\u043d\u0441\u043b\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043d\u0430 \u0441\u043c\u0430\u0440\u0442\u0444\u043e\u043d\u044b, \u043f\u043b\u0430\u043d\u0448\u0435\u0442\u044b \u0438 \u0434\u0440\u0443\u0433\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430 \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b, \u043c\u0443\u0437\u044b\u043a\u0443 \u0438 \u0444\u043e\u0442\u043e\u0433\u0440\u0430\u0444\u0438\u0438 \u0441 Emby Server.",
"ButtonSkip": "\u041f\u0440\u043e\u043f\u0443\u0441\u0442\u0438\u0442\u044c",
"TextConnectToServerManually": "\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c \u0432\u0440\u0443\u0447\u043d\u0443\u044e",
- "ButtonSignInWithConnect": "\u0412\u043e\u0439\u0442\u0438 \u0447\u0435\u0440\u0435\u0437 Connect",
"ButtonConnect": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435",
"LabelServerHost": "\u0425\u043e\u0441\u0442:",
"LabelServerHostHelp": "192.168.1.100 \u0438\u043b\u0438 https:\/\/myserver.com",
"LabelServerPort": "\u041f\u043e\u0440\u0442:",
- "HeaderNewServer": "\u041d\u043e\u0432\u044b\u0439 \u0441\u0435\u0440\u0432\u0435\u0440",
"ButtonChangeServer": "\u0421\u043c\u0435\u043d\u0438\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440",
"HeaderConnectToServer": "\u0421\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0435 \u0441 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c",
"OptionReportList": "\u0421\u043f\u0438\u0441\u043a\u0438",
@@ -1439,20 +1428,31 @@
"HeaderExport": "\u042d\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435",
"HeaderColumns": "\u041a\u043e\u043b\u043e\u043d\u043a\u0438",
"ButtonReset": "\u0421\u0431\u0440\u043e\u0441\u0438\u0442\u044c",
+ "ButtonPurchase": "\u041f\u0440\u0438\u043e\u0431\u0440\u0435\u0441\u0442\u0438",
"OptionEnableExternalVideoPlayers": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0432\u043d\u0435\u0448\u043d\u0438\u0435 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u0438 \u0432\u0438\u0434\u0435\u043e",
+ "LabelNativeExternalPlayersHelp": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u044e\u0442\u0441\u044f \u043a\u043d\u043e\u043f\u043a\u0438 \u0434\u043b\u044f \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044f \u0432\u043e \u0432\u043d\u0435\u0448\u043d\u0438\u0445 \u043f\u0440\u043e\u0438\u0433\u0440\u044b\u0432\u0430\u0442\u0435\u043b\u044f\u0445.",
+ "LabelEnableItemPreviews": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0430",
+ "LabelEnableItemPreviewsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0441\u043a\u043e\u043b\u044c\u0437\u044f\u0449\u0438\u0435 \u043f\u0440\u0435\u0434\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f \u043f\u0440\u043e\u0441\u043c\u043e\u0442\u0440\u0430 \u043f\u043e\u044f\u0432\u044f\u0442\u0441\u044f \u043d\u0430 \u043d\u0435\u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u044d\u043a\u0440\u0430\u043d\u0430\u0445, \u0435\u0441\u043b\u0438 \u0449\u0451\u043b\u043a\u043d\u0443\u0442\u044c \u043f\u043e \u044d\u043b\u0435\u043c\u0435\u043d\u0442\u0443.",
"ButtonUnlockGuide": "\u0420\u0430\u0437\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
+ "ButtonManageServer": "\u0423\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0441\u0435\u0440\u0432\u0435\u0440\u043e\u043c...",
"LabelEnableFullScreen": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0440\u0435\u0436\u0438\u043c \u043f\u043e\u043b\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430",
"LabelEnableChromecastAc3Passthrough": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u0440\u043e\u0445\u043e\u0434\u043d\u043e\u0439 AC3 \u043d\u0430 Chromecast",
- "OptionSyncToSDCard": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0441\u043e \u0432\u043d\u0435\u0448\u043d\u0435\u0439 SD-\u043a\u0430\u0440\u0442\u043e\u0439",
+ "LabelSyncPath": "\u041f\u0443\u0442\u044c \u043a \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c\u0443 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e:",
"LabelEmail": "\u042d-\u043f\u043e\u0447\u0442\u0430:",
"LabelUsername": "\u0418\u043c\u044f \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f:",
"HeaderSignUp": "\u0420\u0435\u0433\u0438\u0441\u0442\u0440\u0438\u0440\u0430\u0446\u0438\u044f",
"LabelPasswordConfirm": "\u041f\u0430\u0440\u043e\u043b\u044c (\u043f\u043e\u0434\u0442\u0432\u0435\u0440\u0436\u0434\u0435\u043d\u0438\u0435):",
"ButtonAddServer": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440",
+ "ButtonShare": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
+ "OptionAllowLinkSharing": "\u0420\u0430\u0437\u0440\u0435\u0448\u0438\u0442\u044c \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043b\u044f \u0441\u043e\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u0445 \u0441\u0435\u0442\u0435\u0439",
+ "OptionAllowLinkSharingHelp": "\u0422\u043e\u043b\u044c\u043a\u043e \u0432\u0435\u0431-\u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0449\u0438\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u043c\u0435\u0434\u0438\u0430\u0434\u0430\u043d\u043d\u044b\u0445 \u043d\u0430\u0445\u043e\u0434\u044f\u0442\u0441\u044f \u0432 \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u043c \u0434\u043e\u0441\u0442\u0443\u043f\u0435. \u041c\u0435\u0434\u0438\u0430\u0444\u0430\u0439\u043b\u044b \u043d\u0438\u043a\u043e\u0433\u0434\u0430 \u043d\u0435 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u0432 \u043e\u0442\u043a\u0440\u044b\u0442\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f. \u041e\u0431\u0449\u0438\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b \u044f\u0432\u043b\u044f\u044e\u0442\u0441\u044f \u043e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u043d\u044b\u043c\u0438 \u043f\u043e \u0432\u0440\u0435\u043c\u0435\u043d\u0438, \u0430 \u0441\u0440\u043e\u043a \u0434\u0435\u0439\u0441\u0442\u0432\u0438\u044f \u043e\u0441\u043d\u043e\u0432\u044b\u0432\u0430\u0435\u0442\u0441\u044f \u043d\u0430 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u0430\u0445 \u0441\u0435\u0440\u0432\u0435\u0440\u0430 \u0434\u043b\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e\u0433\u043e \u0434\u043e\u0441\u0442\u0443\u043f\u0430.",
+ "HeaderSharing": "\u0421\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u044b\u0439 \u0434\u043e\u0441\u0442\u0443\u043f",
"TabHomeScreen": "\u0413\u043b\u0430\u0432\u043d\u044b\u0439 \u044d\u043a\u0440\u0430\u043d",
"HeaderDisplay": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u0435",
"HeaderNavigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f",
"LegendTheseSettingsShared": "\u0414\u0430\u043d\u043d\u044b\u0435 \u043f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u044e\u0442\u0441\u044f \u0441\u043e\u0432\u043c\u0435\u0441\u0442\u043d\u043e \u043d\u0430 \u0432\u0441\u0435\u0445 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430\u0445",
+ "LabelRecordingPath": "\u041f\u0443\u0442\u044c \u0434\u043b\u044f \u0437\u0430\u043f\u0438\u0441\u0438:",
+ "LabelRecordingPathHelp": "\u0423\u043a\u0430\u0436\u0438\u0442\u0435 \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u043b\u044c\u043d\u043e\u0435 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0434\u043b\u044f \u0441\u043e\u0445\u0440\u0430\u043d\u0435\u043d\u0438\u044f \u0437\u0430\u043f\u0438\u0441\u0435\u0439. \u041e\u0441\u0442\u0430\u0432\u044c\u0442\u0435 \u043f\u043e\u043b\u0435 \u043d\u0435\u0437\u0430\u043f\u043e\u043b\u043d\u0435\u043d\u043d\u044b\u043c, \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0441\u0435\u0440\u0432\u0435\u0440\u043d\u044b\u0435 \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044f.",
"OptionEnableAutomaticServerUpdates": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u0441\u0435\u0440\u0432\u0435\u0440\u0430",
"OptionOtherTrailers": "\u041e\u0445\u0432\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u044b \u043a \u0441\u0442\u0430\u0440\u044b\u043c \u0444\u0438\u043b\u044c\u043c\u0430\u043c",
"HeaderOverview": "\u041e\u043f\u0438\u0441\u0430\u043d\u0438\u0435",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "\u0414\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u043e",
"HeaderAddDevice": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0430",
"HeaderExternalServices": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
- "LabelTunerIpAddress": "IP-\u0430\u0434\u0440\u0435\u0441 \u0442\u044e\u043d\u0435\u0440\u0430",
"TabExternalServices": "\u0412\u043d\u0435\u0448\u043d\u0438\u0435 \u0441\u043b\u0443\u0436\u0431\u044b",
"TabTuners": "\u0422\u044e\u043d\u0435\u0440\u044b",
"HeaderGuideProviders": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
"AddGuideProviderHelp": "\u0414\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0438\u0435 \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a\u0430 \u0438\u043d\u0444\u043e\u0440\u043c\u0430\u0446\u0438\u0438 \u0434\u043b\u044f \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
"LabelZipCode": "\u041f\u043e\u0447\u0442\u043e\u0432\u044b\u0439 \u043a\u043e\u0434:",
- "GuideProviderSelectListings": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0435\u0440\u0435\u0447\u043d\u0435\u0439",
- "GuideProviderLogin": "\u0412\u0445\u043e\u0434",
"LabelLineup": "\u0421\u043f\u0438\u0441\u043e\u043a \u0441\u043e\u043f\u043e\u0441\u0442\u0430\u0432\u043b\u0435\u043d\u0438\u044f:",
"MessageTunerDeviceNotListed": "\u0412\u0430\u0448\u0435\u0433\u043e \u0442\u044e\u043d\u0435\u0440\u0430 \u043d\u0435\u0442 \u0432 \u0441\u043f\u0438\u0441\u043a\u0435? \u041f\u043e\u043f\u0440\u043e\u0431\u0443\u0439\u0442\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u044c \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0430 \u0432\u043d\u0435\u0448\u043d\u0435\u0439 \u0441\u043b\u0443\u0436\u0431\u044b \u0434\u043b\u044f \u0431\u043e\u043b\u044c\u0448\u0438\u0445 \u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e\u0441\u0442\u0435\u0439 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412.",
+ "OptionSyncToSDCard": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043e \u0441\u043e \u0432\u043d\u0435\u0448\u043d\u0435\u0439 SD-\u043a\u0430\u0440\u0442\u043e\u0439",
+ "LabelTunerIpAddress": "IP-\u0430\u0434\u0440\u0435\u0441 \u0442\u044e\u043d\u0435\u0440\u0430",
+ "GuideProviderSelectListings": "\u0412\u044b\u0431\u043e\u0440 \u043f\u0435\u0440\u0435\u0447\u043d\u0435\u0439",
+ "GuideProviderLogin": "\u0412\u0445\u043e\u0434",
"LabelImportOnlyFavoriteChannels": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0438\u0432\u0430\u0442\u044c\u0441\u044f \u043a\u0430\u043d\u0430\u043b\u0430\u043c\u0438 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044b\u043c\u0438 \u043a\u0430\u043a \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435",
"ImportFavoriteChannelsHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u0431\u0443\u0434\u0443\u0442 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043a\u0430\u043d\u0430\u043b\u044b, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043e\u0431\u043e\u0437\u043d\u0430\u0447\u0435\u043d\u044b \u043a\u0430\u043a \u0438\u0437\u0431\u0440\u0430\u043d\u043d\u043e\u0435 \u043d\u0430 \u0442\u044e\u043d\u0435\u0440\u043d\u043e\u043c \u0443\u0441\u0442\u0440\u043e\u0439\u0441\u0442\u0432\u0435.",
"ButtonRepeat": "\u041f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u044c",
- "LabelEnableThisTuner": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0442\u044e\u043d\u0435\u0440",
- "LabelEnableThisTunerHelp": "\u0421\u043d\u0438\u043c\u0438\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438\u0442\u044c \u0438\u043c\u043f\u043e\u0440\u0442 \u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0438\u0437 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u044e\u043d\u0435\u0440\u0430.",
- "HeaderLocked": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e",
"HeaderUnidentified": "\u041d\u0435 \u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043e",
"HeaderImagePrimary": "\u0413\u043e\u043b\u043e\u0432\u043d\u043e\u0439",
"HeaderImageBackdrop": "\u0417\u0430\u0434\u043d\u0438\u043a",
"HeaderImageLogo": "\u041b\u043e\u0433\u043e\u0442\u0438\u043f",
"HeaderUserPrimaryImage": "\u0420\u0438\u0441\u0443\u043d\u043e\u043a \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f",
+ "LabelEnableThisTuner": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0434\u0430\u043d\u043d\u044b\u0439 \u0442\u044e\u043d\u0435\u0440",
+ "LabelEnableThisTunerHelp": "\u0421\u043d\u0438\u043c\u0438\u0442\u0435, \u0447\u0442\u043e\u0431\u044b \u043f\u0440\u0435\u0434\u043e\u0442\u0432\u0440\u0430\u0442\u0438\u0442\u044c \u0438\u043c\u043f\u043e\u0440\u0442 \u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0438\u0437 \u0434\u0430\u043d\u043d\u043e\u0433\u043e \u0442\u044e\u043d\u0435\u0440\u0430.",
+ "HeaderLocked": "\u0417\u0430\u0431\u043b\u043e\u043a\u0438\u0440\u043e\u0432\u0430\u043d\u043e",
"ButtonDisplaySettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u0438\u044f...",
"ButtonHomeScreenSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0433\u043b\u0430\u0432\u043d\u043e\u0433\u043e \u044d\u043a\u0440\u0430\u043d\u0430...",
"ButtonPlaybackSettings": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f...",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "\u0412\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u043f\u043e\u0434\u043f\u043e\u0442\u043e\u043a\u043e\u0432:, \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u043c\u044b\u0445 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0435. \u0423\u043c\u0435\u043d\u044c\u0448\u0435\u043d\u0438\u0435 \u043a\u043e\u043b\u0438\u0447\u0435\u0441\u0442\u0432\u0430 \u043f\u043e\u0434\u043f\u043e\u0442\u043e\u043a\u043e\u0432 \u0441\u043d\u0438\u0436\u0430\u0435\u0442 \u043d\u0430\u0433\u0440\u0443\u0437\u043a\u0443 \u043d\u0430 \u0426\u041f, \u043d\u043e \u0441\u043a\u043e\u0440\u043e\u0441\u0442\u044c \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u043e\u0436\u0435\u0442 \u043e\u043a\u0430\u0437\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e\u0439 \u0434\u043b\u044f \u043e\u0449\u0443\u0449\u0435\u043d\u0438\u0439 \u043f\u043b\u0430\u0432\u043d\u043e\u0433\u043e \u0432\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u0435\u0434\u0435\u043d\u0438\u044f.",
"OptionMax": "\u041c\u0430\u043a\u0441.",
"HeaderEmbyGuide": "\u0422\u0435\u043b\u0435\u0433\u0438\u0434 Emby",
- "LabelSyncPath": "\u041f\u0443\u0442\u044c \u043a \u0441\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u043d\u043d\u043e\u043c\u0443 \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e:",
"OptionSyncOnlyOnWifi": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043f\u043e WiFi",
+ "OptionDisplayChannelsInline": "\u041e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c \u043a\u0430\u043d\u0430\u043b\u044b \u0440\u044f\u0434\u043e\u043c \u0441 \u043c\u043e\u0438\u043c\u0438 \u0430\u0441\u043f\u0435\u043a\u0442\u0430\u043c\u0438.",
+ "OptionDisplayChannelsInlineHelp": "\u041f\u0440\u0438 \u0432\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043a\u0430\u043d\u0430\u043b\u044b \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u043d\u0435\u043f\u043e\u0441\u0440\u0435\u0434\u0441\u0442\u0432\u0435\u043d\u043d\u043e \u0440\u044f\u0434\u043e\u043c \u0441 \u043e\u0441\u0442\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u0430\u0441\u043f\u0435\u043a\u0442\u0430\u043c\u0438. \u041f\u0440\u0438 \u0432\u044b\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0438, \u043e\u043d\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043e\u0431\u0440\u0430\u0436\u0430\u0442\u044c\u0441\u044f \u0432\u043d\u0443\u0442\u0440\u0438 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u0430\u0441\u043f\u0435\u043a\u0442\u0430 \u00ab\u041a\u0430\u043d\u0430\u043b\u044b\u00bb.",
"OptionSyncLosslessAudioOriginal": "\u0421\u0438\u043d\u0445\u0440\u043e\u043d\u0438\u0437\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u0430\u0443\u0434\u0438\u043e \u0431\u0435\u0437 \u043f\u043e\u0442\u0435\u0440\u044c \u043f\u0440\u0438 \u0438\u0441\u0445\u043e\u0434\u043d\u043e\u043c \u043a\u0430\u0447\u0435\u0441\u0442\u0432\u0435",
"HeaderMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u043d\u044b\u0435",
"HeaderRecordingOptions": "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440\u044b \u0437\u0430\u043f\u0438\u0441\u0438",
- "ButtonShare": "\u041f\u043e\u0434\u0435\u043b\u0438\u0442\u044c\u0441\u044f",
"HeaderUpcomingForKids": "\u041e\u0436\u0438\u0434\u0430\u0435\u043c\u043e\u0435 \u0434\u043b\u044f \u0434\u0435\u0442\u0435\u0439",
"HeaderSetupLiveTV": "\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0422\u0412-\u044d\u0444\u0438\u0440\u0430",
"LabelTunerType": "\u0422\u0438\u043f \u0442\u044e\u043d\u0435\u0440\u0430:",
"HelpMoreTunersCanBeAdded": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u0442\u044e\u043d\u0435\u0440\u044b \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432\u043d\u0443\u0442\u0440\u0438 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "\u0414\u0435\u0439\u0441\u0442\u0432\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0435 \u0447\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 Emby \u0442\u0440\u0435\u0431\u0443\u0435\u0442\u0441\u044f \u0434\u043b\u044f \u0442\u043e\u0433\u043e, \u0447\u0442\u043e\u0431\u044b \u0441\u043e\u0437\u0434\u0430\u0432\u0430\u0442\u044c \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0437\u0430\u043f\u0438\u0441\u0438 \u0441\u0435\u0440\u0438\u0439.",
"HeaderSetupTVGuide": "\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430 \u0438 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0430 \u0442\u0435\u043b\u0435\u0433\u0438\u0434\u0430",
"LabelDataProvider": "\u041f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a \u0434\u0430\u043d\u043d\u044b\u0445:",
"OptionSendRecordingsToAutoOrganize": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0430\u0432\u0442\u043e\u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044e \u0434\u043b\u044f \u043d\u043e\u0432\u044b\u0445 \u0437\u0430\u043f\u0438\u0441\u0435\u0439",
"OptionSendRecordingsToAutoOrganizeHelp": "\u041d\u043e\u0432\u044b\u0435 \u0437\u0430\u043f\u0438\u0441\u0438 \u0431\u0443\u0434\u0443\u0442 \u043e\u0442\u043f\u0440\u0430\u0432\u043b\u0435\u043d\u044b \u043a \u043a\u043e\u043c\u043f\u043e\u043d\u0435\u043d\u0442\u0443 \u0410\u0432\u0442\u043e\u0440\u0435\u043e\u0440\u0433\u0430\u043d\u0438\u0437\u0430\u0446\u0438\u044f \u0438 \u0438\u043c\u043f\u043e\u0440\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u044b \u0432 \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0443.",
"HeaderDefaultPadding": "\u041e\u0442\u0431\u0438\u0432\u043a\u0438 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e",
- "HeaderSubtitles": "\u0421\u0443\u0431\u0442.",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0441\u0442\u0430\u0432\u0449\u0438\u043a\u0438 \u044d\u0444\u0438\u0440\u043d\u043e\u0433\u043e \u0422\u0412 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u044b \u043f\u043e\u0437\u0436\u0435 \u0432 \u043f\u0440\u0435\u0434\u0435\u043b\u0430\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u0430 \u042d\u0444\u0438\u0440.",
"HeaderVideos": "\u0412\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u044b",
"OptionEnableVideoFrameAnalysis": "\u0412\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u044b\u0439 \u0430\u043d\u0430\u043b\u0438\u0437 \u0432\u0438\u0434\u0435\u043e",
"OptionEnableVideoFrameAnalysisHelp": "\u0418\u0437\u0432\u043b\u0435\u043a\u0430\u044e\u0442\u0441\u044f \u043f\u043e\u0434\u0440\u043e\u0431\u043d\u044b\u0435 \u0441\u0432\u0435\u0434\u0435\u043d\u0438\u044f \u043e \u0432\u0438\u0434\u0435\u043e\u0444\u0430\u0439\u043b\u0430\u0445, \u043a\u043e\u0442\u043e\u0440\u044b\u0435 \u043c\u043e\u0433\u0443\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u044b, \u0447\u0442\u043e\u0431\u044b \u0441\u0434\u0435\u043b\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0443 \u043a\u0430\u043a \u043c\u043e\u0436\u043d\u043e \u0431\u043e\u043b\u0435\u0435 \u044d\u0444\u0444\u0435\u043a\u0442\u0438\u0432\u043d\u043e\u0439. \u042d\u0442\u043e \u043f\u0440\u0438\u0432\u0435\u0434\u0451\u0442 \u043a \u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u0441\u043a\u0430\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043c\u0435\u0434\u0438\u0430\u0442\u0435\u043a\u0438 \u0437\u0430\u0439\u043c\u0443\u0442 \u0431\u043e\u043b\u044c\u0448\u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0438.",
"LabelVideoFrameAnalysisLimit": "\u041e\u0433\u0440\u0430\u043d\u0438\u0447\u0435\u043d\u0438\u0435 \u043f\u043e\u043a\u0430\u0434\u0440\u043e\u0432\u043e\u0433\u043e \u0430\u043d\u0430\u043b\u0438\u0437\u0430 \u043a \u0432\u0438\u0434\u0435\u043e \u043c\u0435\u043d\u044c\u0448\u0435 \u0447\u0435\u043c:",
- "LabelHardwareVideoDecoder": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u0439 \u0432\u0438\u0434\u0435\u043e \u0434\u0435\u043a\u043e\u0434\u0435\u0440:",
- "LabelHardwareVideoDecoderHelp": "Available on supported systems only."
+ "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\u043b\u0438 \u043d\u0435\u0440\u0430\u0441\u043f\u043e\u0437\u043d\u0430\u043d\u043d\u043e\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:",
+ "LabelHardwareVideoDecoder": "\u0410\u043f\u043f\u0430\u0440\u0430\u0442\u043d\u044b\u0439 \u0434\u0435\u043a\u043e\u0434\u0435\u0440 \u0432\u0438\u0434\u0435\u043e:",
+ "LabelHardwareVideoDecoderHelp": "\u0414\u043e\u0441\u0442\u0443\u043f\u043d\u043e \u0442\u043e\u043b\u044c\u043a\u043e \u043d\u0430 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0445 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0445."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/sl-SI.json b/dashboard-ui/strings/html/sl-SI.json
index d337cf0c5d..f012601ded 100644
--- a/dashboard-ui/strings/html/sl-SI.json
+++ b/dashboard-ui/strings/html/sl-SI.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Exit",
"LabelVisitCommunity": "Visit Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Browse Library",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "Restart Server",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Previous",
"LabelFinish": "Finish",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Next",
"LabelYoureDone": "You're Done!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "Tell us about yourself",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "Your first name:",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Cancel",
- "ButtonExit": "Exit",
- "ButtonNew": "New",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "Country:",
"LabelLanguage": "Language:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferred metadata language:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferences",
"TabPassword": "Password",
"TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
"TabImage": "Image",
"TabProfile": "Profile",
- "TabMetadata": "Metadata",
- "TabImages": "Images",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Audio language preference:",
"LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiles",
"TabSecurity": "Security",
"ButtonAddUser": "Add User",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Save",
"ButtonResetPassword": "Reset Password",
"LabelNewPassword": "New password:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "Name",
- "OptionFolderSort": "Folders",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatic Updates",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "Latest Albums",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Type:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Subtitles",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "Movies",
"TabStudios": "Studios",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Latest Movies",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "New",
+ "TabMetadata": "Metadata",
+ "TabImages": "Images",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Nastavitve",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Nastavitve",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/sv.json b/dashboard-ui/strings/html/sv.json
index 32d7886f5c..c6b36f7fb6 100644
--- a/dashboard-ui/strings/html/sv.json
+++ b/dashboard-ui/strings/html/sv.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Avsluta",
"LabelVisitCommunity": "Bes\u00f6k v\u00e5rt diskussionsforum",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "F\u00f6rval",
- "LabelApiDocumentation": "Api Dokumentation",
- "LabelDeveloperResources": "Resurser f\u00f6r utvecklare",
"LabelBrowseLibrary": "Bl\u00e4ddra i biblioteket",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "\u00d6ppna biblioteksbl\u00e4ddraren",
"LabelRestartServer": "Starta om servern",
"LabelShowLogWindow": "Visa loggf\u00f6nstret",
"LabelPrevious": "F\u00f6reg\u00e5ende",
"LabelFinish": "Klart",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "N\u00e4sta",
"LabelYoureDone": "Klart!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Officiell version",
+ "OptionBeta": "Betaversion",
+ "OptionDev": "Utvecklarversion (instabil)",
"ThisWizardWillGuideYou": "Den h\u00e4r guiden hj\u00e4lper dig att g\u00f6ra de f\u00f6rsta inst\u00e4llningarna. F\u00f6r att b\u00f6rja var v\u00e4nlig v\u00e4lj \u00f6nskat spr\u00e5k.",
"TellUsAboutYourself": "Ber\u00e4tta om dig sj\u00e4lv",
- "ButtonQuickStartGuide": "Snabbstartguide",
"LabelYourFirstName": "Ditt f\u00f6rnamn:",
"MoreUsersCanBeAddedLater": "Flera anv\u00e4ndare kan skapas senare i Kontrollpanelen.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Aktivera automatisk koppling av portar",
"LabelEnableAutomaticPortMappingHelp": "UPnP m\u00f6jligg\u00f6r automatisk inst\u00e4llning av din router s\u00e5 att du enkelt kan n\u00e5 Media Browser fr\u00e5n Internet. Detta kanske inte fungerar med alla routrar.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "V\u00e4nligen acceptera anv\u00e4ndarvillkoren och sekretesspolicy innan du forts\u00e4tter.",
- "OptionIAcceptTermsOfService": "Jag accepterar anv\u00e4ndarvillkoren",
- "ButtonPrivacyPolicy": "sekretesspolicy",
- "ButtonTermsOfService": "Anv\u00e4ndarvillkor",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "OK",
"ButtonCancel": "Avbryt",
- "ButtonExit": "Exit",
- "ButtonNew": "Nytillkommet",
- "HeaderTV": "TV",
- "HeaderAudio": "Ljud",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Identifiera arkivfiler som media",
- "OptionDetectArchiveFilesAsMediaHelp": "Om aktiverad, kommer filer med .rar och .zip f\u00f6rl\u00e4ngningar att uppt\u00e4ckas som mediefiler.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Synk jobb",
- "OptionReleaseDate": "Premi\u00e4rdatum",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Misslyckades",
- "LabelSeries": "Serie:",
- "ButtonFullscreen": "V\u00e4xla fullsk\u00e4rmsl\u00e4ge",
- "ButtonAudioTracks": "Ljudsp\u00e5r",
- "ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r:",
- "ButtonNextTrack": "N\u00e4sta sp\u00e5r:",
- "HeaderEpisodes": "Avsnitt:",
- "FolderTypeMovies": "Filmer",
- "FolderTypeMusic": "Musik",
- "FolderTypeAdultVideos": "Inneh\u00e5ll f\u00f6r vuxna",
- "FolderTypePhotos": "Foton",
- "FolderTypeMusicVideos": "Musikvideor",
- "FolderTypeHomeVideos": "Hemvideor",
- "FolderTypeGames": "Spel",
- "FolderTypeBooks": "B\u00f6cker",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "\u00c4rv",
- "LabelContentType": "Inneh\u00e5llstyp:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Konfigurera mediabiblioteket",
"ButtonAddMediaFolder": "Skapa mediamapp",
"LabelFolderType": "Typ av mapp:",
"ReferToMediaLibraryWiki": "Se avsnittet om mediabibliotek i v\u00e5r Wiki.",
"LabelCountry": "Land:",
"LabelLanguage": "Spr\u00e5k:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "\u00d6nskat spr\u00e5k f\u00f6r metadata:",
"LabelSaveLocalMetadata": "Spara grafik och metadata i mediamapparna",
"LabelSaveLocalMetadataHelp": "Om grafik och metadata sparas tillsammans med media \u00e4r de enkelt \u00e5tkomliga f\u00f6r redigering.",
@@ -130,37 +47,16 @@
"TabPreferences": "Inst\u00e4llningar",
"TabPassword": "L\u00f6senord",
"TabLibraryAccess": "\u00c5tkomst till biblioteket",
- "TabAccess": "Access",
"TabImage": "Bild",
"TabProfile": "Profil",
- "TabMetadata": "Metadata",
- "TabImages": "Bilder",
- "TabNotifications": "Meddelanden",
- "TabCollectionTitles": "Titlar",
- "HeaderDeviceAccess": "Enhets\u00e5tkomst",
- "OptionEnableAccessFromAllDevices": "Aktivera \u00e5tkomst fr\u00e5n alla enheter",
- "OptionEnableAccessToAllChannels": "Aktivera \u00e5tkomst till alla kanaler",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Visa saknade avsnitt i s\u00e4songer",
"LabelUnairedMissingEpisodesWithinSeasons": "Visa \u00e4nnu ej s\u00e4nda avsnitt i s\u00e4songer",
"HeaderVideoPlaybackSettings": "Inst\u00e4llningar f\u00f6r videouppspelning",
- "HeaderPlaybackSettings": "Uppspelningsinst\u00e4llningar",
"LabelAudioLanguagePreference": "\u00d6nskat spr\u00e5k f\u00f6r ljudsp\u00e5r",
"LabelSubtitleLanguagePreference": "\u00d6nskat spr\u00e5k f\u00f6r undertexter:",
- "OptionDefaultSubtitles": "Standard",
- "OptionOnlyForcedSubtitles": "Endast tvingande undertexter",
- "OptionAlwaysPlaySubtitles": "Visa alltid undertexter",
- "OptionNoSubtitles": "Inga undertexter",
- "OptionDefaultSubtitlesHelp": "Om ljudsp\u00e5ret \u00e4r p\u00e5 ett fr\u00e4mmande spr\u00e5k laddas undertexter p\u00e5 det \u00f6nskade spr\u00e5ket.",
- "OptionOnlyForcedSubtitlesHelp": "Endast undertexter markerade som tvingande kommer att laddas.",
- "OptionAlwaysPlaySubtitlesHelp": "Undertexter p\u00e5 det \u00f6nskade spr\u00e5ket kommer att laddas oavsett ljudsp\u00e5rets spr\u00e5k.",
- "OptionNoSubtitlesHelp": "Ladda normalt inte undertexter.",
"TabProfiles": "Profiler",
"TabSecurity": "S\u00e4kerhet",
"ButtonAddUser": "Ny anv\u00e4ndare",
- "ButtonAddLocalUser": "Skapa lokal anv\u00e4ndare",
- "ButtonInviteUser": "Bjud in anv\u00e4ndare",
"ButtonSave": "Spara",
"ButtonResetPassword": "\u00c5terst\u00e4ll l\u00f6senord",
"LabelNewPassword": "Nytt l\u00f6senord:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "H\u00f6gsta till\u00e5tna \u00e5ldersgr\u00e4ns",
"MaxParentalRatingHelp": "Inneh\u00e5ll med h\u00f6gre gr\u00e4ns visas ej f\u00f6r den h\u00e4r anv\u00e4ndaren.",
"LibraryAccessHelp": "Ange vilka mediamappar den h\u00e4r anv\u00e4ndaren ska ha tillg\u00e5ng till. Administrat\u00f6rer har r\u00e4ttighet att redigera alla mappar i metadatahanteraren.",
- "ChannelAccessHelp": "V\u00e4lj kanaler att dela med denna anv\u00e4ndare. Administrat\u00f6rer kan redigera alla kanaler med hj\u00e4lp av metadatahanteraren.",
"ButtonDeleteImage": "Ta bort bild",
- "LabelSelectUsers": "V\u00e4lj anv\u00e4ndare:",
"ButtonUpload": "Ladda upp",
"HeaderUploadNewImage": "Ladda upp ny bild",
"LabelDropImageHere": "Dra bild hit",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Ingenting h\u00e4r.",
"MessagePleaseEnsureInternetMetadata": "Var god se till att h\u00e4mtning av metadata via Internet \u00e4r aktiverad.",
"TabSuggested": "Rekommenderas",
- "TabSuggestions": "Suggestions",
"TabLatest": "Nytillkommet",
"TabUpcoming": "Kommande",
"TabShows": "Serier",
@@ -217,6 +110,7 @@
"OptionAscending": "Stigande",
"OptionDescending": "Sjunkande",
"OptionRuntime": "Speltid",
+ "OptionReleaseDate": "Premi\u00e4rdatum",
"OptionPlayCount": "Antal visningar",
"OptionDatePlayed": "Senast visad",
"OptionDateAdded": "Inlagd den",
@@ -226,16 +120,10 @@
"OptionTrackName": "Sp\u00e5rnamn",
"OptionCommunityRating": "Allm\u00e4nhetens betyg",
"OptionNameSort": "Namn",
- "OptionFolderSort": "Mappar",
"OptionBudget": "Budget",
"OptionRevenue": "Int\u00e4kter",
"OptionPoster": "Affisch",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Fondbild",
"OptionTimeline": "Tidslinje",
- "OptionThumb": "Miniatyr",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banderoll",
"OptionCriticRating": "Kritikerbetyg",
"OptionVideoBitrate": "Bithastighet f\u00f6r video",
"OptionResumable": "Kan \u00e5terupptas",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Schemalagda aktiviteter",
"TabMyPlugins": "Mina till\u00e4gg",
"TabCatalog": "Katalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Automatiska uppdateringar",
"HeaderNowPlaying": "Nu spelas",
"HeaderLatestAlbums": "Nytillkomna album",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Nyligen spelade",
"HeaderFrequentlyPlayed": "Ofta spelade",
"DevBuildWarning": "Utvecklingsversioner \u00e4r \"bleeding edge\". Dessa kommer ut ofta och \u00e4r otestade. Appen kanske kraschar och vissa delar kanske inte alls fungerar.",
+ "OptionThumb": "Miniatyr",
+ "OptionBanner": "Banderoll",
"LabelVideoType": "Videoformat:",
"OptionBluray": "Blu-ray",
"OptionDvd": "DVD",
"OptionIso": "ISO",
"Option3D": "3D",
"LabelFeatures": "Inneh\u00e5ll:",
- "LabelService": "Tj\u00e4nst:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Senaste resultat:",
"OptionHasSubtitles": "Undertexter",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Ledmotiv",
@@ -268,8 +153,6 @@
"TabMovies": "Filmer",
"TabStudios": "Studior",
"TabTrailers": "Trailers",
- "LabelArtists": "Artister:",
- "LabelArtistsHelp": "Separera med ; vid flera",
"HeaderLatestMovies": "Nytillkomna filmer",
"HeaderLatestTrailers": "Nytillkomna trailers",
"OptionHasSpecialFeatures": "Extramaterial:",
@@ -290,32 +173,24 @@
"OptionFriday": "Fredag",
"OptionSaturday": "L\u00f6rdag",
"HeaderManagement": "Administration",
- "LabelManagement": "Administration:",
"OptionMissingImdbId": "IMDB-ID saknas",
"OptionMissingTvdbId": "TVDB-ID saknas",
"OptionMissingOverview": "Synopsis saknas",
"OptionFileMetadataYearMismatch": "Fildatum\/metadatadatum \u00f6verensst\u00e4mmer ej",
"TabGeneral": "Allm\u00e4nt",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "H\u00e4ndelselogg",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "Om",
"TabSupporterKey": "Donationskod",
"TabBecomeSupporter": "Bidra med en donation",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "S\u00f6k i kunskapsdatabasen",
"VisitTheCommunity": "Bes\u00f6k anv\u00e4ndargrupperna",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Visa inte den h\u00e4r anv\u00e4ndaren p\u00e5 inloggningssidorna",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Sp\u00e4rra den h\u00e4r anv\u00e4ndaren",
"OptionDisableUserHelp": "Sp\u00e4rrade anv\u00e4ndare till\u00e5ts ej kontakta servern. Eventuella p\u00e5g\u00e5ende anslutningar avbryts omedelbart.",
"HeaderAdvancedControl": "Avancerade anv\u00e4ndarinst\u00e4llningar",
"LabelName": "Namn:",
- "ButtonHelp": "Hj\u00e4lp",
"OptionAllowUserToManageServer": "Till\u00e5t denna anv\u00e4ndare att administrera servern",
"HeaderFeatureAccess": "Tillg\u00e5ng till funktioner",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Till\u00e5t fj\u00e4rrstyrning av andra anv\u00e4ndare",
- "OptionAllowRemoteSharedDevices": "Till\u00e5t fj\u00e4rrstyrning av delade enheter",
- "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheter betraktas som delade tills en anv\u00e4ndare b\u00f6rjar kontrollera den.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Fj\u00e4rrkontroll",
"OptionMissingTmdbId": "TMDB-ID saknas",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "V\u00e4lj",
"ButtonGroupVersions": "Gruppera versioner",
"PismoMessage": "Anv\u00e4nder Pismo File Mount baserat p\u00e5 en sk\u00e4nkt licens",
- "TangibleSoftwareMessage": "Anv\u00e4nder Tangible Solutions Java\/C#-konverterare baserat p\u00e5 en sk\u00e4nkt licens.",
- "HeaderCredits": "Tack till",
"PleaseSupportOtherProduces": "St\u00f6d g\u00e4rna de gratisprodukter vi anv\u00e4nder:",
"VersionNumber": "Version {0}",
"TabPaths": "S\u00f6kv\u00e4gar",
"TabServer": "Server",
"TabTranscoding": "Omkodning",
"TitleAdvanced": "Avancerat",
- "OptionRelease": "Officiell version",
- "OptionBeta": "Betaversion",
- "OptionDev": "Utvecklarversion (instabil)",
"LabelAllowServerAutoRestart": "Till\u00e5t att servern startas om automatiskt efter uppdateringar",
"LabelAllowServerAutoRestartHelp": "Servern startas om endast d\u00e5 inga anv\u00e4ndare \u00e4r inloggade.",
"LabelEnableDebugLogging": "Aktivera loggning p\u00e5 avlusningsniv\u00e5",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Ange anpassade s\u00f6kv\u00e4gar d\u00e4r s\u00e5 \u00f6nskas. L\u00e4mna tomt f\u00f6r att anv\u00e4nda standardv\u00e4rdena.",
"LabelCachePath": "Plats f\u00f6r cache:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Plats f\u00f6r bilddatabasen (ImagesByName):",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Plats f\u00f6r metadata:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Avsnitt",
"OptionOtherVideos": "Andra videor",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Aktivera automatiska uppdateringar",
"LabelAutomaticUpdatesTmdb": "Till\u00e5t automatiska uppdateringar fr\u00e5n TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Till\u00e5t automatiska uppdateringar fr\u00e5n TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personlig api-nyckel:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "\u00d6nskat spr\u00e5k:",
"ButtonAutoScroll": "Rulla listor automatiskt",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "L\u00f6senord kr\u00e4vs ej vid lokal inloggning.",
"TabGuide": "TV-guide",
"TabChannels": "Kanaler",
- "TabCollections": "Samlingar",
"HeaderChannels": "Kanaler",
"TabRecordings": "Inspelningar",
"TabScheduled": "Bokade",
"TabSeries": "Serie",
- "TabFavorites": "Favoriter",
- "TabMyLibrary": "Mitt bibliotek",
"ButtonCancelRecording": "Avbryt inspelning",
"HeaderPrePostPadding": "Marginal f\u00f6re\/efter",
"LabelPrePaddingMinutes": "Marginal i minuter f\u00f6re programstart:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Inst\u00e4llningar",
"ButtonRefreshGuideData": "Uppdatera programguiden",
- "ButtonRefresh": "Uppdatera",
- "ButtonAdvancedRefresh": "Avancerad uppdatering",
"OptionPriority": "Prioritet",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Spela bara in nya avsnitt",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Dagar",
"HeaderActiveRecordings": "P\u00e5g\u00e5ende inspelningar",
"HeaderLatestRecordings": "Senaste inspelningarna",
@@ -431,17 +284,16 @@
"ButtonEdit": "\u00c4ndra",
"ButtonRecord": "Spela in",
"ButtonDelete": "Ta bort",
- "ButtonRemove": "Ta bort",
"OptionRecordSeries": "Spela in serie",
"HeaderDetails": "Detaljinfo",
+ "OptionFolderSort": "Mappar",
+ "OptionBackdrop": "Fondbild",
"TitleLiveTV": "Live-TV",
"LabelNumberOfGuideDays": "Antal dagars tabl\u00e5 att h\u00e4mta",
"LabelNumberOfGuideDaysHelp": "H\u00e4mtning av en l\u00e4ngre periods tabl\u00e5 ger m\u00f6jlighet att boka inspelningar och se program l\u00e4ngre fram i tiden, men ger l\u00e4ngre nedladdningstid. \"Auto\" v\u00e4ljer baserat p\u00e5 antalet kanaler.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "Du m\u00e5ste ha ett till\u00e4gg f\u00f6r live-TV installerad f\u00f6r att kunna forts\u00e4tta.",
"LiveTvPluginRequiredHelp": "Installera ett av v\u00e5ra till\u00e4gg, t ex Next PVR eller ServerWMC.",
- "LabelCustomizeOptionsPerMediaType": "Anpassa f\u00f6r typ av media:",
"OptionDownloadThumbImage": "Miniatyr",
"OptionDownloadMenuImage": "Meny",
"OptionDownloadLogoImage": "Logotyp",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Huvudbild",
"HeaderFetchImages": "H\u00e4mta bilder:",
"HeaderImageSettings": "Bildinst\u00e4llningar",
- "TabOther": "\u00d6vrigt",
"LabelMaxBackdropsPerItem": "H\u00f6gsta antal fondbilder per objekt:",
"LabelMaxScreenshotsPerItem": "H\u00f6gsta antal sk\u00e4rmdumpar per objekt:",
"LabelMinBackdropDownloadWidth": "H\u00e4mta enbart fondbilder bredare \u00e4n:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Rollista & bes\u00e4ttning",
"HeaderAdditionalParts": "Ytterligare delar",
"ButtonSplitVersionsApart": "Hantera olika versioner separat",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Saknas",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "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 utan att f\u00f6rbruka serverresurser f\u00f6r str\u00f6mning och omkodning.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "H\u00f6gsta kvalitet",
"OptionEnableDebugTranscodingLogging": "Aktivera loggning av fel fr\u00e5n omkodning",
"OptionEnableDebugTranscodingLoggingHelp": "Detta resulterar i mycket stora loggfiler och rekommenderas bara vid fels\u00f6kning.",
+ "ButtonNew": "Nytillkommet",
+ "TabMetadata": "Metadata",
+ "TabImages": "Bilder",
+ "TabCollectionTitles": "Titlar",
+ "ButtonSearch": "S\u00f6k",
+ "ButtonRemove": "Ta bort",
"EditCollectionItemsHelp": "L\u00e4gg till eller ta bort filmer, tv-serier, album, b\u00f6cker eller spel du vill gruppera inom den h\u00e4r samlingen.",
"HeaderAddTitles": "L\u00e4gg till titlar",
"LabelEnableDlnaPlayTo": "Anv\u00e4nd DLNA spela-upp-p\u00e5",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "Systems\u00f6kv\u00e4gar",
"LinkCommunity": "Anv\u00e4ndargrupper",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "API-dokumentation",
"LabelFriendlyServerName": "Ditt \u00f6nskade servernamn:",
"LabelFriendlyServerNameHelp": "Det h\u00e4r namnet anv\u00e4nds f\u00f6r att identifiera servern, om det l\u00e4mnas tomt kommer datorns namn att anv\u00e4ndas.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "Ny samling",
- "ButtonSubmit": "Bekr\u00e4fta",
"ButtonCreate": "Skapa",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Webanslutningens portnummer:",
- "LabelEnableAutomaticPortMap": "Aktivera automatisk koppling av portar",
- "LabelEnableAutomaticPortMapHelp": "Automatisk l\u00e4nkning av publik och lokal port via UPnP. Detta kanske inte fungerar med alla routrar.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "\u00c5teruppta",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Klienter",
"LabelCompleted": "Klar",
+ "LabelFailed": "Misslyckades",
"LabelSkipped": "Hoppades \u00f6ver",
"HeaderEpisodeOrganization": "Katalogisering av avsnitt",
+ "LabelSeries": "Serie:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Kr\u00e4vs endast f\u00f6r filer som inneh\u00e5ller flera avsnitt",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Flytta",
"LabelTransferMethodHelp": "Kopiera eller flytta filer fr\u00e5n bevakade mappar",
"HeaderLatestNews": "Senaste nytt",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "P\u00e5g\u00e5ende aktiviteter",
"HeaderActiveDevices": "Aktiva enheter",
"HeaderPendingInstallations": "V\u00e4ntande installationer",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Starta om nu",
"ButtonRestart": "Starta om",
"ButtonShutdown": "St\u00e4ng av",
"ButtonUpdateNow": "Uppdatera nu",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Var god st\u00e4ng av servern och uppdatera manuellt.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Anger tid i sekunder mellan varje \"jag lever\"-meddelande.",
"LabelDefaultUser": "F\u00f6rvald anv\u00e4ndare:",
"LabelDefaultUserHelp": "Anger vilket anv\u00e4ndarbibliotek som skall visas p\u00e5 anslutna enheter. Denna inst\u00e4llning kan \u00e4ndras p\u00e5 enhetsbasis med hj\u00e4lp av en enhetsprofiler.",
+ "HeaderPlaybackSettings": "Uppspelningsinst\u00e4llningar",
"TitleDlna": "DLNA",
- "TitleChannels": "Kanaler",
"HeaderServerSettings": "Serverinst\u00e4llningar",
"LabelWeatherDisplayLocation": "Geografisk plats f\u00f6r v\u00e4derdata:",
"LabelWeatherDisplayLocationHelp": "U.S. zip code \/ Stad, stat, land \/ Stad, land",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "Om avaktiverat kan klienterna visa en inloggningsbild f\u00f6r visuellt val av anv\u00e4ndare.",
"OptionOtherApps": "Andra appar",
"OptionMobileApps": "Mobilappar",
+ "TabNotifications": "Meddelanden",
"HeaderNotificationList": "Klicka p\u00e5 en meddelandetyp f\u00f6r att ange inst\u00e4llningar.",
+ "LabelNotificationEnabled": "Aktivera denna meddelandetyp",
+ "NotificationOptionVideoPlayback": "Videouppspelning har p\u00e5b\u00f6rjats",
+ "NotificationOptionAudioPlayback": "Ljuduppspelning har p\u00e5b\u00f6rjats",
+ "NotificationOptionGamePlayback": "Spel har startats",
+ "NotificationOptionNewLibraryContent": "Nytt inneh\u00e5ll har tillkommit",
+ "NotificationOptionServerRestartRequired": "Servern m\u00e5ste startas om",
+ "LabelMonitorUsers": "\u00d6vervaka aktivitet fr\u00e5n:",
+ "LabelSendNotificationToUsers": "Skicka meddelande till:",
+ "LabelUseNotificationServices": "Anv\u00e4nd f\u00f6ljande tj\u00e4nster:",
"NotificationOptionApplicationUpdateAvailable": "Ny programversion tillg\u00e4nglig",
"NotificationOptionApplicationUpdateInstalled": "Programuppdatering installerad",
"NotificationOptionPluginUpdateInstalled": "Till\u00e4gg har uppdaterats",
"NotificationOptionPluginInstalled": "Till\u00e4gg har installerats",
"NotificationOptionPluginUninstalled": "Till\u00e4gg har avinstallerats",
- "NotificationOptionVideoPlayback": "Videouppspelning har p\u00e5b\u00f6rjats",
- "NotificationOptionAudioPlayback": "Ljuduppspelning har p\u00e5b\u00f6rjats",
- "NotificationOptionGamePlayback": "Spel har startats",
- "NotificationOptionVideoPlaybackStopped": "Videouppspelning stoppad",
- "NotificationOptionAudioPlaybackStopped": "Ljuduppspelning stoppad",
- "NotificationOptionGamePlaybackStopped": "Spel stoppat",
"NotificationOptionTaskFailed": "Schemalagd aktivitet har misslyckats",
"NotificationOptionInstallationFailed": "Fel vid installation",
- "NotificationOptionNewLibraryContent": "Nytt inneh\u00e5ll har tillkommit",
- "NotificationOptionNewLibraryContentMultiple": "Nytillkommet inneh\u00e5ll finns (flera objekt)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Servern m\u00e5ste startas om",
- "LabelNotificationEnabled": "Aktivera denna meddelandetyp",
- "LabelMonitorUsers": "\u00d6vervaka aktivitet fr\u00e5n:",
- "LabelSendNotificationToUsers": "Skicka meddelande till:",
- "LabelUseNotificationServices": "Anv\u00e4nd f\u00f6ljande tj\u00e4nster:",
"CategoryUser": "Anv\u00e4ndare",
"CategorySystem": "System",
- "CategoryApplication": "App",
- "CategoryPlugin": "Till\u00e4gg",
"LabelMessageTitle": "Meddelandetitel",
"LabelAvailableTokens": "Tillg\u00e4ngliga mark\u00f6rer:",
"AdditionalNotificationServices": "S\u00f6k efter fler meddelandetill\u00e4gg i till\u00e4ggskatalogen.",
+ "LabelSelectUsers": "V\u00e4lj anv\u00e4ndare:",
"OptionAllUsers": "Alla anv\u00e4ndare",
"OptionAdminUsers": "Administrat\u00f6rer",
"OptionCustomUsers": "Anpassad",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "H\u00f6ger",
"ButtonBack": "F\u00f6reg\u00e5ende",
"ButtonInfo": "Info",
- "ButtonOsd": "OSD",
"ButtonPageUp": "Sida upp",
"ButtonPageDown": "Sida ned",
"PageAbbreviation": "Sid",
"ButtonHome": "Hem",
- "ButtonSearch": "S\u00f6k",
"ButtonSettings": "Inst\u00e4llningar",
"ButtonTakeScreenshot": "Ta sk\u00e4rmbild",
"ButtonLetterUp": "Bokstav upp",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Nu spelas",
"TabNavigation": "Navigering",
- "TabControls": "Kontroller",
+ "ButtonFullscreen": "V\u00e4xla fullsk\u00e4rmsl\u00e4ge",
"ButtonScenes": "Scener",
"ButtonSubtitles": "Undertexter",
+ "ButtonAudioTracks": "Ljudsp\u00e5r",
+ "ButtonPreviousTrack": "F\u00f6reg\u00e5ende sp\u00e5r:",
+ "ButtonNextTrack": "N\u00e4sta sp\u00e5r:",
"ButtonStop": "Stopp",
"ButtonPause": "Paus",
- "ButtonNext": "N\u00e4sta",
- "ButtonPrevious": "F\u00f6reg\u00e5ende",
"LabelGroupMoviesIntoCollections": "Gruppera filmer i samlingsboxar",
"LabelGroupMoviesIntoCollectionsHelp": "I filmlistor visas filmer som ing\u00e5r i en samlingsbox som ett enda objekt.",
+ "CategoryApplication": "App",
+ "CategoryPlugin": "Till\u00e4gg",
"NotificationOptionPluginError": "Fel uppstod med till\u00e4gget",
+ "TabControls": "Kontroller",
"ButtonVolumeUp": "H\u00f6j volymen",
"ButtonVolumeDown": "S\u00e4nk volymen",
"ButtonMute": "Tyst",
"HeaderLatestMedia": "Nytillkommet",
+ "OptionNoSubtitles": "Inga undertexter",
"OptionSpecialFeatures": "Extramaterial",
+ "ChannelAccessHelp": "V\u00e4lj kanaler att dela med denna anv\u00e4ndare. Administrat\u00f6rer kan redigera alla kanaler med hj\u00e4lp av metadatahanteraren.",
"HeaderCollections": "Samlingar",
"LabelProfileCodecsHelp": "\u00c5tskilda med kommatecken, detta kan l\u00e4mnas tomt f\u00f6r att g\u00e4lla f\u00f6r alla kodningsformat.",
"LabelProfileContainersHelp": "\u00c5tskilda med kommatecken, detta kan l\u00e4mnas tomt f\u00f6r att g\u00e4lla f\u00f6r alla beh\u00e5llare.",
"HeaderResponseProfile": "Svarsprofil",
"LabelType": "Typ:",
- "LabelPersonRole": "Roll:",
- "LabelPersonRoleHelp": "Roll anv\u00e4nds i allm\u00e4nhet bara f\u00f6r sk\u00e5despelare.",
"LabelProfileContainer": "Beh\u00e5llare:",
"LabelProfileVideoCodecs": "Kodning av video:",
"LabelProfileAudioCodecs": "Kodning av ljud:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "Om aktiverad representeras alla videor i DIDL som \"object.item.videoItem\" i st\u00e4llet f\u00f6r en mera specifik typ, t ex \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Mediaformat som st\u00f6ds:",
"TabIdentification": "Identifiering",
- "HeaderIdentification": "Identifiering",
"TabDirectPlay": "Direktuppspelning",
"TabContainers": "Beh\u00e5llare",
"TabCodecs": "Kodningsformat",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "H\u00f6gsta bithastighet:",
"LabelMaxBitrateHelp": "Ange en h\u00f6gsta bithastighet i bandbreddsbegr\u00e4nsade milj\u00f6er, eller i fall d\u00e4r enheten har sina egna begr\u00e4nsningar.",
- "LabelMaxStreamingBitrate": "Max bithastighet f\u00f6r str\u00f6mning:",
- "LabelMaxStreamingBitrateHelp": "Ange h\u00f6gsta bithastighet f\u00f6r str\u00f6mning.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max bithastighet vid synkronisering:",
- "LabelMaxStaticBitrateHelp": "Ange h\u00f6gsta bithastighet vid synkronisering.",
- "LabelMusicStaticBitrate": "Bithastighet vid synkning av musik:",
- "LabelMusicStaticBitrateHelp": "Ange h\u00f6gsta bithastighet vid synkronisering av musik",
- "LabelMusicStreamingTranscodingBitrate": "Bithastighet vid omkodning av musik:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Ange h\u00f6gsta bithastighet vid str\u00f6mning av musik",
"OptionIgnoreTranscodeByteRangeRequests": "Ignorera beg\u00e4ran om \"byte range\" vid omkodning",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "Om aktiverad kommer beg\u00e4ran att uppfyllas, men \"byte range\"-rubriken ignoreras.",
"LabelFriendlyName": "\u00d6nskat namn",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "Detta kr\u00e4vs f\u00f6r vissa enheter som inte kan utf\u00f6ra tidss\u00f6kning p\u00e5 ett tillfredsst\u00e4llande s\u00e4tt.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Ladda ner undertexter f\u00f6r:",
- "MessageNoChapterProviders": "Installera ett kapiteltill\u00e4gg s\u00e5som ChapterDb f\u00f6r att ge fler kapitelfunktioner.",
- "LabelSkipIfGraphicalSubsPresent": "Hoppa \u00f6ver om videon redan inneh\u00e5ller grafiska undertexter",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Undertexter",
- "TabChapters": "Kapitel",
- "HeaderDownloadChaptersFor": "H\u00e4mta kapitelnamn f\u00f6r:",
"LabelOpenSubtitlesUsername": "Inloggnings-ID hos Open Subtitles:",
"LabelOpenSubtitlesPassword": "L\u00f6senord hos Open Subtitles:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Anv\u00e4nd det f\u00f6rvalda ljudsp\u00e5ret oavsett spr\u00e5k",
- "LabelSubtitlePlaybackMode": "Undertextl\u00e4ge:",
"LabelDownloadLanguages": "Spr\u00e5k att ladda ner:",
"ButtonRegister": "Registrera",
+ "LabelSkipIfGraphicalSubsPresent": "Hoppa \u00f6ver om videon redan inneh\u00e5ller grafiska undertexter",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Hoppa \u00f6ver om det f\u00f6rvalda ljudsp\u00e5rets spr\u00e5k \u00e4r samma som det nerladdade",
"LabelSkipIfAudioTrackPresentHelp": "Bocka ur denna f\u00f6r att ge undertexter \u00e5t alla videor oavsett ljudsp\u00e5rets spr\u00e5k.",
+ "NotificationOptionNewLibraryContentMultiple": "Nytillkommet inneh\u00e5ll finns (flera objekt)",
"HeaderSendMessage": "Skicka meddelande",
"ButtonSend": "Skicka",
"LabelMessageText": "Meddelandetext",
+ "LabelService": "Tj\u00e4nst:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Senaste resultat:",
+ "ButtonOsd": "OSD",
"MessageNoAvailablePlugins": "Inga till\u00e4gg tillg\u00e4ngliga.",
"LabelDisplayPluginsFor": "Visa till\u00e4gg f\u00f6r:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Avsnittsnamn",
- "LabelSeriesNamePlain": "Seriens namn",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "S\u00e4songsnummer",
- "LabelEpisodeNumberPlain": "Avsnittsnummer",
- "LabelEndingEpisodeNumberPlain": "Avslutande avsnittsnummer",
"HeaderTypeText": "Ange text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Standard",
+ "OptionOnlyForcedSubtitles": "Endast tvingande undertexter",
+ "OptionAlwaysPlaySubtitles": "Visa alltid undertexter",
+ "OptionDefaultSubtitlesHelp": "Om ljudsp\u00e5ret \u00e4r p\u00e5 ett fr\u00e4mmande spr\u00e5k laddas undertexter p\u00e5 det \u00f6nskade spr\u00e5ket.",
+ "OptionOnlyForcedSubtitlesHelp": "Endast undertexter markerade som tvingande kommer att laddas.",
+ "OptionAlwaysPlaySubtitlesHelp": "Undertexter p\u00e5 det \u00f6nskade spr\u00e5ket kommer att laddas oavsett ljudsp\u00e5rets spr\u00e5k.",
+ "OptionNoSubtitlesHelp": "Ladda normalt inte undertexter.",
+ "TangibleSoftwareMessage": "Anv\u00e4nder Tangible Solutions Java\/C#-konverterare baserat p\u00e5 en sk\u00e4nkt licens.",
+ "HeaderCredits": "Tack till",
+ "TabCollections": "Samlingar",
+ "TabFavorites": "Favoriter",
+ "TabMyLibrary": "Mitt bibliotek",
+ "LabelCustomizeOptionsPerMediaType": "Anpassa f\u00f6r typ av media:",
+ "LabelPlayDefaultAudioTrack": "Anv\u00e4nd det f\u00f6rvalda ljudsp\u00e5ret oavsett spr\u00e5k",
+ "LabelSubtitlePlaybackMode": "Undertextl\u00e4ge:",
+ "TabOther": "\u00d6vrigt",
+ "NotificationOptionVideoPlaybackStopped": "Videouppspelning stoppad",
+ "NotificationOptionAudioPlaybackStopped": "Ljuduppspelning stoppad",
+ "NotificationOptionGamePlaybackStopped": "Spel stoppat",
"HeaderSearchForSubtitles": "S\u00f6k efter undertexter",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "S\u00f6kningen gav inga resultat.",
"TabDisplay": "Visning",
"TabLanguages": "Spr\u00e5k",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Aktivera ledmotiv",
"LabelEnableBackdrops": "Aktivera fondbilder",
"LabelEnableThemeSongsHelp": "Om aktiverat spelas ledmotiv upp vid bl\u00e4ddring i biblioteket.",
"LabelEnableBackdropsHelp": "Om aktiverat visas fondbilder i bakgrunden av vissa sidor vid bl\u00e4ddring i biblioteket.",
- "HeaderHomePage": "Hemsidan",
- "HeaderSettingsForThisDevice": "Inst\u00e4llningar f\u00f6r den h\u00e4r enheten",
"OptionAuto": "Auto",
"OptionYes": "Ja",
"OptionNo": "Nej",
- "HeaderOptions": "Alternativ",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Startsidans sektion 1:",
"LabelHomePageSection2": "Startsidans sektion 2:",
"LabelHomePageSection3": "Startsidans sektion 3:",
- "LabelHomePageSection4": "Startsidans sektion 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "\u00c5teruppta",
"OptionLatestMedia": "Nytillkommet",
- "OptionLatestChannelMedia": "Senaste objekten i Kanaler",
- "HeaderLatestChannelItems": "Senaste objekten i Kanaler",
"OptionNone": "Inga",
"HeaderLiveTv": "Live-TV",
"HeaderReports": "Rapporter",
"HeaderMetadataManager": "Metadatahanteraren",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "H\u00e4mtar kanalinneh\u00e5ll...",
- "MessageLoadingContent": "H\u00e4mtar inneh\u00e5ll...",
"ButtonMarkRead": "Markera som l\u00e4st",
"OptionDefaultSort": "F\u00f6rval",
"OptionCommunityMostWatchedSort": "Oftast visade",
"TabNextUp": "N\u00e4stkommande",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "Det finns inga filmf\u00f6rslag f\u00f6r tillf\u00e4llet. Efter att ha sett ett antal filmer kan du \u00e5terkomma hit f\u00f6r att se dina f\u00f6rslag.",
"MessageNoCollectionsAvailable": "Samlingar g\u00f6r det m\u00f6jligt att avnjuta personliga grupperingar av filmer, serier, Album, b\u00f6cker och spel. Klicka p\u00e5 knappen + f\u00f6r att b\u00f6rja skapa samlingar.",
- "MessageNoPlaylistsAvailable": "Spellistor l\u00e5ter dig skapa listor med inneh\u00e5ll att spela upp i ordning. F\u00f6r att l\u00e4gga till objekt i spellistor, h\u00f6gerklicka eller tryck-och-h\u00e5ll och v\u00e4lj \"l\u00e4gg till i spellista\".",
- "MessageNoPlaylistItemsAvailable": "Den h\u00e4r spellistan \u00e4r tom.",
+ "ButtonClose": "St\u00e4ng",
+ "HeaderConfirmDeletion": "Bekr\u00e4fta radering",
+ "HeaderHomePage": "Hemsidan",
+ "HeaderSettingsForThisDevice": "Inst\u00e4llningar f\u00f6r den h\u00e4r enheten",
"ButtonDismiss": "Avvisa",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Kanaler",
"LabelChannelStreamQuality": "\u00d6nskad kvalitet vid str\u00f6mning via Internet:",
"LabelChannelStreamQualityHelp": "N\u00e4r bandbredden \u00e4r begr\u00e4nsad kan en l\u00e4gre kvalitet ge en mera st\u00f6rningsfri upplevelse.",
"OptionBestAvailableStreamQuality": "B\u00e4sta tillg\u00e4ngliga",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Radera inneh\u00e5ll efter (dagar):",
"LabelChannelDownloadAgeHelp": "Nedladdat inneh\u00e5ll \u00e4ldre \u00e4n s\u00e5 raderas. Det \u00e4r fortfarande tillg\u00e4ngligt via str\u00f6mning fr\u00e5n Internet.",
"ChannelSettingsFormHelp": "Installera kanaler, t ex Trailers och Vimeo, via till\u00e4ggskatalogen.",
- "ButtonOptions": "Alternativ",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Bekr\u00e4fta",
"ViewTypeMovies": "Filmer",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Spel",
"ViewTypeMusic": "Musik",
- "ViewTypeMusicGenres": "Genrer",
- "ViewTypeMusicArtists": "Artister",
"ViewTypeBoxSets": "Samlingar",
- "ViewTypeChannels": "Kanaler",
- "ViewTypeLiveTV": "Live-TV",
- "ViewTypeLiveTvNowPlaying": "Visas nu",
- "ViewTypeLatestGames": "Senaste spelen",
- "ViewTypeRecentlyPlayedGames": "Nyligen spelade",
- "ViewTypeGameFavorites": "Favoriter",
- "ViewTypeGameSystems": "Spelsystem",
- "ViewTypeGameGenres": "Genrer",
- "ViewTypeTvResume": "\u00c5teruppta",
- "ViewTypeTvNextUp": "N\u00e4stkommande",
- "ViewTypeTvLatest": "Nytillkommet",
- "ViewTypeTvShowSeries": "Serier",
- "ViewTypeTvGenres": "Genrer",
- "ViewTypeTvFavoriteSeries": "Favoritserier",
- "ViewTypeTvFavoriteEpisodes": "Favoritavsnitt",
- "ViewTypeMovieResume": "\u00c5teruppta",
- "ViewTypeMovieLatest": "Nytillkommet",
- "ViewTypeMovieMovies": "Filmer",
- "ViewTypeMovieCollections": "Samlingar",
- "ViewTypeMovieFavorites": "Favoriter",
- "ViewTypeMovieGenres": "Genrer",
- "ViewTypeMusicLatest": "Nytillkommet",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Album",
- "ViewTypeMusicAlbumArtists": "Albumartister",
"HeaderOtherDisplaySettings": "Visningsinst\u00e4llningar",
- "ViewTypeMusicSongs": "L\u00e5tar",
- "ViewTypeMusicFavorites": "Favoriter",
- "ViewTypeMusicFavoriteAlbums": "Favoritalbum",
- "ViewTypeMusicFavoriteArtists": "Favoritartister",
- "ViewTypeMusicFavoriteSongs": "Favoritl\u00e5tar",
- "HeaderMyViews": "Mina vyer",
"LabelSelectFolderGroups": "Gruppera automatiskt inneh\u00e5ll fr\u00e5n dessa mappar i vyer, t ex Filmer, Musik eller TV:",
"LabelSelectFolderGroupsHelp": "Ej valda mappar kommer att visas f\u00f6r sig sj\u00e4lva i en egen vy.",
+ "ViewTypeChannels": "Kanaler",
+ "ViewTypeLiveTV": "Live-TV",
"OptionDisplayAdultContent": "Visa erotiskt inneh\u00e5ll",
+ "MessageNoChapterProviders": "Installera ett kapiteltill\u00e4gg s\u00e5som ChapterDb f\u00f6r att ge fler kapitelfunktioner.",
+ "TabChapters": "Kapitel",
+ "HeaderDownloadChaptersFor": "H\u00e4mta kapitelnamn f\u00f6r:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Mediamappar",
+ "LabelHomePageSection4": "Startsidans sektion 4:",
+ "OptionLatestChannelMedia": "Senaste objekten i Kanaler",
+ "HeaderLatestChannelItems": "Senaste objekten i Kanaler",
"TitleRemoteControl": "Fj\u00e4rrkontroll",
+ "HeaderMyViews": "Mina vyer",
"OptionLatestTvRecordings": "Senaste inspelningar",
+ "ButtonRefresh": "Uppdatera",
"LabelProtocolInfo": "Protokollinfo:",
"LabelProtocolInfoHelp": "V\u00e4rde att anv\u00e4nda vid svar p\u00e5 GetProtocolInfo-beg\u00e4ran fr\u00e5n enheter.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Format f\u00f6r premi\u00e4rdatum:",
- "LabelKodiMetadataDateFormatHelp": "Alla datum i nfo-filer kommer att l\u00e4sas och skrivas i detta format.",
- "LabelKodiMetadataSaveImagePaths": "Spara bilds\u00f6kv\u00e4gar i nfo-filer",
- "LabelKodiMetadataSaveImagePathsHelp": "Detta rekommenderas om du har bilder med filnamn som inte uppfyller Kodis riktlinjer.",
- "LabelKodiMetadataEnablePathSubstitution": "Aktivera s\u00f6kv\u00e4gsutbyte",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiverar s\u00f6kv\u00e4gsutbyte enligt serverns inst\u00e4llningar.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "Se \"s\u00f6kv\u00e4gsutbyte\".",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Vy som visar filmsamlingar",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Kopiera extrafanart till extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "N\u00e4r bilder h\u00e4mtas fr\u00e5n Internet kan de sparas i b\u00e5de extrafanart- och extrathumbs-mapparna f\u00f6r att ge maximal kompatibilitet med Kodi-skins.",
+ "HeaderSubtitles": "Undertexter",
"TabServices": "Tj\u00e4nster",
"TabLogs": "Loggfiler",
"HeaderServerLogFiles": "Serverloggfiler:",
@@ -1029,6 +820,8 @@
"LabelAppName": "Appens namn",
"LabelAppNameExample": "Exempel: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Anv\u00e4ndare",
+ "TabScheduledTasks": "Schemalagda aktiviteter",
"HeaderHttpHeaders": "Http-rubriker",
"HeaderIdentificationHeader": "ID-rubrik",
"LabelValue": "V\u00e4rde:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filtrera",
"ButtonView": "Visa",
"LabelPageSize": "Max antal objekt:",
- "LabelPath": "S\u00f6kv\u00e4g:",
"LabelView": "Vy:",
- "TabUsers": "Anv\u00e4ndare",
- "LabelSortName": "Sorteringstitel:",
- "LabelDateAdded": "Inlagd den:",
+ "LabelManagement": "Administration:",
"HeaderFeatures": "Extramaterial",
"HeaderAdvanced": "Avancerat",
"ButtonSync": "Synk",
- "TabScheduledTasks": "Schemalagda aktiviteter",
"HeaderChapters": "Kapitel",
"HeaderResumeSettings": "\u00c5teruppta-inst\u00e4llningar",
"TabSync": "Synk",
"TitleUsers": "Anv\u00e4ndare",
+ "LabelMaxStreamingBitrate": "Max bithastighet f\u00f6r str\u00f6mning:",
+ "LabelMaxStreamingBitrateHelp": "Ange h\u00f6gsta bithastighet f\u00f6r str\u00f6mning.",
+ "LabelMaxStaticBitrate": "Max bithastighet vid synkronisering:",
+ "LabelMaxStaticBitrateHelp": "Ange h\u00f6gsta bithastighet vid synkronisering.",
"LabelProtocol": "Protokoll:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Live-str\u00f6mning via Http",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Str\u00f6mning",
"OptionContextStatic": "Synk",
"ButtonAddToPlaylist": "L\u00e4gg till i spellista",
+ "MessageNoPlaylistsAvailable": "Spellistor l\u00e5ter dig skapa listor med inneh\u00e5ll att spela upp i ordning. F\u00f6r att l\u00e4gga till objekt i spellistor, h\u00f6gerklicka eller tryck-och-h\u00e5ll och v\u00e4lj \"l\u00e4gg till i spellista\".",
+ "MessageNoPlaylistItemsAvailable": "Den h\u00e4r spellistan \u00e4r tom.",
"TabPlaylists": "Spellistor",
- "ButtonClose": "St\u00e4ng",
"LabelAllLanguages": "Alla spr\u00e5k",
"HeaderBrowseOnlineImages": "Bl\u00e4ddra bland bilder online",
"LabelSource": "K\u00e4lla:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box bakre",
"OptionDisc": "Skiva",
- "OptionIcon": "Icon",
"OptionLogo": "Logotyp",
"OptionMenu": "Meny",
"OptionScreenshot": "Sk\u00e4rmdump",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Oidentifierad",
"OptionMissingParentalRating": "\u00c5ldersgr\u00e4ns saknas",
"OptionStub": "Stump",
+ "HeaderEpisodes": "Avsnitt:",
"OptionSeason0": "S\u00e4song 0",
"LabelReport": "Rapport:",
"OptionReportSongs": "L\u00e5tar",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artister",
"OptionReportAlbums": "Album",
"OptionReportAdultVideos": "Vuxen videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Aktivitet",
"ScheduledTaskStartedWithName": "{0} startad",
"ScheduledTaskCancelledWithName": "{0} avbr\u00f6ts",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Nerladdning av undertexter f\u00f6r {0} misslyckades",
"LabelRunningTimeValue": "Speltid: {0}",
"LabelIpAddressValue": "IP-adress: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "Anv\u00e4ndarinst\u00e4llningarna f\u00f6r {0} har uppdaterats",
"UserCreatedWithName": "Anv\u00e4ndaren {0} har skapats",
"UserPasswordChangedWithName": "L\u00f6senordet f\u00f6r {0} har \u00e4ndrats",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} har autentiserats",
"FailedLoginAttemptWithUserName": "Misslyckat inloggningsf\u00f6rs\u00f6k fr\u00e5n {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} har p\u00e5b\u00f6rjat uppspelning av {1}",
"UserStoppedPlayingItemWithValues": "{0} har avslutat uppspelning av {1}",
"AppDeviceValues": "App: {0}, enhet: {1}",
"ProviderValue": "K\u00e4lla: {0}",
+ "HeaderAudio": "Ljud",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "H\u00e4mtar inneh\u00e5ll...",
"LabelChannelDownloadSizeLimit": "Gr\u00e4ns f\u00f6r nerladdning (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Gr\u00e4ns f\u00f6r storleken p\u00e5 mappen f\u00f6r nerladdning av kanaler.",
+ "LabelMusicStaticBitrate": "Bithastighet vid synkning av musik:",
+ "LabelMusicStaticBitrateHelp": "Ange h\u00f6gsta bithastighet vid synkronisering av musik",
+ "LabelMusicStreamingTranscodingBitrate": "Bithastighet vid omkodning av musik:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Ange h\u00f6gsta bithastighet vid str\u00f6mning av musik",
"HeaderRecentActivity": "Senaste aktivitet",
"HeaderPeople": "Personer",
"HeaderDownloadPeopleMetadataFor": "Ladda ner biografi och bilder f\u00f6r:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Vy som visar vanliga lagringsmappar",
"ViewTypeLiveTvRecordingGroups": "Inspelningar",
"ViewTypeLiveTvChannels": "Kanaler",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "L\u00f6senord",
"HeaderLocalAccess": "Lokal \u00e5tkomst",
"HeaderViewOrder": "Visningsordning",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Premi\u00e4rdatum:",
+ "LabelEndDate": "Slutdatum:",
+ "LabelYear": "\u00c5r:",
+ "FolderTypeMixed": "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",
+ "LabelArtists": "Artister:",
+ "LabelArtistsHelp": "Separera med ; vid flera",
+ "ButtonAdvancedRefresh": "Avancerad uppdatering",
+ "LabelPersonRole": "Roll:",
+ "LabelPersonRoleHelp": "Roll anv\u00e4nds i allm\u00e4nhet bara f\u00f6r sk\u00e5despelare.",
+ "LabelPath": "S\u00f6kv\u00e4g:",
+ "LabelSortName": "Sorteringstitel:",
+ "LabelDateAdded": "Inlagd den:",
"LabelMetadataRefreshMode": "Metod f\u00f6r uppdatering av metadata:",
"LabelImageRefreshMode": "Metod f\u00f6r uppdatering av bilder:",
"OptionDownloadMissingImages": "Ladda ner saknade bilder",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Personinformation",
"HeaderIdentifyItem": "Identifiera objekt",
"HeaderIdentifyItemHelp": "Ange ett eller flera s\u00f6kkriterier. Ta bort kriterier f\u00f6r att f\u00e5 fler tr\u00e4ffar.",
- "HeaderConfirmDeletion": "Bekr\u00e4fta radering",
"LabelFollowingFileWillBeDeleted": "Denna fil kommer att raderas:",
"LabelIfYouWishToContinueWithDeletion": "Om du vill forts\u00e4tta, ange v\u00e4rdet p\u00e5:",
"ButtonIdentify": "Identifiera",
"LabelAlbumArtist": "Albumartist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Anv\u00e4ndaromd\u00f6me:",
"LabelVoteCount": "Antal r\u00f6ster:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Synopsis:",
"LabelShortOverview": "Kort synopsis:",
- "LabelReleaseDate": "Premi\u00e4rdatum:",
- "LabelYear": "\u00c5r:",
"LabelPlaceOfBirth": "F\u00f6delseort:",
- "LabelEndDate": "Slutdatum:",
"LabelAirDate": "S\u00e4ndningsdagar:",
"LabelAirTime:": "S\u00e4ndningstid:",
"LabelRuntimeMinutes": "Speltid (min):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadatainst\u00e4llningar",
"LabelLockItemToPreventChanges": "L\u00e5s det h\u00e4r objektet f\u00f6r att f\u00f6rhindra \u00e4ndringar",
"MessageLeaveEmptyToInherit": "L\u00e4mna tomt f\u00f6r att \u00e4rva inst\u00e4llningarna fr\u00e5n \u00f6verordnat objekt, eller anv\u00e4nda globalt f\u00f6rval.",
- "TabDonate": "L\u00e4mna bidrag",
"HeaderDonationType": "Donationstyp:",
"OptionMakeOneTimeDonation": "Ge ett extra bidrag",
- "OptionOneTimeDescription": "Detta \u00e4r ett extra bidrag f\u00f6r att visa ditt st\u00f6d f\u00f6r teamet. Det ger inga ytterligare f\u00f6rm\u00e5ner och ingen supporterkod.",
- "OptionLifeTimeSupporterMembership": "Livstids supportermedlemskap",
- "OptionYearlySupporterMembership": "\u00c5rligt supportermedlemskap",
- "OptionMonthlySupporterMembership": "M\u00e5natligt supportermedlemskap",
"OptionNoTrailer": "Trailer saknas",
"OptionNoThemeSong": "Ledmotiv saknas",
"OptionNoThemeVideo": "Temavideo saknas",
"LabelOneTimeDonationAmount": "Bidragsbelopp:",
- "ButtonDonate": "Donera",
- "ButtonPurchase": "Purchase",
"OptionActor": "Sk\u00e5despelare",
"OptionComposer": "Komposit\u00f6r",
"OptionDirector": "Regiss\u00f6r",
"OptionGuestStar": "G\u00e4startist",
"OptionProducer": "Producent",
"OptionWriter": "Manusf\u00f6rfattare",
+ "LabelEpisodeNamePlain": "Avsnittsnamn",
+ "LabelSeriesNamePlain": "Seriens namn",
+ "LabelSeasonNumberPlain": "S\u00e4songsnummer",
+ "LabelEpisodeNumberPlain": "Avsnittsnummer",
+ "LabelEndingEpisodeNumberPlain": "Avslutande avsnittsnummer",
+ "OptionOneTimeDescription": "Detta \u00e4r ett extra bidrag f\u00f6r att visa ditt st\u00f6d f\u00f6r teamet. Det ger inga ytterligare f\u00f6rm\u00e5ner och ingen supporterkod.",
"LabelAirDays": "S\u00e4ndningsdagar:",
"LabelAirTime": "S\u00e4ndningstid:",
"HeaderMediaInfo": "Mediainformation",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Information f\u00f6r utvecklare",
"HeaderRevisionHistory": "Revisionshistorik",
"ButtonViewWebsite": "G\u00e5 till hemsidan",
+ "ViewTypeLiveTvNowPlaying": "Visas nu",
+ "ViewTypeLatestGames": "Senaste spelen",
+ "ViewTypeRecentlyPlayedGames": "Nyligen spelade",
+ "ViewTypeGameFavorites": "Favoriter",
+ "ViewTypeGameSystems": "Spelsystem",
+ "ViewTypeGameGenres": "Genrer",
+ "ViewTypeTvResume": "\u00c5teruppta",
+ "ViewTypeTvNextUp": "N\u00e4stkommande",
+ "ViewTypeTvLatest": "Nytillkommet",
+ "ViewTypeTvGenres": "Genrer",
+ "ViewTypeMovieResume": "\u00c5teruppta",
+ "ViewTypeMovieLatest": "Nytillkommet",
+ "ViewTypeMovieMovies": "Filmer",
+ "ViewTypeMovieCollections": "Samlingar",
+ "ViewTypeMovieFavorites": "Favoriter",
+ "ViewTypeMovieGenres": "Genrer",
+ "ViewTypeMusicLatest": "Nytillkommet",
+ "ViewTypeMusicAlbums": "Album",
+ "ViewTypeMusicAlbumArtists": "Albumartister",
+ "TabDonate": "L\u00e4mna bidrag",
+ "OptionLifeTimeSupporterMembership": "Livstids supportermedlemskap",
+ "OptionYearlySupporterMembership": "\u00c5rligt supportermedlemskap",
+ "OptionMonthlySupporterMembership": "M\u00e5natligt supportermedlemskap",
+ "ViewTypeTvShowSeries": "Serier",
+ "ViewTypeTvFavoriteSeries": "Favoritserier",
+ "ViewTypeTvFavoriteEpisodes": "Favoritavsnitt",
"HeaderXmlSettings": "XML-inst\u00e4llningar",
"HeaderXmlDocumentAttributes": "XML-dokumentattribut",
"HeaderXmlDocumentAttribute": "XML-dokumentattribut",
"XmlDocumentAttributeListHelp": "Dessa attribut till\u00e4mpas p\u00e5 rotelementet i alla xml-svar.",
"OptionSaveMetadataAsHidden": "Spara metadata och bilder som dolda filer",
+ "ViewTypeMusicSongs": "L\u00e5tar",
"LabelExtractChaptersDuringLibraryScan": "Extrahera kapitelbildrutor vid genoms\u00f6kning av biblioteket",
"LabelExtractChaptersDuringLibraryScanHelp": "Om aktiverat extraheras kapitelbildrutor n\u00e4r videor importeras vid genoms\u00f6kning av biblioteket. Om avaktiverat kommer extrahering att ske vid schemalagd kapitelbildrutebehandling, f\u00f6r att snabba upp den regelbundna genoms\u00f6kningen av biblioteket.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favoriter",
+ "ViewTypeMusicFavoriteAlbums": "Favoritalbum",
+ "ViewTypeMusicFavoriteArtists": "Favoritartister",
+ "ViewTypeMusicFavoriteSongs": "Favoritl\u00e5tar",
+ "ButtonAddLocalUser": "Skapa lokal anv\u00e4ndare",
+ "HeaderIdentification": "Identifiering",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "N\u00e4sta",
+ "ButtonPrevious": "F\u00f6reg\u00e5ende",
"LabelExternalPlayers": "Externa uppspelare:",
"LabelExternalPlayersHelp": "Visa knappar f\u00f6r att spela upp inneh\u00e5ll i externa uppspelare. Detta ar enbart tillg\u00e4ngligt p\u00e5 enheter som st\u00f6djer url-scheman, i allm\u00e4nhet Android och iOS. Externa uppspelare har normalt ej st\u00f6d f\u00f6r fj\u00e4rrkontroll eller \u00e5terupptagande.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Undertextprofil",
"HeaderSubtitleProfiles": "Undertextprofiler",
"HeaderSubtitleProfilesHelp": "Undertextprofiler beskriver de undertextformat som st\u00f6ds av enheten.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "HLS-segmenterade undertexter",
"LabelSubtitleFormatHelp": "Exempel:srt",
"ButtonLearnMore": "L\u00e4s mer",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Format f\u00f6r premi\u00e4rdatum:",
+ "LabelKodiMetadataDateFormatHelp": "Alla datum i nfo-filer kommer att l\u00e4sas och skrivas i detta format.",
+ "LabelKodiMetadataSaveImagePaths": "Spara bilds\u00f6kv\u00e4gar i nfo-filer",
+ "LabelKodiMetadataSaveImagePathsHelp": "Detta rekommenderas om du har bilder med filnamn som inte uppfyller Kodis riktlinjer.",
+ "LabelKodiMetadataEnablePathSubstitution": "Aktivera s\u00f6kv\u00e4gsutbyte",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Aktiverar s\u00f6kv\u00e4gsutbyte enligt serverns inst\u00e4llningar.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "Se \"s\u00f6kv\u00e4gsutbyte\".",
+ "LabelKodiMetadataEnableExtraThumbs": "Kopiera extrafanart till extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "N\u00e4r bilder h\u00e4mtas fr\u00e5n Internet kan de sparas i b\u00e5de extrafanart- och extrathumbs-mapparna f\u00f6r att ge maximal kompatibilitet med Kodi-skins.",
"TabPlayback": "Uppspelning",
"HeaderLanguagePreferences": "Spr\u00e5kinst\u00e4llningar",
"TabCinemaMode": "Biol\u00e4ge",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Anv\u00e4nd bara trailers f\u00f6r objekt som ej visats",
"LabelEnableIntroParentalControl": "Aktivera intelligent f\u00f6r\u00e4ldral\u00e5s",
"LabelEnableIntroParentalControlHelp": "Enbart trailers med samma eller l\u00e4gre \u00e5ldersgr\u00e4ns som huvudmaterialet kommer att visas.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Dessa funktioner kr\u00e4ver ett akivt supportermedlemskap och installation av till\u00e4gget \"Trailer Channels\".",
"OptionTrailersFromMyMoviesHelp": "Kr\u00e4ver att lokala trailers konfigurerats.",
"LabelCustomIntrosPath": "S\u00f6kv\u00e4g f\u00f6r egna vinjetter:",
"LabelCustomIntrosPathHelp": "En mapp inneh\u00e5llande videofiler. En video kommer att v\u00e4ljas slumpm\u00e4ssigt och spelas upp efter trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Alternativ",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "Dessa funktioner kr\u00e4ver ett akivt supportermedlemskap och installation av till\u00e4gget \"Trailer Channels\".",
"LabelSelectInternetTrailersForCinemaMode": "Trailers fr\u00e5n Internet",
"OptionUpcomingDvdMovies": "Inkludera trailers f\u00f6r nya och kommande filmer p\u00e5 DVD och Blu-ray",
"OptionUpcomingStreamingMovies": "Inkludera trailers f\u00f6r nya och kommande filmer p\u00e5 Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Varje anv\u00e4ndare kan i sina egna inst\u00e4llningar v\u00e4lja om biol\u00e4get skall aktiveras.",
"LabelEnableCinemaMode": "Aktivera biol\u00e4ge",
"HeaderCinemaMode": "Biol\u00e4ge",
+ "TabDevices": "Enheter",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Aktivera automatisk koppling av portar",
+ "LabelEnableAutomaticPortMapHelp": "Automatisk l\u00e4nkning av publik och lokal port via UPnP. Detta kanske inte fungerar med alla routrar.",
"LabelDateAddedBehavior": "Hantering av datum f\u00f6r nytt inneh\u00e5ll:",
"OptionDateAddedImportTime": "Anv\u00e4nd datum f\u00f6r inl\u00e4sning i biblioteket",
"OptionDateAddedFileTime": "Anv\u00e4nd datum d\u00e5 filen skapades",
"LabelDateAddedBehaviorHelp": "Om ett metadatav\u00e4rde finns kommer det att anv\u00e4ndas i st\u00e4llet f\u00f6r dessa.",
"LabelNumberTrailerToPlay": "Antal trailers att spela upp:",
+ "LabelChannelDownloadSizeLimitHelpText": "Gr\u00e4ns f\u00f6r storleken p\u00e5 mappen f\u00f6r nerladdning av kanaler.",
"TitleDevices": "Enheter",
"TabCameraUpload": "Kamerauppladdning",
- "TabDevices": "Enheter",
"HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.",
"MessageNoDevicesSupportCameraUpload": "Du har inga enheter som st\u00f6djer kamerauppladdning.",
"LabelCameraUploadPath": "V\u00e4lj s\u00f6kv\u00e4g f\u00f6r kamerauppladdning:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Skapa en undermapp f\u00f6r varje enhet",
"LabelCreateCameraUploadSubfolderHelp": "S\u00e4rskilda mappar f\u00f6r varje enhet kan anges p\u00e5 sidan \"Enheter\" genom att klicka p\u00e5 resp. enhet.",
+ "ButtonInviteUser": "Bjud in anv\u00e4ndare",
"LabelCustomDeviceDisplayName": "Visningsnamn:",
"LabelCustomDeviceDisplayNameHelp": "Ange ett anpassat enhetsnamn. L\u00e4mna blankt f\u00f6r att anv\u00e4nda det namn enheten sj\u00e4lv rapporterar.",
"HeaderInviteUser": "Bjud in anv\u00e4ndare",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Skicka inbjudan",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "G\u00e4ster",
"HeaderLocalUsers": "Lokala anv\u00e4ndare",
"HeaderPendingInvitations": "V\u00e4ntande inbjudningar",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Veckodagar",
"OptionWeekends": "Helger",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer rulle",
"HeaderTrailerReel": "Trailer rulle",
"OptionPlayUnwatchedTrailersOnly": "Spela endast osedda trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Registrera dig",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Inaktivera tillg\u00e5ng till anv\u00e4ndarinst\u00e4llningar",
"OptionDisableUserPreferencesHelp": "Om aktiverad, kommer endast administrat\u00f6rer att kunna konfigurera anv\u00e4ndarprofilbilder, l\u00f6senord och spr\u00e5kinst\u00e4llningar.",
@@ -1365,49 +1222,174 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Gl\u00f6mt L\u00f6senord",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Gl\u00f6mt L\u00f6senord",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
"HeaderPasswordReset": "\u00c5terst\u00e4llning av l\u00f6senordet",
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Videotyper",
- "HeaderYears": "\u00c5r",
+ "HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Till\u00e5t fj\u00e4rrstyrning av delade enheter",
+ "OptionAllowRemoteSharedDevicesHelp": "DLNA-enheter betraktas som delade tills en anv\u00e4ndare b\u00f6rjar kontrollera den.",
+ "HeaderRemoteControl": "Fj\u00e4rrkontroll",
+ "ViewTypeMusicGenres": "Genrer",
+ "ViewTypeMusicArtists": "Artister",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Dokumentation",
+ "LabelDeveloperResources": "Resurser f\u00f6r utvecklare",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "\u00c4rv",
+ "LabelContentType": "Inneh\u00e5llstyp:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Hj\u00e4lp",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Enhets\u00e5tkomst",
+ "OptionEnableAccessFromAllDevices": "Aktivera \u00e5tkomst fr\u00e5n alla enheter",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Snabbstartguide",
+ "HeaderSyncJobInfo": "Synk jobb",
"TabJobs": "Jobs",
"TabSyncJobs": "Synkjobb",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "V\u00e4nligen acceptera anv\u00e4ndarvillkoren och sekretesspolicy innan du forts\u00e4tter.",
+ "OptionIAcceptTermsOfService": "Jag accepterar anv\u00e4ndarvillkoren",
+ "ButtonPrivacyPolicy": "sekretesspolicy",
+ "ButtonTermsOfService": "Anv\u00e4ndarvillkor",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Identifiera arkivfiler som media",
+ "OptionDetectArchiveFilesAsMediaHelp": "Om aktiverad, kommer filer med .rar och .zip f\u00f6rl\u00e4ngningar att uppt\u00e4ckas som mediefiler.",
+ "ButtonDonate": "Donera",
+ "HeaderOptions": "Alternativ",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Aktivera \u00e5tkomst till alla kanaler",
+ "LabelAutomaticUpdates": "Aktivera automatiska uppdateringar",
+ "LabelFanartApiKey": "Personlig api-nyckel:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Undertexter",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/tr.json b/dashboard-ui/strings/html/tr.json
index c463b712e5..7e404ecafa 100644
--- a/dashboard-ui/strings/html/tr.json
+++ b/dashboard-ui/strings/html/tr.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Cikis",
"LabelVisitCommunity": "Bizi Ziyaret Edin",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standart",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "K\u00fct\u00fcphane",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "K\u00fct\u00fcphane G\u00f6r\u00fcnt\u00fcleyici",
"LabelRestartServer": "Server Yeniden Baslat",
"LabelShowLogWindow": "Log Ekran\u0131n\u0131 G\u00f6r\u00fcnt\u00fcle",
"LabelPrevious": "\u00d6nceki",
"LabelFinish": "Bitir",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Sonraki",
"LabelYoureDone": "Haz\u0131rs\u0131n!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Resmi Yay\u0131n",
+ "OptionBeta": "Deneme",
+ "OptionDev": "Gelistirici",
"ThisWizardWillGuideYou": "Bu sihirbaz kurulum i\u015flemi boyunca size yard\u0131mc\u0131 olacakt\u0131r. Ba\u015flamak i\u00e7in, tercih etti\u011finiz dili se\u00e7iniz.",
"TellUsAboutYourself": "Kendinizden Bahsedin",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "\u0130lk Ad",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Tamam",
"ButtonCancel": "\u0130ptal",
- "ButtonExit": "Exit",
- "ButtonNew": "Yeni",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Medya k\u00fct\u00fcphaneni kur",
"ButtonAddMediaFolder": "Yeni Media Klas\u00f6r\u00fc",
"LabelFolderType": "Klas\u00f6r T\u00fcr\u00fc:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "\u00dclke",
"LabelLanguage": "Dil",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Tercih edilen Meta Dili:",
"LabelSaveLocalMetadata": "Medya meta dosyalar\u0131n\u0131 ayn\u0131 klas\u00f6rlere i\u015fle",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Tercihler",
"TabPassword": "\u015eifre",
"TabLibraryAccess": "K\u00fct\u00fcphane Eri\u015fim",
- "TabAccess": "Access",
"TabImage": "Resim",
"TabProfile": "Profil",
- "TabMetadata": "Metadata",
- "TabImages": "Resimler",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Sezondaki kay\u0131p b\u00f6l\u00fcmleri g\u00f6ster",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Oynatma Ayarlar\u0131",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Ses Dili Tercihi:",
"LabelSubtitleLanguagePreference": "Altyaz\u0131 Dili Tercihi:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "Altyaz\u0131 Yok",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "Profiller",
"TabSecurity": "G\u00fcvenlik",
"ButtonAddUser": "Kullan\u0131c\u0131 Ekle",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "Kay\u0131t",
"ButtonResetPassword": "\u015eifre S\u0131f\u0131rla",
"LabelNewPassword": "Yeni \u015eifre",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maksimum izin verilen ebeveyn de\u011ferlendirmesi:",
"MaxParentalRatingHelp": "Daha y\u00fcksek bir derece ile \u0130\u00e7erik Bu kullan\u0131c\u0131dan gizli olacak.",
"LibraryAccessHelp": "Bu kullan\u0131c\u0131 ile payla\u015fmak i\u00e7in medya klas\u00f6rleri se\u00e7in. Y\u00f6neticiler meta y\u00f6neticisini kullanarak t\u00fcm klas\u00f6rleri d\u00fczenlemesi m\u00fcmk\u00fcn olacakt\u0131r.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Resim Sil",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Y\u00fckle",
"HeaderUploadNewImage": "Yeni Resim Y\u00fckle",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "\u00d6nerilen",
- "TabSuggestions": "Suggestions",
"TabLatest": "Son",
"TabUpcoming": "Gelecek",
"TabShows": "G\u00f6steriler",
@@ -217,6 +110,7 @@
"OptionAscending": "Y\u00fckselen",
"OptionDescending": "D\u00fc\u015fen",
"OptionRuntime": "\u00c7al\u0131\u015fma s\u00fcresi",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Oynatma sayac\u0131",
"OptionDatePlayed": "Oynatma Tarihi",
"OptionDateAdded": "Eklenme Tarihi",
@@ -226,16 +120,10 @@
"OptionTrackName": "Par\u00e7a \u0130smi",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "\u0130sim",
- "OptionFolderSort": "Klas\u00f6r",
"OptionBudget": "Budget",
"OptionRevenue": "Revenue",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Kritik Rating",
"OptionVideoBitrate": "Video Kalitesi",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Zamanlanm\u0131\u015f G\u00f6revler",
"TabMyPlugins": "Eklentilerim",
"TabCatalog": "Katalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "Otomatik G\u00fcncelleme",
"HeaderNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
"HeaderLatestAlbums": "Son Alb\u00fcmler",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Son oynat\u0131lan",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "Video Tipi",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "\u0130so",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Servis:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Altyaz\u0131",
"OptionHasTrailer": "Tan\u0131t\u0131m Video",
"OptionHasThemeSong": "Tema \u015eark\u0131s\u0131",
@@ -268,8 +153,6 @@
"TabMovies": "Filmler",
"TabStudios": "St\u00fcdyo",
"TabTrailers": "Fragmanlar",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Son filmler",
"HeaderLatestTrailers": "Son fragmanlar",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Cuma",
"OptionSaturday": "Cumartesi",
"HeaderManagement": "Y\u00f6netim",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "Genel",
"TitleSupport": "Destek",
- "LabelSeasonNumber": "Season number",
"TabLog": "Kay\u0131t",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "Hakk\u0131nda",
"TabSupporterKey": "Destek\u00e7i kodu",
"TabBecomeSupporter": "Destek\u00e7i ol",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Kullan\u0131c\u0131 Devre D\u0131\u015f\u0131 B\u0131rak",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Geli\u015fmi\u015f Kontrol",
"LabelName": "\u0130sim",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Se\u00e7im",
"ButtonGroupVersions": "Grup Versionlar\u0131",
"PismoMessage": "Utilizing Pismo File Mount 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": "Versiyon {0}",
"TabPaths": "Paths",
"TabServer": "Sunucu",
"TabTranscoding": "Kodlay\u0131c\u0131",
"TitleAdvanced": "Geli\u015fmi\u015f",
- "OptionRelease": "Resmi Yay\u0131n",
- "OptionBeta": "Deneme",
- "OptionDev": "Gelistirici",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Di\u011fer Videolar",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "K\u0131lavuz",
"TabChannels": "Kanallar",
- "TabCollections": "Collections",
"HeaderChannels": "Kanallar",
"TabRecordings": "Kay\u0131tlar",
"TabScheduled": "G\u00f6revler",
"TabSeries": "Seriler",
- "TabFavorites": "Favoriler",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Kay\u0131t \u0130ptal",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Durum",
"TabSettings": "Ayarlar",
"ButtonRefreshGuideData": "K\u0131lavuzu Yinele",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "\u00d6ncelik",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Sadece yeni b\u00f6l\u00fcmleri kaydet",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "G\u00fcnler",
"HeaderActiveRecordings": "Aktif Kay\u0131tlar",
"HeaderLatestRecordings": "Ge\u00e7mi\u015f Kay\u0131tlar",
@@ -431,17 +284,16 @@
"ButtonEdit": "D\u00fczenle",
"ButtonRecord": "Kay\u0131t",
"ButtonDelete": "Sil",
- "ButtonRemove": "Sil",
"OptionRecordSeries": "Kay\u0131t Serisi",
"HeaderDetails": "Detaylar",
+ "OptionFolderSort": "Klas\u00f6r",
+ "OptionBackdrop": "Backdrop",
"TitleLiveTV": "Canl\u0131 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.",
"OptionAutomatic": "Otomatik",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "K\u00fc\u00e7\u00fck Resim",
"OptionDownloadMenuImage": "Men\u00fc",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Birincil",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Resim Ayarlar\u0131",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Kay\u0131p",
"LabelOffline": "\u00c7evrimd\u0131\u015f\u0131",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Max Kalite",
"OptionEnableDebugTranscodingLogging": "Enable debug transcoding logging",
"OptionEnableDebugTranscodingLoggingHelp": "This will create very large log files and is only recommended as needed for troubleshooting purposes.",
+ "ButtonNew": "Yeni",
+ "TabMetadata": "Metadata",
+ "TabImages": "Resimler",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Arama",
+ "ButtonRemove": "Sil",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api D\u00f6k\u00fcmanlar\u0131",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "Yeni Koleksiyon",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Sunucu ayarlar\u0131",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Sunucu yeniden ba\u015flat\u0131lmal\u0131",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Sunucu yeniden ba\u015flat\u0131lmal\u0131",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Uygulamalar",
- "CategoryPlugin": "Eklenti",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Sa\u011f",
"ButtonBack": "Geri",
"ButtonInfo": "Bilgi",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Sayfa Ba\u015f\u0131",
"ButtonPageDown": "Sayfa Sonu",
"PageAbbreviation": "PG",
"ButtonHome": "Anasayfa",
- "ButtonSearch": "Arama",
"ButtonSettings": "Ayarlar",
"ButtonTakeScreenshot": "Ekran G\u00f6r\u00fcnt\u00fcs\u00fc Al",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "\u015eimdi \u00c7al\u0131n\u0131yor",
"TabNavigation": "Navigasyon",
- "TabControls": "Kontrol",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Sahneler",
"ButtonSubtitles": "Altyaz\u0131lar",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Durdur",
"ButtonPause": "Duraklat",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Uygulamalar",
+ "CategoryPlugin": "Eklenti",
"NotificationOptionPluginError": "Eklenti Ba\u015far\u0131s\u0131z",
+ "TabControls": "Kontrol",
"ButtonVolumeUp": "Ses A\u00e7",
"ButtonVolumeDown": "Ses Azalt",
"ButtonMute": "Sessiz",
"HeaderLatestMedia": "En Son G\u00f6r\u00fcnt\u00fclemeler",
+ "OptionNoSubtitles": "Altyaz\u0131 Yok",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Koleksiyon",
"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": "Profil G\u00f6r\u00fcnt\u00fcleme",
"LabelType": "T\u00fcr",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video Codec",
"LabelProfileAudioCodecs": "Ses Codec",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecler",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Altyaz\u0131lar",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Kay\u0131t",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Mesaj G\u00f6nder",
"ButtonSend": "G\u00f6nder",
"LabelMessageText": "Mesaj Metni:",
+ "LabelService": "Servis:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favoriler",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Anasayfa",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Anasayfa Secenek 1:",
"LabelHomePageSection2": "Anasayfa Secenek 2:",
"LabelHomePageSection3": "Anasayfa Secenek 3:",
- "LabelHomePageSection4": "Anasayfa Secenek 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "En Son G\u00f6r\u00fcnt\u00fclemeler",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Sonraki hafta",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Anasayfa",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media Klas\u00f6rleri",
+ "LabelHomePageSection4": "Anasayfa Secenek 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/uk.json b/dashboard-ui/strings/html/uk.json
index 3924be3ec2..db94d40a50 100644
--- a/dashboard-ui/strings/html/uk.json
+++ b/dashboard-ui/strings/html/uk.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u0412\u0438\u0439\u0442\u0438",
"LabelVisitCommunity": "Visit Community",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Standard",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Browse Library",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "\u041f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u0442\u0438\u0442\u0438 \u0441\u0435\u0440\u0432\u0435\u0440",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "\u041d\u0430\u0437\u0430\u0434",
"LabelFinish": "Finish",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "\u0412\u043f\u0435\u0440\u0435\u0434",
"LabelYoureDone": "You're Done!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "Beta",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "Tell us about yourself",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "\u0406\u043c\u2019\u044f",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Enable automatic port mapping",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "\u0421\u043a\u0430\u0441\u0443\u0432\u0430\u0442\u0438",
- "ButtonExit": "Exit",
- "ButtonNew": "\u041d\u043e\u0432\u0438\u0439",
- "HeaderTV": "\u0422\u0411",
- "HeaderAudio": "\u0410\u0443\u0434\u0456\u043e",
- "HeaderVideo": "\u0412\u0456\u0434\u0435\u043e",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "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",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "Setup your media library",
"ButtonAddMediaFolder": "Add media folder",
"LabelFolderType": "Folder type:",
"ReferToMediaLibraryWiki": "Refer to the media library wiki.",
"LabelCountry": "\u041a\u0440\u0430\u0457\u043d\u0430:",
"LabelLanguage": "\u041c\u043e\u0432\u0430:",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Preferred metadata language:",
"LabelSaveLocalMetadata": "Save artwork and metadata into media folders",
"LabelSaveLocalMetadataHelp": "Saving artwork and metadata directly into media folders will put them in a place where they can be easily edited.",
@@ -130,37 +47,16 @@
"TabPreferences": "Preferences",
"TabPassword": "\u041f\u0430\u0440\u043e\u043b\u044c",
"TabLibraryAccess": "Library Access",
- "TabAccess": "Access",
"TabImage": "Image",
"TabProfile": "\u041f\u0440\u043e\u0444\u0456\u043b\u044c",
- "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u0456",
- "TabImages": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
- "TabNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
- "TabCollectionTitles": "Titles",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "Video Playback Settings",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Audio language preference:",
"LabelSubtitleLanguagePreference": "Subtitle language preference:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "\u041f\u0440\u043e\u0444\u0456\u043b\u0456",
"TabSecurity": "\u0411\u0435\u0437\u043f\u0435\u043a\u0430",
"ButtonAddUser": "\u0414\u043e\u0434\u0430\u0442\u0438 \u043a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0430",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "\u0417\u0431\u0435\u0440\u0456\u0433\u0442\u0438",
"ButtonResetPassword": "\u0421\u043a\u0438\u043d\u0443\u0442\u0438 \u043f\u0430\u0440\u043e\u043b\u044c",
"LabelNewPassword": "\u041d\u043e\u0432\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "Content with a higher rating will be hidden from this user.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "Delete Image",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "Upload",
"HeaderUploadNewImage": "Upload New Image",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Nothing here.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "Latest",
"TabUpcoming": "Upcoming",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Runtime",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "Play Count",
"OptionDatePlayed": "Date Played",
"OptionDateAdded": "Date Added",
@@ -226,16 +120,10 @@
"OptionTrackName": "Track Name",
"OptionCommunityRating": "Community Rating",
"OptionNameSort": "\u0406\u043c\u2019\u044f",
- "OptionFolderSort": "\u0422\u0435\u043a\u0438",
"OptionBudget": "\u0411\u044e\u0434\u0436\u0435\u0442",
"OptionRevenue": "\u0417\u0431\u043e\u0440\u0438",
"OptionPoster": "Poster",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "Timeline",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Banner",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "Video Bitrate",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "My Plugins",
"TabCatalog": "Catalog",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u0435 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043d\u044f",
"HeaderNowPlaying": "Now Playing",
"HeaderLatestAlbums": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0430\u043b\u044c\u0431\u043e\u043c\u0438",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Recently Played",
"HeaderFrequentlyPlayed": "Frequently Played",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Banner",
"LabelVideoType": "\u0422\u0438\u043f \u0432\u0456\u0434\u0435\u043e:",
"OptionBluray": "Bluray",
"OptionDvd": "Dvd",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "Features:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "\u0412\u0435\u0440\u0441\u0456\u044f:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "\u0421\u0443\u0431\u0442\u0438\u0442\u0440\u0438",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "Theme Song",
@@ -268,8 +153,6 @@
"TabMovies": "\u0424\u0456\u043b\u044c\u043c\u0438",
"TabStudios": "\u0421\u0442\u0443\u0434\u0456\u0457",
"TabTrailers": "\u0422\u0440\u0435\u0439\u043b\u0435\u0440\u0438",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0444\u0456\u043b\u044c\u043c\u0438",
"HeaderLatestTrailers": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0442\u0440\u0435\u0439\u043b\u0435\u0440\u0438",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Saturday",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Missing IMDb Id",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "Support",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "Hide this user from login screens",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "Disable this user",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "Name:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Allow this user to manage the server",
"HeaderFeatureAccess": "Feature Access",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Missing Tmdb Id",
"OptionIsHD": "HD",
"OptionIsSD": "SD",
@@ -336,17 +205,12 @@
"ButtonSelect": "Select",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "Paths",
"TabServer": "Server",
"TabTranscoding": "Transcoding",
"TitleAdvanced": "Advanced",
- "OptionRelease": "Official Release",
- "OptionBeta": "Beta",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "Allow the server to restart automatically to apply updates",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "Remove",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "\u0422\u0435\u043a\u0438",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "Auto",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"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.",
+ "ButtonNew": "\u041d\u043e\u0432\u0438\u0439",
+ "TabMetadata": "\u041c\u0435\u0442\u0430\u0434\u0430\u043d\u0456",
+ "TabImages": "\u0417\u043e\u0431\u0440\u0430\u0436\u0435\u043d\u043d\u044f",
+ "TabCollectionTitles": "Titles",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "Remove",
"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",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "System Paths",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u043d\u043e\u0432\u0438\u043d\u0438",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u043c\u0435\u0434\u0456\u0430",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "\u0412\u0435\u0440\u0441\u0456\u044f:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u043c\u0435\u0434\u0456\u0430",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u043c\u0456\u0441\u0442\u0443...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "\u0424\u0456\u043b\u044c\u043c\u0438",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0456\u0433\u0440\u0438",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "\u0424\u0456\u043b\u044c\u043c\u0438",
- "ViewTypeMovieCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0437\u0430\u043f\u0438\u0441\u0438",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "\u0428\u043b\u044f\u0445:",
"LabelView": "View:",
- "TabUsers": "\u041a\u043e\u0440\u0438\u0441\u0442\u0443\u0432\u0430\u0447\u0456",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "\u0410\u0443\u0434\u0456\u043e",
+ "HeaderVideo": "\u0412\u0456\u0434\u0435\u043e",
+ "MessageLoadingContent": "\u0417\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0437\u043c\u0456\u0441\u0442\u0443...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "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",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "\u0428\u043b\u044f\u0445:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456 \u0456\u0433\u0440\u0438",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "\u0424\u0456\u043b\u044c\u043c\u0438",
+ "ViewTypeMovieCollections": "\u041a\u043e\u043b\u0435\u043a\u0446\u0456\u0457",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "\u041e\u0441\u0442\u0430\u043d\u043d\u0456",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "\u041d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "\u0422\u0411",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/vi.json b/dashboard-ui/strings/html/vi.json
index 9e79c9b5f9..0f7a1bf636 100644
--- a/dashboard-ui/strings/html/vi.json
+++ b/dashboard-ui/strings/html/vi.json
@@ -1,27 +1,21 @@
{
"LabelExit": "Tho\u00e1t",
"LabelVisitCommunity": "Gh\u00e9 th\u0103m trang C\u1ed9ng \u0111\u1ed3ng",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "Ti\u00eau chu\u1ea9n",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "Duy\u1ec7t th\u01b0 vi\u1ec7n",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "Open Library Viewer",
"LabelRestartServer": "Kh\u1edfi \u0111\u1ed9ng l\u1ea1i m\u00e1y ch\u1ee7",
"LabelShowLogWindow": "Show Log Window",
"LabelPrevious": "Tr\u01b0\u1edbc",
"LabelFinish": "K\u1ebft th\u00fac",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "Ti\u1ebfp theo",
"LabelYoureDone": "B\u1ea1n \u0111\u00e3 ho\u00e0n th\u00e0nh!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Ph\u00e1t h\u00e0nh ch\u00ednh th\u1ee9c",
+ "OptionBeta": "Beta",
+ "OptionDev": "Kh\u00f4ng \u1ed5n \u0111\u1ecbnh",
"ThisWizardWillGuideYou": "Th\u1ee7 thu\u1eadt n\u00e0y s\u1ebd h\u01b0\u1edbng d\u1eabn qu\u00e1 tr\u00ecnh c\u00e0i \u0111\u1eb7t cho b\u1ea1n. \u0110\u1ec3 b\u1eaft \u0111\u1ea7u, vui l\u00f2ng l\u1ef1a ch\u1ecdn ng\u00f4n ng\u1eef b\u1ea1n \u01b0a th\u00edch.",
"TellUsAboutYourself": "N\u00f3i cho ch\u00fang t\u00f4i bi\u1ebft \u0111\u00f4i \u0111i\u1ec1u v\u1ec1 B\u1ea1n",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "T\u00ean c\u1ee7a B\u1ea1n",
"MoreUsersCanBeAddedLater": "More users can be added later within the Dashboard.",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "Cho ph\u00e9p t\u1ef1 \u0111\u1ed9ng \u00e1nh x\u1ea1 c\u1ed5ng (port)",
"LabelEnableAutomaticPortMappingHelp": "UPnP allows automated router configuration for easy remote access. This may not work with some router models.",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "Ok",
"ButtonCancel": "Tho\u00e1t",
- "ButtonExit": "Exit",
- "ButtonNew": "M\u1edbi",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "C\u00e0i \u0111\u1eb7t th\u01b0 vi\u1ec7n media c\u1ee7a b\u1ea1n",
"ButtonAddMediaFolder": "Th\u00eam m\u1ed9t th\u01b0 m\u1ee5c media",
"LabelFolderType": "Lo\u1ea1i th\u01b0 m\u1ee5c",
"ReferToMediaLibraryWiki": "Tham kh\u1ea3o th\u01b0 vi\u1ec7n wiki media.",
"LabelCountry": "Qu\u1ed1c gia:",
"LabelLanguage": "Ng\u00f4n ng\u1eef",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "Ng\u00f4n ng\u1eef metadata \u01b0a th\u00edch",
"LabelSaveLocalMetadata": "L\u01b0u c\u00e1c \u1ea3nh ngh\u1ec7 thu\u1eadt v\u00e0 metadata v\u00e0o trong c\u00e1c th\u01b0 m\u1ee5c media",
"LabelSaveLocalMetadataHelp": "L\u01b0u c\u00e1c \u1ea3nh ngh\u1ec7 thu\u1eadt v\u00e0 metadata v\u00e0o trong c\u00e1c th\u01b0 m\u1ee5c media, s\u1ebd \u0111\u01b0a ch\u00fang v\u00e0o m\u1ed9t n\u01a1i b\u1ea1n c\u00f3 th\u1ec3 ch\u1ec9nh s\u1eeda d\u1ec5 d\u00e0ng h\u01a1n.",
@@ -130,37 +47,16 @@
"TabPreferences": "\u01afa th\u00edch",
"TabPassword": "M\u1eadt kh\u1ea9u",
"TabLibraryAccess": "Truy c\u1eadp th\u01b0 vi\u1ec7n",
- "TabAccess": "Access",
"TabImage": "H\u00ecnh \u1ea3nh",
"TabProfile": "H\u1ed3 s\u01a1",
- "TabMetadata": "Metadata",
- "TabImages": "H\u00ecnh \u1ea3nh",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "Ti\u00eau \u0111\u1ec1",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "Display missing episodes within seasons",
"LabelUnairedMissingEpisodesWithinSeasons": "Display unaired episodes within seasons",
"HeaderVideoPlaybackSettings": "C\u00e1c c\u00e0i \u0111\u1eb7t ph\u00e1t Video",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "Ng\u00f4n ng\u1eef tho\u1ea1i \u01b0a th\u00edch:",
"LabelSubtitleLanguagePreference": "Ng\u00f4n ng\u1eef ph\u1ee5 \u0111\u1ec1 \u01b0a th\u00edch:",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "H\u1ed3 s\u01a1",
"TabSecurity": "B\u1ea3o m\u1eadt",
"ButtonAddUser": "Th\u00eam ng\u01b0\u1eddi d\u00f9ng",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "L\u01b0u",
"ButtonResetPassword": "Reset m\u1eadt kh\u1ea9u",
"LabelNewPassword": "M\u1eadt kh\u1ea9u m\u1edbi:",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "Maximum allowed parental rating:",
"MaxParentalRatingHelp": "N\u1ed9i dung v\u1edbi \u0111\u00e1nh gi\u00e1 cao h\u01a1n s\u1ebd \u0111\u01b0\u1ee3c \u1ea9n \u0111i t\u1eeb ng\u01b0\u1eddi d\u00f9ng n\u00e0y.",
"LibraryAccessHelp": "Select the media folders to share with this user. Administrators will be able to edit all folders using the metadata manager.",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "X\u00f3a h\u00ecnh \u1ea3nh",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "T\u1ea3i l\u00ean",
"HeaderUploadNewImage": "T\u1ea3i l\u00ean m\u1ed9t \u1ea3nh m\u1edbi",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "Kh\u00f4ng c\u00f3 g\u00ec \u1edf \u0111\u00e2y.",
"MessagePleaseEnsureInternetMetadata": "Please ensure downloading of internet metadata is enabled.",
"TabSuggested": "Suggested",
- "TabSuggestions": "Suggestions",
"TabLatest": "M\u1edbi nh\u1ea5t",
"TabUpcoming": "S\u1eafp di\u1ec5n ra",
"TabShows": "Shows",
@@ -217,6 +110,7 @@
"OptionAscending": "Ascending",
"OptionDescending": "Descending",
"OptionRuntime": "Th\u1eddi gian ph\u00e1t",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "S\u1ed1 l\u1ea7n ph\u00e1t",
"OptionDatePlayed": "Ng\u00e0y ph\u00e1t",
"OptionDateAdded": "Ng\u00e0y th\u00eam",
@@ -226,16 +120,10 @@
"OptionTrackName": "T\u00ean b\u00e0i",
"OptionCommunityRating": "\u0110\u00e1nh gi\u00e1 c\u1ee7a c\u1ed9ng \u0111\u1ed3ng",
"OptionNameSort": "T\u00ean",
- "OptionFolderSort": "Folders",
"OptionBudget": "Ng\u00e2n s\u00e1ch",
"OptionRevenue": "Doanh thu",
"OptionPoster": "\u00c1p ph\u00edch",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "Backdrop",
"OptionTimeline": "D\u00f2ng th\u1eddi gian",
- "OptionThumb": "Thumb",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "Bi\u1ec3n qu\u1ea3ng c\u00e1o",
"OptionCriticRating": "Critic Rating",
"OptionVideoBitrate": "T\u1ed1c \u0111\u1ed9 Bit c\u1ee7a Video",
"OptionResumable": "Resumable",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "C\u00e1c plugin c\u1ee7a t\u00f4i",
"TabCatalog": "Danh m\u1ee5c",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "T\u1ef1 \u0111\u1ed9ng c\u1eadp nh\u1eadt",
"HeaderNowPlaying": "Ph\u00e1t ngay b\u00e2y gi\u1edd",
"HeaderLatestAlbums": "C\u00e1c Album m\u1edbi nh\u1ea5t",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "Ph\u00e1t g\u1ea7n \u0111\u00e2y",
"HeaderFrequentlyPlayed": "Ph\u00e1t th\u01b0\u1eddng xuy\u00ean",
"DevBuildWarning": "Dev builds are the bleeding edge. Released often, these build have not been tested. The application may crash and entire features may not work at all.",
+ "OptionThumb": "Thumb",
+ "OptionBanner": "Bi\u1ec3n qu\u1ea3ng c\u00e1o",
"LabelVideoType": "Lo\u1ea1i Video:",
"OptionBluray": "Bluray",
"OptionDvd": "DVD",
"OptionIso": "Chu\u1ea9n qu\u1ed1c t\u1ebf",
"Option3D": "3D",
"LabelFeatures": "C\u00e1c t\u00ednh n\u0103ng:",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "Ph\u1ee5 \u0111\u1ec1",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "H\u00ecnh n\u1ec1n b\u00e0i h\u00e1t",
@@ -268,8 +153,6 @@
"TabMovies": "C\u00e1c phim",
"TabStudios": "H\u00e3ng phim",
"TabTrailers": "Trailers",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "Phim m\u1edbi nh\u1ea5t",
"HeaderLatestTrailers": "Latest Trailers",
"OptionHasSpecialFeatures": "T\u00ednh n\u0103ng \u0111\u1eb7c bi\u1ec7t",
@@ -290,32 +173,24 @@
"OptionFriday": "Friday",
"OptionSaturday": "Th\u1ee9 B\u1ea3y",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "Thi\u1ebfu IMDb ID",
"OptionMissingTvdbId": "Missing TheTVDB Id",
"OptionMissingOverview": "Missing Overview",
"OptionFileMetadataYearMismatch": "File\/Metadata Years Mismatched",
"TabGeneral": "General",
"TitleSupport": "H\u1ed7 tr\u1ee3",
- "LabelSeasonNumber": "Season number",
"TabLog": "Log",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "About",
"TabSupporterKey": "Supporter Key",
"TabBecomeSupporter": "Become a Supporter",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "Search the Knowledge Base",
"VisitTheCommunity": "Visit the Community",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "\u1ea8n ng\u01b0\u1eddi d\u00f9ng n\u00e0y t\u1eeb m\u00e0n h\u00ecnh \u0111\u0103ng nh\u1eadp",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "V\u00f4 hi\u1ec7u h\u00f3a ng\u01b0\u1eddi d\u00f9ng n\u00e0y",
"OptionDisableUserHelp": "If disabled the server will not allow any connections from this user. Existing connections will be abruptly terminated.",
"HeaderAdvancedControl": "Advanced Control",
"LabelName": "T\u00ean:",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "Cho ph\u00e9p ng\u01b0\u1eddi d\u00f9ng n\u00e0y qu\u1ea3n l\u00fd m\u00e1y ch\u1ee7",
"HeaderFeatureAccess": "Truy c\u1eadp t\u00ednh n\u0103ng",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "Thi\u1ebfu Tmdb ID",
"OptionIsHD": "\u0110\u1ed9 n\u00e9t cao",
"OptionIsSD": "\u0110\u1ed9 n\u00e9t ti\u00eau chu\u1ea9n",
@@ -336,17 +205,12 @@
"ButtonSelect": "L\u1ef1a ch\u1ecdn",
"ButtonGroupVersions": "Group Versions",
"PismoMessage": "Utilizing Pismo File Mount 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}",
"TabPaths": "C\u00e1c \u0111\u01b0\u1eddng d\u1eabn",
"TabServer": "M\u00e1y ch\u1ee7",
"TabTranscoding": "M\u00e3 h\u00f3a",
"TitleAdvanced": "N\u00e2ng cao",
- "OptionRelease": "Ph\u00e1t h\u00e0nh ch\u00ednh th\u1ee9c",
- "OptionBeta": "Beta",
- "OptionDev": "Kh\u00f4ng \u1ed5n \u0111\u1ecbnh",
"LabelAllowServerAutoRestart": "Cho ph\u00e9p m\u00e1y ch\u1ee7 t\u1ef1 \u0111\u1ed9ng kh\u1edfi \u0111\u1ed9ng l\u1ea1i \u0111\u1ec3 \u00e1p d\u1ee5ng c\u00e1c b\u1ea3n c\u1eadp nh\u1eadt",
"LabelAllowServerAutoRestartHelp": "The server will only restart during idle periods, when no users are active.",
"LabelEnableDebugLogging": "Enable debug logging",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "Specify custom paths where desired. Leave fields empty to use the defaults.",
"LabelCachePath": "Cache path:",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "Images by name path:",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "Metadata path:",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "Other Videos",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "Enable automatic updates from TheMovieDB.org",
"LabelAutomaticUpdatesTvdb": "Enable automatic updates from TheTVDB.com",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "Auto-scroll",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "Passwords are not required when logging in from localhost.",
"TabGuide": "Guide",
"TabChannels": "Channels",
- "TabCollections": "Collections",
"HeaderChannels": "Channels",
"TabRecordings": "Recordings",
"TabScheduled": "Scheduled",
"TabSeries": "Series",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "Cancel Recording",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "Settings",
"ButtonRefreshGuideData": "Refresh Guide Data",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "Priority",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "Record only new episodes",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "Days",
"HeaderActiveRecordings": "Active Recordings",
"HeaderLatestRecordings": "Latest Recordings",
@@ -431,17 +284,16 @@
"ButtonEdit": "Edit",
"ButtonRecord": "Record",
"ButtonDelete": "Delete",
- "ButtonRemove": "G\u1ee1 b\u1ecf",
"OptionRecordSeries": "Record Series",
"HeaderDetails": "Details",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "Backdrop",
"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.",
"OptionAutomatic": "T\u1ef1 \u0111\u1ed9ng",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "A Live TV service provider plugin is required in order to continue.",
"LiveTvPluginRequiredHelp": "Please install one of our available plugins, such as Next Pvr or ServerWmc.",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "Thumb",
"OptionDownloadMenuImage": "Menu",
"OptionDownloadLogoImage": "Logo",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "Primary",
"HeaderFetchImages": "Fetch Images:",
"HeaderImageSettings": "Image Settings",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "Maximum number of backdrops per item:",
"LabelMaxScreenshotsPerItem": "Maximum number of screenshots per item:",
"LabelMinBackdropDownloadWidth": "Minimum backdrop download width:",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "Cast & Crew",
"HeaderAdditionalParts": "Additional Parts",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "Missing",
"LabelOffline": "Offline",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "Ch\u1ea5t l\u01b0\u1ee3ng t\u1ed1i \u0111a",
"OptionEnableDebugTranscodingLogging": "Enable debug transcoding logging",
"OptionEnableDebugTranscodingLoggingHelp": "This will create very large log files and is only recommended as needed for troubleshooting purposes.",
+ "ButtonNew": "M\u1edbi",
+ "TabMetadata": "Metadata",
+ "TabImages": "H\u00ecnh \u1ea3nh",
+ "TabCollectionTitles": "Ti\u00eau \u0111\u1ec1",
+ "ButtonSearch": "T\u00ecm ki\u1ebfm",
+ "ButtonRemove": "G\u1ee1 b\u1ecf",
"EditCollectionItemsHelp": "Th\u00eam ho\u1eb7c x\u00f3a b\u1ea5t k\u1ef3 b\u1ed9 phim, series, album, s\u00e1ch ho\u1eb7c ch\u01a1i game b\u1ea1n mu\u1ed1n trong nh\u00f3m b\u1ed9 s\u01b0u t\u1eadp n\u00e0y",
"HeaderAddTitles": "Th\u00eam c\u00e1c ti\u00eau \u0111\u1ec1",
"LabelEnableDlnaPlayTo": "Cho ph\u00e9p DLNA ch\u1ea1y \u0111\u1ec3",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "C\u00e1c \u0111\u01b0\u1eddng d\u1eabn h\u1ec7 th\u1ed1ng",
"LinkCommunity": "Community",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api Documentation",
"LabelFriendlyServerName": "Friendly server name:",
"LabelFriendlyServerNameHelp": "This name will be used to identify this server. If left blank, the computer name will be used.",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "New Collection",
- "ButtonSubmit": "Submit",
"ButtonCreate": "Create",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web socket port number:",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "Resume",
@@ -591,8 +433,12 @@
"HeaderProgram": "Ch\u01b0\u01a1ng tr\u00ecnh",
"HeaderClients": "C\u00e1c m\u00e1y kh\u00e1ch",
"LabelCompleted": "Ho\u00e0n th\u00e0nh",
+ "LabelFailed": "Failed",
"LabelSkipped": "B\u1ecf qua",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Phim",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "T\u00ecm ki\u1ebfm",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/zh-CN.json b/dashboard-ui/strings/html/zh-CN.json
index 915a44cb59..e192bddceb 100644
--- a/dashboard-ui/strings/html/zh-CN.json
+++ b/dashboard-ui/strings/html/zh-CN.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u9000\u51fa",
"LabelVisitCommunity": "\u8bbf\u95ee\u793e\u533a",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "\u6807\u51c6",
- "LabelApiDocumentation": "API\u6587\u6863",
- "LabelDeveloperResources": "\u5f00\u53d1\u8d44\u6e90",
"LabelBrowseLibrary": "\u6d4f\u89c8\u5a92\u4f53\u5e93",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "\u6253\u5f00\u5a92\u4f53\u5e93\u6d4f\u89c8\u5668",
"LabelRestartServer": "\u91cd\u542f\u670d\u52a1\u5668",
"LabelShowLogWindow": "\u663e\u793a\u65e5\u5fd7\u7a97\u53e3",
"LabelPrevious": "\u4e0a\u4e00\u4e2a",
"LabelFinish": "\u5b8c\u6210",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "\u4e0b\u4e00\u4e2a",
"LabelYoureDone": "\u5b8c\u6210\uff01",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "\u5b98\u65b9\u6b63\u5f0f\u7248",
+ "OptionBeta": "\u6d4b\u8bd5\u7248",
+ "OptionDev": "\u5f00\u53d1\u7248\uff08\u4e0d\u7a33\u5b9a\uff09",
"ThisWizardWillGuideYou": "\u8be5\u5411\u5bfc\u5c06\u6307\u5bfc\u4f60\u5b8c\u6210\u5b89\u88c5\u8fc7\u7a0b\u3002\u9996\u5148\uff0c\u8bf7\u9009\u62e9\u4f60\u7684\u9996\u9009\u8bed\u8a00\u3002",
"TellUsAboutYourself": "\u8bf7\u4ecb\u7ecd\u4e00\u4e0b\u4f60\u81ea\u5df1",
- "ButtonQuickStartGuide": "\u5feb\u901f\u5165\u95e8\u6307\u5357",
"LabelYourFirstName": "\u4f60\u7684\u540d\u5b57\uff1a",
"MoreUsersCanBeAddedLater": "\u7a0d\u540e\u5728\u63a7\u5236\u53f0\u4e2d\u53ef\u4ee5\u6dfb\u52a0\u66f4\u591a\u7528\u6237\u3002",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "\u542f\u7528\u81ea\u52a8\u7aef\u53e3\u6620\u5c04",
"LabelEnableAutomaticPortMappingHelp": "UPNP\u5141\u8bb8\u81ea\u52a8\u8def\u7531\u5668\u914d\u7f6e\uff0c\u4ece\u800c\u66f4\u65b9\u4fbf\u7684\u8fdb\u884c\u8fdc\u7a0b\u8bbf\u95ee\u3002\u4f46\u8fd9\u53ef\u80fd\u4e0d\u9002\u7528\u4e8e\u67d0\u4e9b\u578b\u53f7\u7684\u8def\u7531\u5668\u3002",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "\u7ee7\u7eed\u4e4b\u524d\u8bf7\u63a5\u53d7\u670d\u52a1\u548c\u9690\u79c1\u653f\u7b56\u6761\u6b3e\u3002",
- "OptionIAcceptTermsOfService": "\u6211\u63a5\u53d7\u670d\u52a1\u6761\u6b3e",
- "ButtonPrivacyPolicy": "\u9690\u79c1\u653f\u7b56",
- "ButtonTermsOfService": "\u670d\u52a1\u6761\u6b3e",
- "HeaderDeveloperOptions": "\u5f00\u53d1\u4eba\u5458\u9009\u9879",
- "OptionEnableWebClientResponseCache": "\u542f\u7528Web\u5ba2\u6237\u7aef\u7f13\u5b58\u54cd\u5e94",
- "OptionDisableForDevelopmentHelp": "\u6839\u636e\u5bf9Web\u5ba2\u6237\u7aef\u7684\u5f00\u53d1\u7684\u9700\u8981\u6765\u914d\u7f6e\u8fd9\u4e9b\u9879\u76ee\u3002",
- "OptionEnableWebClientResourceMinification": "\u542f\u7528Web\u5ba2\u6237\u7aef\u8d44\u6e90\u6700\u5c0f\u5316",
- "LabelDashboardSourcePath": "Web\u5ba2\u6237\u7aef\u6e90\u8def\u5f84\uff1a",
- "LabelDashboardSourcePathHelp": "\u5982\u679c\u4ece\u6e90\u8fd0\u884c\u670d\u52a1\u5668\uff0c\u8bf7\u6307\u5b9a\u63a7\u5236\u53f0UI\u6587\u4ef6\u5939\u8def\u5f84\u3002\u8fd9\u4e2a\u6587\u4ef6\u5939\u5c06\u63d0\u4f9bWeb\u5ba2\u6237\u7aef\u7684\u6240\u6709\u6587\u4ef6\u3002",
- "ButtonConvertMedia": "\u5a92\u4f53\u8f6c\u6362",
- "ButtonOrganize": "\u6574\u7406",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "\u786e\u5b9a",
"ButtonCancel": "\u53d6\u6d88",
- "ButtonExit": "Exit",
- "ButtonNew": "\u65b0\u589e",
- "HeaderTV": "\u7535\u89c6",
- "HeaderAudio": "\u97f3\u9891",
- "HeaderVideo": "\u89c6\u9891",
- "HeaderPaths": "\u8def\u5f84",
- "CategorySync": "\u540c\u6b65",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "\u7b80\u6613Pin\u7801",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "\u6ce8\u518cPayPal",
- "HeaderSyncRequiresSupporterMembership": "\u540c\u6b65\u9700\u8981\u652f\u6301\u8005\u4f1a\u5458",
- "HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528",
- "LabelSyncTempPath": "\u4e34\u65f6\u6587\u4ef6\u8def\u5f84\uff1a",
- "LabelSyncTempPathHelp": "\u6307\u5b9a\u540c\u6b65\u65f6\u7684\u5de5\u4f5c\u6587\u4ef6\u5939\u3002\u5728\u540c\u6b65\u8fc7\u7a0b\u4e2d\u521b\u5efa\u7684\u8f6c\u6362\u5a92\u4f53\u6587\u4ef6\u5c06\u88ab\u5b58\u653e\u5728\u8fd9\u91cc\u3002",
- "LabelCustomCertificatePath": "\u81ea\u5b9a\u4e49\u8bc1\u4e66\u8def\u5f84\uff1a",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "\u901a\u77e5",
- "ButtonDonateWithPayPal": "\u901a\u8fc7PayPal\u6350\u8d60",
- "OptionDetectArchiveFilesAsMedia": "\u628a\u538b\u7f29\u6587\u4ef6\u4f5c\u4e3a\u5a92\u4f53\u6587\u4ef6\u68c0\u6d4b",
- "OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u542f\u7528\uff0c\u4e0e.RAR\u548c.zip\u6269\u5c55\u540d\u7684\u6587\u4ef6\u5c06\u88ab\u68c0\u6d4b\u4e3a\u5a92\u4f53\u6587\u4ef6\u3002",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "\u540c\u6b65\u4f5c\u4e1a",
- "OptionReleaseDate": "\u53d1\u884c\u65e5\u671f",
- "ButtonPlayTrailer": "\u9884\u544a\u7247",
- "LabelFailed": "\u5931\u8d25",
- "LabelSeries": "\u7535\u89c6\u5267\uff1a",
- "ButtonFullscreen": "\u5207\u6362\u5168\u5c4f",
- "ButtonAudioTracks": "\u97f3\u8f68",
- "ButtonPreviousTrack": "\u4e0a\u4e00\u97f3\u8f68",
- "ButtonNextTrack": "\u4e0b\u4e00\u97f3\u8f68",
- "HeaderEpisodes": "Episodes:",
- "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",
- "FolderTypeInherit": "\u7ee7\u627f",
- "LabelContentType": "\u5185\u5bb9\u7c7b\u578b",
- "TitleScheduledTasks": "\u8ba1\u5212\u4efb\u52a1",
"HeaderSetupLibrary": "\u8bbe\u7f6e\u4f60\u7684\u5a92\u4f53\u5e93",
"ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u4f53\u6587\u4ef6\u5939",
"LabelFolderType": "\u6587\u4ef6\u5939\u7c7b\u578b\uff1a",
"ReferToMediaLibraryWiki": "\u8bf7\u53c2\u9605\u5a92\u4f53\u5e93\u7ef4\u57fa\u3002",
"LabelCountry": "\u56fd\u5bb6\uff1a",
"LabelLanguage": "\u8bed\u8a00\uff1a",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "\u52a0\u5165\u5f00\u53d1\u56e2\u961f",
"HeaderPreferredMetadataLanguage": "\u9996\u9009\u5a92\u4f53\u8d44\u6599\u8bed\u8a00\uff1a",
"LabelSaveLocalMetadata": "\u4fdd\u5b58\u5a92\u4f53\u56fe\u50cf\u53ca\u8d44\u6599\u5230\u5a92\u4f53\u6240\u5728\u6587\u4ef6\u5939",
"LabelSaveLocalMetadataHelp": "\u76f4\u63a5\u4fdd\u5b58\u5a92\u4f53\u56fe\u50cf\u53ca\u8d44\u6599\u5230\u5a92\u4f53\u6240\u5728\u6587\u4ef6\u5939\u4ee5\u65b9\u4fbf\u7f16\u8f91\u3002",
@@ -130,37 +47,16 @@
"TabPreferences": "\u504f\u597d",
"TabPassword": "\u5bc6\u7801",
"TabLibraryAccess": "\u5a92\u4f53\u5e93\u8bbf\u95ee\u6743\u9650",
- "TabAccess": "\u8bbf\u95ee",
"TabImage": "\u56fe\u7247",
"TabProfile": "\u4e2a\u4eba\u914d\u7f6e",
- "TabMetadata": "\u5a92\u4f53\u8d44\u6599",
- "TabImages": "\u56fe\u50cf",
- "TabNotifications": "\u901a\u77e5",
- "TabCollectionTitles": "\u6807\u9898",
- "HeaderDeviceAccess": "\u8bbe\u5907\u8bbf\u95ee",
- "OptionEnableAccessFromAllDevices": "\u542f\u7528\u6240\u6709\u8bbe\u5907\u53ef\u4ee5\u8bbf\u95ee",
- "OptionEnableAccessToAllChannels": "\u542f\u7528\u6240\u6709\u9891\u9053\u53ef\u4ee5\u8bbf\u95ee",
- "OptionEnableAccessToAllLibraries": "\u542f\u7528\u6240\u6709\u5a92\u4f53\u5e93\u53ef\u4ee5\u8bbf\u95ee",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "\u663e\u793a\u6bcf\u5b63\u91cc\u7f3a\u5c11\u7684\u5267\u96c6",
"LabelUnairedMissingEpisodesWithinSeasons": "\u663e\u793a\u6bcf\u5b63\u91cc\u672a\u53d1\u5e03\u7684\u5267\u96c6",
"HeaderVideoPlaybackSettings": "\u89c6\u9891\u56de\u653e\u8bbe\u7f6e",
- "HeaderPlaybackSettings": "\u64ad\u653e\u8bbe\u7f6e",
"LabelAudioLanguagePreference": "\u97f3\u9891\u8bed\u8a00\u504f\u597d\u8bbe\u7f6e",
"LabelSubtitleLanguagePreference": "\u5b57\u5e55\u8bed\u8a00\u504f\u597d\u8bbe\u7f6e",
- "OptionDefaultSubtitles": "\u9ed8\u8ba4",
- "OptionOnlyForcedSubtitles": "\u4ec5\u7528\u5f3a\u5236\u5b57\u5e55",
- "OptionAlwaysPlaySubtitles": "\u603b\u662f\u64ad\u653e\u5b57\u5e55",
- "OptionNoSubtitles": "\u65e0\u5b57\u5e55",
- "OptionDefaultSubtitlesHelp": "\u5339\u914d\u5b57\u5e55\u8bed\u8a00\u504f\u597d\uff0c\u5f53\u97f3\u9891\u662f\u5916\u8bed\u65f6\u5b57\u5e55\u5c06\u88ab\u52a0\u8f7d\u3002",
- "OptionOnlyForcedSubtitlesHelp": "\u53ea\u6709\u5b57\u5e55\u6807\u8bb0\u4e3a\u5f3a\u5236\u5c06\u88ab\u52a0\u8f7d\u3002",
- "OptionAlwaysPlaySubtitlesHelp": "\u5339\u914d\u5b57\u5e55\u8bed\u8a00\u504f\u597d\uff0c\u65e0\u8bba\u97f3\u9891\u662f\u4ec0\u4e48\u8bed\u5b57\u5e55\u90fd\u5c06\u88ab\u52a0\u8f7d\u3002",
- "OptionNoSubtitlesHelp": "\u5b57\u5e55\u5c06\u4e0d\u4f1a\u88ab\u9ed8\u8ba4\u52a0\u8f7d\u3002",
"TabProfiles": "\u914d\u7f6e",
"TabSecurity": "\u5b89\u5168\u6027",
"ButtonAddUser": "\u6dfb\u52a0\u7528\u6237",
- "ButtonAddLocalUser": "\u6dfb\u52a0\u672c\u5730\u7528\u6237",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "\u50a8\u5b58",
"ButtonResetPassword": "\u91cd\u7f6e\u5bc6\u7801",
"LabelNewPassword": "\u65b0\u5bc6\u7801\uff1a",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u6700\u5927\u5141\u8bb8\u7684\u5bb6\u957f\u8bc4\u7ea7\uff1a",
"MaxParentalRatingHelp": "\u9ad8\u7ea7\u522b\u5185\u5bb9\u5c06\u5bf9\u6b64\u7528\u6237\u9690\u85cf\u3002",
"LibraryAccessHelp": "\u9009\u62e9\u5171\u4eab\u7ed9\u6b64\u7528\u6237\u7684\u5a92\u4f53\u6587\u4ef6\u5939\u3002\u7ba1\u7406\u5458\u80fd\u4f7f\u7528\u5a92\u4f53\u8d44\u6599\u7ba1\u7406\u5668\u6765\u7f16\u8f91\u6240\u6709\u6587\u4ef6\u5939\u3002",
- "ChannelAccessHelp": "\u9009\u62e9\u5171\u4eab\u7ed9\u6b64\u7528\u6237\u7684\u9891\u9053\u3002\u7ba1\u7406\u5458\u80fd\u4f7f\u7528\u5a92\u4f53\u8d44\u6599\u7ba1\u7406\u5668\u6765\u7f16\u8f91\u6240\u6709\u9891\u9053\u3002",
"ButtonDeleteImage": "\u5220\u9664\u56fe\u7247",
- "LabelSelectUsers": "\u9009\u62e9\u7528\u6237\uff1a",
"ButtonUpload": "\u4e0a\u8f7d",
"HeaderUploadNewImage": "\u4e0a\u8f7d\u65b0\u56fe\u7247",
"LabelDropImageHere": "\u628a\u56fe\u7247\u62d6\u5230\u8fd9\u513f",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u8fd9\u513f\u4ec0\u4e48\u90fd\u6ca1\u6709\u3002",
"MessagePleaseEnsureInternetMetadata": "\u8bf7\u786e\u4fdd\u5df2\u542f\u7528\u4ece\u4e92\u8054\u7f51\u4e0b\u8f7d\u5a92\u4f53\u8d44\u6599\u3002",
"TabSuggested": "\u5efa\u8bae",
- "TabSuggestions": "Suggestions",
"TabLatest": "\u6700\u65b0",
"TabUpcoming": "\u5373\u5c06\u53d1\u5e03",
"TabShows": "\u8282\u76ee",
@@ -217,6 +110,7 @@
"OptionAscending": "\u5347\u5e8f",
"OptionDescending": "\u964d\u5e8f",
"OptionRuntime": "\u64ad\u653e\u65f6\u95f4",
+ "OptionReleaseDate": "\u53d1\u884c\u65e5\u671f",
"OptionPlayCount": "\u64ad\u653e\u6b21\u6570",
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
"OptionDateAdded": "\u52a0\u5165\u65e5\u671f",
@@ -226,16 +120,10 @@
"OptionTrackName": "\u66f2\u76ee\u540d\u79f0",
"OptionCommunityRating": "\u516c\u4f17\u8bc4\u5206",
"OptionNameSort": "\u540d\u5b57",
- "OptionFolderSort": "\u6587\u4ef6\u5939",
"OptionBudget": "\u9884\u7b97",
"OptionRevenue": "\u6536\u5165",
"OptionPoster": "\u6d77\u62a5",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "\u80cc\u666f",
"OptionTimeline": "\u65f6\u95f4\u8868",
- "OptionThumb": "\u7f29\u7565\u56fe",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "\u6a2a\u5e45",
"OptionCriticRating": "\u5f71\u8bc4\u4eba\u8bc4\u5206",
"OptionVideoBitrate": "\u89c6\u9891\u6bd4\u7279\u7387",
"OptionResumable": "\u53ef\u6062\u590d\u64ad\u653e",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "\u8ba1\u5212\u4efb\u52a1",
"TabMyPlugins": "\u6211\u7684\u63d2\u4ef6",
"TabCatalog": "\u76ee\u5f55",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "\u81ea\u52a8\u66f4\u65b0",
"HeaderNowPlaying": "\u6b63\u5728\u64ad\u653e",
"HeaderLatestAlbums": "\u6700\u65b0\u4e13\u8f91",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "\u6700\u8fd1\u64ad\u653e",
"HeaderFrequentlyPlayed": "\u591a\u6b21\u64ad\u653e",
"DevBuildWarning": "\u5f00\u53d1\u7248\u672c\u662f\u6700\u524d\u7aef\u7684\u3002\u8fd9\u4e9b\u7248\u672c\u7ecf\u5e38\u53d1\u5e03\u4f46\u6ca1\u6709\u7ecf\u8fc7\u6d4b\u8bd5\u3002\u53ef\u80fd\u4f1a\u5bfc\u81f4\u5e94\u7528\u7a0b\u5e8f\u5d29\u6e83\uff0c\u4e14\u6240\u6709\u529f\u80fd\u65e0\u6cd5\u5de5\u4f5c\u3002",
+ "OptionThumb": "\u7f29\u7565\u56fe",
+ "OptionBanner": "\u6a2a\u5e45",
"LabelVideoType": "\u89c6\u9891\u7c7b\u578b\uff1a",
"OptionBluray": "\u84dd\u5149",
"OptionDvd": "DVD",
"OptionIso": "ISO\u955c\u50cf\u6587\u4ef6",
"Option3D": "3D",
"LabelFeatures": "\u529f\u80fd\uff1a",
- "LabelService": "\u670d\u52a1\uff1a",
- "LabelStatus": "\u72b6\u6001\uff1a",
- "LabelVersion": "\u7248\u672c\uff1a",
- "LabelLastResult": "\u6700\u7ec8\u7ed3\u679c\uff1a",
"OptionHasSubtitles": "\u5b57\u5e55",
"OptionHasTrailer": "\u9884\u544a\u7247",
"OptionHasThemeSong": "\u4e3b\u9898\u6b4c",
@@ -268,8 +153,6 @@
"TabMovies": "\u7535\u5f71",
"TabStudios": "\u5de5\u4f5c\u5ba4",
"TabTrailers": "\u9884\u544a\u7247",
- "LabelArtists": "\u827a\u672f\u5bb6\uff1a",
- "LabelArtistsHelp": "\u72ec\u7acb\u591a\u529f\u80fd\uff1b",
"HeaderLatestMovies": "\u6700\u65b0\u7535\u5f71",
"HeaderLatestTrailers": "\u6700\u65b0\u9884\u544a\u7247",
"OptionHasSpecialFeatures": "\u7279\u6b8a\u529f\u80fd",
@@ -290,32 +173,24 @@
"OptionFriday": "\u661f\u671f\u4e94",
"OptionSaturday": "\u661f\u671f\u516d",
"HeaderManagement": "\u7ba1\u7406",
- "LabelManagement": "\u7ba1\u7406\uff1a",
"OptionMissingImdbId": "\u7f3a\u5c11IMDb \u7f16\u53f7",
"OptionMissingTvdbId": "\u7f3a\u5c11TheTVDB \u7f16\u53f7",
"OptionMissingOverview": "\u7f3a\u5c11\u6982\u8ff0",
"OptionFileMetadataYearMismatch": "\u6587\u4ef6\/\u5a92\u4f53\u8d44\u6599\u5e74\u4efd\u4e0d\u5339\u914d",
"TabGeneral": "\u4e00\u822c",
"TitleSupport": "\u652f\u6301",
- "LabelSeasonNumber": "Season number",
"TabLog": "\u65e5\u5fd7\u6587\u6863",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "\u5173\u4e8e",
"TabSupporterKey": "\u652f\u6301\u8005\u5e8f\u53f7",
"TabBecomeSupporter": "\u6210\u4e3a\u652f\u6301\u8005",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "\u641c\u7d22\u77e5\u8bc6\u5e93",
"VisitTheCommunity": "\u8bbf\u95ee\u793e\u533a",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "\u4ece\u767b\u9646\u9875\u9762\u9690\u85cf\u6b64\u7528\u6237",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6237",
"OptionDisableUserHelp": "\u5982\u679c\u7981\u7528\u8be5\u7528\u6237\uff0c\u670d\u52a1\u5668\u5c06\u4e0d\u5141\u8bb8\u8be5\u7528\u6237\u8fde\u63a5\u3002\u73b0\u6709\u7684\u8fde\u63a5\u5c06\u88ab\u7ec8\u6b62\u3002",
"HeaderAdvancedControl": "\u9ad8\u7ea7\u63a7\u5236",
"LabelName": "\u540d\u5b57\uff1a",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "\u8fd0\u884c\u6b64\u7528\u6237\u7ba1\u7406\u670d\u52a1\u5668",
"HeaderFeatureAccess": "\u53ef\u4f7f\u7528\u7684\u529f\u80fd",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "\u7f3a\u5c11Tmdb \u7f16\u53f7",
"OptionIsHD": "HD\u9ad8\u6e05",
"OptionIsSD": "SD\u6807\u6e05",
@@ -336,17 +205,12 @@
"ButtonSelect": "\u9009\u62e9",
"ButtonGroupVersions": "\u7248\u672c\u53f7",
"PismoMessage": "\u901a\u8fc7\u6350\u8d60\u83b7\u53d6Pismo File Mount\u7684\u4f7f\u7528\u6388\u6743\u3002",
- "TangibleSoftwareMessage": "\u901a\u8fc7\u6350\u8d60\u7684\u8bb8\u53ef\u8bc1\u4f7f\u7528Java \/ C\uff03\u8f6c\u6362\u5668\u5207\u5b9e\u53ef\u884c\u7684\u89e3\u51b3\u65b9\u6848\u3002",
- "HeaderCredits": "\u5236\u4f5c\u4eba\u5458\u540d\u5355",
"PleaseSupportOtherProduces": "\u8bf7\u652f\u6301\u6211\u4eec\u7684\u5176\u4ed6\u514d\u8d39\u4ea7\u54c1\uff1a",
"VersionNumber": "\u7248\u672c {0}",
"TabPaths": "\u8def\u5f84",
"TabServer": "\u670d\u52a1\u5668",
"TabTranscoding": "\u8f6c\u7801",
"TitleAdvanced": "\u9ad8\u7ea7",
- "OptionRelease": "\u5b98\u65b9\u6b63\u5f0f\u7248",
- "OptionBeta": "\u6d4b\u8bd5\u7248",
- "OptionDev": "\u5f00\u53d1\u7248\uff08\u4e0d\u7a33\u5b9a\uff09",
"LabelAllowServerAutoRestart": "\u5141\u8bb8\u670d\u52a1\u5668\u81ea\u52a8\u91cd\u542f\u6765\u5b89\u88c5\u66f4\u65b0",
"LabelAllowServerAutoRestartHelp": "\u8be5\u670d\u52a1\u5668\u4ec5\u4f1a\u5728\u7a7a\u95f2\u548c\u6ca1\u6709\u6d3b\u52a8\u7528\u6237\u7684\u671f\u95f4\u91cd\u65b0\u542f\u52a8\u3002",
"LabelEnableDebugLogging": "\u542f\u7528\u8c03\u8bd5\u65e5\u5fd7",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "\u81ea\u5b9a\u4e49\u6240\u9700\u7684\u8def\u5f84\uff0c\u5982\u679c\u5b57\u6bb5\u4e3a\u7a7a\u5219\u4f7f\u7528\u9ed8\u8ba4\u503c\u3002",
"LabelCachePath": "\u7f13\u5b58\u8def\u5f84\uff1a",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "\u6309\u540d\u79f0\u5f52\u7c7b\u7684\u56fe\u7247\u8def\u5f84\uff1a",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "\u5a92\u4f53\u8d44\u6599\u8def\u5f84\uff1a",
@@ -374,14 +236,11 @@
"OptionEpisodes": "\u5267\u96c6",
"OptionOtherVideos": "\u5176\u4ed6\u89c6\u9891",
"TitleMetadata": "\u5a92\u4f53\u8d44\u6599",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "\u542f\u7528\u4eceTheMovieDB.org\u81ea\u52a8\u66f4\u65b0",
"LabelAutomaticUpdatesTvdb": "\u542f\u7528\u4eceTheTVDB.com\u81ea\u52a8\u66f4\u65b0",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "\u9996\u9009\u4e0b\u8f7d\u8bed\u8a00\uff1a",
"ButtonAutoScroll": "\u81ea\u52a8\u6eda\u52a8",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "\u4ece\u672c\u5730\u4e3b\u673a\u767b\u5f55\u4e0d\u9700\u8981\u5bc6\u7801\u3002",
"TabGuide": "\u6307\u5357",
"TabChannels": "\u9891\u9053",
- "TabCollections": "\u5408\u96c6",
"HeaderChannels": "\u9891\u9053",
"TabRecordings": "\u5f55\u5236",
"TabScheduled": "\u9884\u5b9a",
"TabSeries": "\u7535\u89c6\u5267",
- "TabFavorites": "\u6211\u7684\u6700\u7231",
- "TabMyLibrary": "\u6211\u7684\u5a92\u4f53\u5e93",
"ButtonCancelRecording": "\u53d6\u6d88\u5f55\u5236",
"HeaderPrePostPadding": "\u9884\u5148\/\u540e\u671f\u586b\u5145",
"LabelPrePaddingMinutes": "\u9884\u5148\u5145\u586b\u5206\u949f\u6570\uff1a",
@@ -416,13 +272,10 @@
"TabStatus": "\u72b6\u6001",
"TabSettings": "\u8bbe\u7f6e",
"ButtonRefreshGuideData": "\u5237\u65b0\u6307\u5357\u6570\u636e",
- "ButtonRefresh": "\u5237\u65b0",
- "ButtonAdvancedRefresh": "\u9ad8\u7ea7\u5237\u65b0",
"OptionPriority": "\u4f18\u5148",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "\u53ea\u5f55\u5236\u65b0\u5267\u96c6",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "\u5929",
"HeaderActiveRecordings": "\u6b63\u5728\u5f55\u5236\u7684\u8282\u76ee",
"HeaderLatestRecordings": "\u6700\u65b0\u5f55\u5236\u7684\u8282\u76ee",
@@ -431,17 +284,16 @@
"ButtonEdit": "\u7f16\u8f91",
"ButtonRecord": "\u5f55\u5236",
"ButtonDelete": "\u5220\u9664",
- "ButtonRemove": "\u79fb\u9664",
"OptionRecordSeries": "\u5f55\u5236\u7535\u89c6\u5267",
"HeaderDetails": "\u8be6\u7ec6\u8d44\u6599",
+ "OptionFolderSort": "\u6587\u4ef6\u5939",
+ "OptionBackdrop": "\u80cc\u666f",
"TitleLiveTV": "\u7535\u89c6\u76f4\u64ad",
"LabelNumberOfGuideDays": "\u4e0b\u8f7d\u51e0\u5929\u7684\u8282\u76ee\u6307\u5357\uff1a",
"LabelNumberOfGuideDaysHelp": "\u4e0b\u8f7d\u66f4\u591a\u5929\u7684\u8282\u76ee\u6307\u5357\u53ef\u4ee5\u5e2e\u4f60\u8fdb\u4e00\u6b65\u67e5\u770b\u8282\u76ee\u5217\u8868\u5e76\u505a\u51fa\u63d0\u524d\u5b89\u6392\uff0c\u4f46\u4e0b\u8f7d\u8fc7\u7a0b\u4e5f\u5c06\u8017\u65f6\u66f4\u4e45\u3002\u5b83\u5c06\u57fa\u4e8e\u9891\u9053\u6570\u91cf\u81ea\u52a8\u9009\u62e9\u3002",
"OptionAutomatic": "\u81ea\u52a8",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "\u8981\u7ee7\u7eed\u7684\u8bdd\u8bf7\u81f3\u5c11\u5b89\u88c5\u4e00\u4e2a\u7535\u89c6\u76f4\u64ad\u63d2\u4ef6\u3002",
"LiveTvPluginRequiredHelp": "\u8bf7\u81f3\u5c11\u5b89\u88c5\u4e00\u4e2a\u6211\u4eec\u6240\u63d0\u4f9b\u7684\u63d2\u4ef6\uff0c\u4f8b\u5982\uff1aNext Pvr \u6216\u8005 ServerWmc\u3002",
- "LabelCustomizeOptionsPerMediaType": "\u81ea\u5b9a\u4e49\u5a92\u4f53\u7c7b\u578b\uff1a",
"OptionDownloadThumbImage": "\u7f29\u7565\u56fe",
"OptionDownloadMenuImage": "\u83dc\u5355",
"OptionDownloadLogoImage": "\u6807\u5fd7",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "\u5c01\u9762\u56fe",
"HeaderFetchImages": "\u83b7\u53d6\u56fe\u50cf\uff1a",
"HeaderImageSettings": "\u56fe\u7247\u8bbe\u7f6e",
- "TabOther": "\u5176\u4ed6",
"LabelMaxBackdropsPerItem": "\u6bcf\u4e2a\u9879\u76ee\u6700\u5927\u80cc\u666f\u56fe\u6570\u76ee\uff1a",
"LabelMaxScreenshotsPerItem": "\u6bcf\u4e2a\u9879\u76ee\u6700\u5927\u622a\u56fe\u6570\u76ee\uff1a",
"LabelMinBackdropDownloadWidth": "\u4e0b\u8f7d\u80cc\u666f\u56fe\u7684\u6700\u5c0f\u5bbd\u5ea6\uff1a",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u6f14\u804c\u4eba\u5458",
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u5206",
"ButtonSplitVersionsApart": "\u652f\u7ebf\u7248\u672c",
+ "ButtonPlayTrailer": "\u9884\u544a\u7247",
"LabelMissing": "\u7f3a\u5931",
"LabelOffline": "\u79bb\u7ebf",
"PathSubstitutionHelp": "\u8def\u5f84\u66ff\u6362\u7528\u4e8e\u628a\u670d\u52a1\u5668\u4e0a\u7684\u8def\u5f84\u6620\u5c04\u5230\u5ba2\u6237\u7aef\u80fd\u591f\u8bbf\u95ee\u7684\u8def\u5f84\u3002\u5141\u8bb8\u7528\u6237\u76f4\u63a5\u8bbf\u95ee\u670d\u52a1\u5668\u4e0a\u7684\u5a92\u4f53\uff0c\u5e76\u80fd\u591f\u76f4\u63a5\u901a\u8fc7\u7f51\u7edc\u4e0a\u64ad\u653e\uff0c\u53ef\u4ee5\u4e0d\u8fdb\u884c\u8f6c\u6d41\u548c\u8f6c\u7801\uff0c\u4ece\u800c\u8282\u7ea6\u670d\u52a1\u5668\u8d44\u6e90\u3002",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "\u6700\u9ad8\u8d28\u91cf",
"OptionEnableDebugTranscodingLogging": "\u542f\u7528\u8f6c\u7801\u9664\u9519\u65e5\u5fd7",
"OptionEnableDebugTranscodingLoggingHelp": "\u8fd9\u5c06\u521b\u5efa\u4e00\u4e2a\u975e\u5e38\u5927\u7684\u65e5\u5fd7\u6587\u4ef6\uff0c\u4ec5\u63a8\u8350\u5728\u6392\u9664\u6545\u969c\u65f6\u4f7f\u7528\u3002",
+ "ButtonNew": "\u65b0\u589e",
+ "TabMetadata": "\u5a92\u4f53\u8d44\u6599",
+ "TabImages": "\u56fe\u50cf",
+ "TabCollectionTitles": "\u6807\u9898",
+ "ButtonSearch": "\u641c\u7d22",
+ "ButtonRemove": "\u79fb\u9664",
"EditCollectionItemsHelp": "\u6dfb\u52a0\u6216\u79fb\u9664\u8fd9\u4e2a\u96c6\u5408\u91cc\u7684\u4efb\u4f55\u7535\u5f71\uff0c\u7535\u89c6\u5267\uff0c\u4e13\u8f91\uff0c\u4e66\u7c4d\u6216\u6e38\u620f\u3002",
"HeaderAddTitles": "\u6dfb\u52a0\u6807\u9898",
"LabelEnableDlnaPlayTo": "\u64ad\u653e\u5230DLNA\u8bbe\u5907",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "\u7cfb\u7edf\u8def\u5f84",
"LinkCommunity": "\u793e\u533a",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api \u6587\u6863",
"LabelFriendlyServerName": "\u597d\u8bb0\u7684\u670d\u52a1\u5668\u540d\u79f0\uff1a",
"LabelFriendlyServerNameHelp": "\u6b64\u540d\u79f0\u5c06\u7528\u505a\u670d\u52a1\u5668\u540d\uff0c\u5982\u679c\u7559\u7a7a\uff0c\u5c06\u4f7f\u7528\u8ba1\u7b97\u673a\u540d\u3002",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "\u65b0\u5408\u96c6",
- "ButtonSubmit": "\u63d0\u4ea4",
"ButtonCreate": "\u521b\u5efa",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "Web Socket\u7aef\u53e3\u53f7\uff1a",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "\u6062\u590d\u64ad\u653e",
@@ -591,8 +433,12 @@
"HeaderProgram": "\u7a0b\u5e8f",
"HeaderClients": "\u5ba2\u6237\u7aef",
"LabelCompleted": "\u5b8c\u6210",
+ "LabelFailed": "\u5931\u8d25",
"LabelSkipped": "\u8df3\u8fc7",
"HeaderEpisodeOrganization": "\u5267\u96c6\u6574\u7406",
+ "LabelSeries": "\u7535\u89c6\u5267\uff1a",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "\u6700\u540e\u4e00\u96c6\u6570\u5b57\uff1a",
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u8981\u591a\u96c6\u6587\u4ef6",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "\u79fb\u52a8",
"LabelTransferMethodHelp": "\u4ece\u76d1\u63a7\u6587\u4ef6\u5939\u590d\u5236\u6216\u79fb\u52a8\u6587\u4ef6",
"HeaderLatestNews": "\u6700\u65b0\u6d88\u606f",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "\u8fd0\u884c\u7684\u4efb\u52a1",
"HeaderActiveDevices": "\u6d3b\u52a8\u7684\u8bbe\u5907",
"HeaderPendingInstallations": "\u7b49\u5f85\u5b89\u88c5",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "\u73b0\u5728\u91cd\u542f",
"ButtonRestart": "\u91cd\u542f",
"ButtonShutdown": "\u5173\u673a",
"ButtonUpdateNow": "\u73b0\u5728\u66f4\u65b0",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "\u8bf7\u5173\u95ed\u670d\u52a1\u5668\u5e76\u624b\u52a8\u66f4\u65b0\u3002",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "\u786e\u5b9a\u7531\u670d\u52a1\u5668\u6d3b\u52a8\u4fe1\u53f7\u7684\u95f4\u9694\u79d2\u6570\u3002",
"LabelDefaultUser": "\u9ed8\u8ba4\u7528\u6237\uff1a",
"LabelDefaultUserHelp": "\u786e\u5b9a\u54ea\u4e9b\u7528\u6237\u5a92\u4f53\u5e93\u5c06\u663e\u793a\u5728\u8fde\u63a5\u8bbe\u5907\u4e0a\u3002\u8fd9\u53ef\u4ee5\u4e3a\u6bcf\u4e2a\u8bbe\u5907\u63d0\u4f9b\u4e0d\u540c\u7684\u7528\u6237\u914d\u7f6e\u6587\u4ef6\u3002",
+ "HeaderPlaybackSettings": "\u64ad\u653e\u8bbe\u7f6e",
"TitleDlna": "DLNA",
- "TitleChannels": "\u9891\u9053",
"HeaderServerSettings": "\u670d\u52a1\u5668\u8bbe\u7f6e",
"LabelWeatherDisplayLocation": "\u5929\u6c14\u9884\u62a5\u663e\u793a\u4f4d\u7f6e\uff1a",
"LabelWeatherDisplayLocationHelp": "\u7f8e\u56fd\u90ae\u653f\u7f16\u7801\/\u57ce\u5e02\uff0c\u7701\uff0c\u56fd\u5bb6\/\u57ce\u5e02\uff0c\u56fd\u5bb6",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "\u7981\u7528\u5ba2\u6237\u7aef\u65f6\uff0c\u4f1a\u51fa\u73b0\u53ef\u89c6\u5316\u7528\u6237\u9009\u62e9\u767b\u5f55\u754c\u9762\u3002",
"OptionOtherApps": "\u5176\u4ed6\u5e94\u7528\u7a0b\u5e8f",
"OptionMobileApps": "\u624b\u673a\u5e94\u7528\u7a0b\u5e8f",
+ "TabNotifications": "\u901a\u77e5",
"HeaderNotificationList": "\u70b9\u51fb\u901a\u77e5\u6765\u914d\u7f6e\u5b83\u7684\u53d1\u9001\u9009\u9879\u3002",
+ "LabelNotificationEnabled": "\u542f\u7528\u6b64\u901a\u77e5",
+ "NotificationOptionVideoPlayback": "\u89c6\u9891\u5f00\u59cb\u64ad\u653e",
+ "NotificationOptionAudioPlayback": "\u97f3\u9891\u5f00\u59cb\u64ad\u653e",
+ "NotificationOptionGamePlayback": "\u6e38\u620f\u5f00\u59cb",
+ "NotificationOptionNewLibraryContent": "\u6dfb\u52a0\u65b0\u5185\u5bb9",
+ "NotificationOptionServerRestartRequired": "\u9700\u8981\u91cd\u65b0\u542f\u52a8\u670d\u52a1\u5668",
+ "LabelMonitorUsers": "\u76d1\u63a7\u6d3b\u52a8\uff1a",
+ "LabelSendNotificationToUsers": "\u53d1\u9001\u901a\u77e5\u81f3\uff1a",
+ "LabelUseNotificationServices": "\u4f7f\u7528\u4ee5\u4e0b\u670d\u52a1\uff1a",
"NotificationOptionApplicationUpdateAvailable": "\u6709\u53ef\u7528\u7684\u5e94\u7528\u7a0b\u5e8f\u66f4\u65b0",
"NotificationOptionApplicationUpdateInstalled": "\u5e94\u7528\u7a0b\u5e8f\u66f4\u65b0\u5df2\u5b89\u88c5",
"NotificationOptionPluginUpdateInstalled": "\u63d2\u4ef6\u66f4\u65b0\u5df2\u5b89\u88c5",
"NotificationOptionPluginInstalled": "\u63d2\u4ef6\u5df2\u5b89\u88c5",
"NotificationOptionPluginUninstalled": "\u63d2\u4ef6\u5df2\u5378\u8f7d",
- "NotificationOptionVideoPlayback": "\u89c6\u9891\u5f00\u59cb\u64ad\u653e",
- "NotificationOptionAudioPlayback": "\u97f3\u9891\u5f00\u59cb\u64ad\u653e",
- "NotificationOptionGamePlayback": "\u6e38\u620f\u5f00\u59cb",
- "NotificationOptionVideoPlaybackStopped": "\u89c6\u9891\u64ad\u653e\u505c\u6b62",
- "NotificationOptionAudioPlaybackStopped": "\u97f3\u9891\u64ad\u653e\u505c\u6b62",
- "NotificationOptionGamePlaybackStopped": "\u6e38\u620f\u505c\u6b62",
"NotificationOptionTaskFailed": "\u8ba1\u5212\u4efb\u52a1\u5931\u8d25",
"NotificationOptionInstallationFailed": "\u5b89\u88c5\u5931\u8d25",
- "NotificationOptionNewLibraryContent": "\u6dfb\u52a0\u65b0\u5185\u5bb9",
- "NotificationOptionNewLibraryContentMultiple": "\u65b0\u7684\u5185\u5bb9\u52a0\u5165\uff08\u591a\u4e2a\uff09",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "\u9700\u8981\u91cd\u65b0\u542f\u52a8\u670d\u52a1\u5668",
- "LabelNotificationEnabled": "\u542f\u7528\u6b64\u901a\u77e5",
- "LabelMonitorUsers": "\u76d1\u63a7\u6d3b\u52a8\uff1a",
- "LabelSendNotificationToUsers": "\u53d1\u9001\u901a\u77e5\u81f3\uff1a",
- "LabelUseNotificationServices": "\u4f7f\u7528\u4ee5\u4e0b\u670d\u52a1\uff1a",
"CategoryUser": "\u7528\u6237",
"CategorySystem": "\u7cfb\u7edf",
- "CategoryApplication": "\u5e94\u7528\u7a0b\u5e8f",
- "CategoryPlugin": "\u63d2\u4ef6",
"LabelMessageTitle": "\u6d88\u606f\u6807\u9898\uff1a",
"LabelAvailableTokens": "\u53ef\u7528\u4ee4\u724c\uff1a",
"AdditionalNotificationServices": "\u6d4f\u89c8\u63d2\u4ef6\u76ee\u5f55\u5b89\u88c5\u989d\u5916\u7684\u901a\u77e5\u8bbf\u95ee\u3002",
+ "LabelSelectUsers": "\u9009\u62e9\u7528\u6237\uff1a",
"OptionAllUsers": "\u6240\u6709\u7528\u6237",
"OptionAdminUsers": "\u7ba1\u7406\u5458",
"OptionCustomUsers": "\u81ea\u5b9a\u4e49",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "\u53f3",
"ButtonBack": "\u8fd4\u56de",
"ButtonInfo": "\u8be6\u60c5",
- "ButtonOsd": "\u5728\u5c4f\u5e55\u4e0a\u663e\u793a",
"ButtonPageUp": "\u4e0a\u4e00\u9875",
"ButtonPageDown": "\u4e0b\u4e00\u9875",
"PageAbbreviation": "\u9875\u9762",
"ButtonHome": "\u9996\u9875",
- "ButtonSearch": "\u641c\u7d22",
"ButtonSettings": "\u8bbe\u7f6e",
"ButtonTakeScreenshot": "\u5c4f\u5e55\u622a\u56fe",
"ButtonLetterUp": "\u4e0a\u4e00\u5b57\u6bcd",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "\u5b57\u6bcd\u6309\u952e",
"TabNowPlaying": "\u73b0\u5728\u64ad\u653e",
"TabNavigation": "\u5bfc\u822a",
- "TabControls": "\u63a7\u5236",
+ "ButtonFullscreen": "\u5207\u6362\u5168\u5c4f",
"ButtonScenes": "\u573a\u666f",
"ButtonSubtitles": "\u5b57\u5e55",
+ "ButtonAudioTracks": "\u97f3\u8f68",
+ "ButtonPreviousTrack": "\u4e0a\u4e00\u97f3\u8f68",
+ "ButtonNextTrack": "\u4e0b\u4e00\u97f3\u8f68",
"ButtonStop": "\u505c\u6b62",
"ButtonPause": "\u6682\u505c",
- "ButtonNext": "\u4e0b\u4e00\u4e2a",
- "ButtonPrevious": "\u4e0a\u4e00\u4e2a",
"LabelGroupMoviesIntoCollections": "\u6279\u91cf\u6dfb\u52a0\u7535\u5f71\u5230\u5408\u96c6",
"LabelGroupMoviesIntoCollectionsHelp": "\u5f53\u663e\u793a\u7684\u7535\u5f71\u5217\u8868\u65f6\uff0c\u5c5e\u4e8e\u4e00\u4e2a\u5408\u96c6\u7535\u5f71\u5c06\u663e\u793a\u4e3a\u4e00\u4e2a\u5206\u7ec4\u3002",
+ "CategoryApplication": "\u5e94\u7528\u7a0b\u5e8f",
+ "CategoryPlugin": "\u63d2\u4ef6",
"NotificationOptionPluginError": "\u63d2\u4ef6\u5931\u8d25",
+ "TabControls": "\u63a7\u5236",
"ButtonVolumeUp": "\u52a0\u5927\u97f3\u91cf",
"ButtonVolumeDown": "\u964d\u4f4e\u97f3\u91cf",
"ButtonMute": "\u9759\u97f3",
"HeaderLatestMedia": "\u6700\u65b0\u5a92\u4f53",
+ "OptionNoSubtitles": "\u65e0\u5b57\u5e55",
"OptionSpecialFeatures": "\u7279\u6b8a\u529f\u80fd",
+ "ChannelAccessHelp": "\u9009\u62e9\u5171\u4eab\u7ed9\u6b64\u7528\u6237\u7684\u9891\u9053\u3002\u7ba1\u7406\u5458\u80fd\u4f7f\u7528\u5a92\u4f53\u8d44\u6599\u7ba1\u7406\u5668\u6765\u7f16\u8f91\u6240\u6709\u9891\u9053\u3002",
"HeaderCollections": "\u5408\u96c6",
"LabelProfileCodecsHelp": "\u4ee5\u9017\u53f7\u5206\u9694\u3002\u7559\u7a7a\u5219\u9002\u7528\u4e8e\u6240\u6709\u7f16\u89e3\u7801\u5668\u3002",
"LabelProfileContainersHelp": "\u4ee5\u9017\u53f7\u5206\u9694\u3002\u7559\u7a7a\u5219\u9002\u7528\u4e8e\u6240\u6709\u5a92\u4f53\u8f7d\u4f53\u3002",
"HeaderResponseProfile": "\u54cd\u5e94\u914d\u7f6e",
"LabelType": "\u7c7b\u578b\uff1a",
- "LabelPersonRole": "\u89d2\u8272\uff1a",
- "LabelPersonRoleHelp": "\u89d2\u8272\u7684\u4f5c\u7528\u662f\u4e00\u822c\u53ea\u9002\u7528\u4e8e\u6f14\u5458\u3002",
"LabelProfileContainer": "\u5a92\u4f53\u8f7d\u4f53\uff1a",
"LabelProfileVideoCodecs": "\u89c6\u9891\u7f16\u89e3\u7801\u5668\uff1a",
"LabelProfileAudioCodecs": "\u97f3\u9891\u7f16\u89e3\u7801\u5668\uff1a",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "\u5982\u679c\u542f\u7528\uff0c\u6240\u6709\u89c6\u9891\u5728DIDL\u4e2d\u663e\u793a\u4e3a\u201cobject.item.videoItem\u201d\uff0c\u800c\u4e0d\u662f\u4e00\u4e2a\u66f4\u5177\u4f53\u7684\u7c7b\u578b\uff0c\u5982\u201cobject.item.videoItem.movie \u201d \u3002",
"LabelSupportedMediaTypes": "\u652f\u6301\u7684\u5a92\u4f53\u7c7b\u578b\uff1a",
"TabIdentification": "\u8bc6\u522b",
- "HeaderIdentification": "\u8eab\u4efd\u8bc6\u522b",
"TabDirectPlay": "\u76f4\u63a5\u64ad\u653e",
"TabContainers": "\u5a92\u4f53\u8f7d\u4f53",
"TabCodecs": "\u7f16\u89e3\u7801\u5668",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "\u6700\u5927\u6bd4\u7279\u7387\uff1a",
"LabelMaxBitrateHelp": "\u6307\u5b9a\u5728\u5e26\u5bbd\u53d7\u9650\u7684\u73af\u5883\u6700\u5927\u6bd4\u7279\u7387\uff0c\u6216\u8005\u8bbe\u5907\u6309\u5b83\u81ea\u5df1\u7684\u6700\u5927\u9650\u5ea6\u8fd0\u4f5c\u3002",
- "LabelMaxStreamingBitrate": "\u6700\u5927\u5a92\u4f53\u6d41\u6bd4\u7279\u7387\uff1a",
- "LabelMaxStreamingBitrateHelp": "\u8f6c\u6362\u5a92\u4f53\u6d41\u65f6\uff0c\u8bf7\u6307\u5b9a\u4e00\u4e2a\u6700\u5927\u6bd4\u7279\u7387\u3002",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "\u6700\u5927\u540c\u6b65\u6bd4\u7279\u7387\uff1a",
- "LabelMaxStaticBitrateHelp": "\u540c\u6b65\u7684\u9ad8\u54c1\u8d28\u7684\u5185\u5bb9\u65f6\uff0c\u8bf7\u6307\u5b9a\u4e00\u4e2a\u6700\u5927\u6bd4\u7279\u7387\u3002",
- "LabelMusicStaticBitrate": "\u97f3\u4e50\u540c\u6b65\u6bd4\u7279\u7387\uff1a",
- "LabelMusicStaticBitrateHelp": "\u8bf7\u6307\u5b9a\u4e00\u4e2a\u540c\u6b65\u97f3\u4e50\u65f6\u7684\u6700\u5927\u6bd4\u7279\u7387\u3002",
- "LabelMusicStreamingTranscodingBitrate": "\u97f3\u4e50\u8f6c\u7801\u7684\u6bd4\u7279\u7387\uff1a",
- "LabelMusicStreamingTranscodingBitrateHelp": "\u6307\u5b9a\u97f3\u4e50\u8f6c\u7801\u65f6\u7684\u6700\u5927\u6bd4\u7279\u7387",
"OptionIgnoreTranscodeByteRangeRequests": "\u5ffd\u7565\u8f6c\u7801\u5b57\u8282\u8303\u56f4\u8bf7\u6c42",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "\u5982\u679c\u542f\u7528\uff0c\u8fd9\u4e9b\u8bf7\u6c42\u4f1a\u88ab\u5151\u73b0\uff0c\u4f46\u4f1a\u5ffd\u7565\u7684\u5b57\u8282\u8303\u56f4\u6807\u5934\u3002",
"LabelFriendlyName": "\u597d\u8bb0\u7684\u540d\u79f0",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "\u8fd9\u662f\u4e00\u4e9b\u8bbe\u5907\u5fc5\u9700\u7684\uff0c\u4e0d\u7528\u8d76\u65f6\u95f4\u3002",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "\u4e0b\u8f7d\u54ea\u4e00\u9879\u7684\u5b57\u5e55\uff1a",
- "MessageNoChapterProviders": "\u5b89\u88c5\u4e00\u4e2a\u7ae0\u8282\u63d0\u4f9b\u8005\u7684\u63d2\u4ef6\uff0c\u4f8b\u5982ChapterDb\u3002\u4ee5\u4fbf\u542f\u7528\u989d\u5916\u7684\u7ae0\u8282\u9009\u9879\u3002",
- "LabelSkipIfGraphicalSubsPresent": "\u5982\u679c\u89c6\u9891\u5df2\u7ecf\u5305\u542b\u56fe\u5f62\u5b57\u5e55\u5219\u8df3\u8fc7",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "\u5b57\u5e55",
- "TabChapters": "\u7ae0\u8282",
- "HeaderDownloadChaptersFor": "\u4e0b\u8f7d\u7ae0\u8282\u540d\u79f0\uff1a",
"LabelOpenSubtitlesUsername": "Open Subtitles\u7684\u7528\u6237\u540d\uff1a",
"LabelOpenSubtitlesPassword": "Open Subtitles\u7684\u5bc6\u7801\uff1a",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "\u64ad\u653e\u9ed8\u8ba4\u97f3\u8f68\u65e0\u8bba\u662f\u4ec0\u4e48\u8bed\u8a00",
- "LabelSubtitlePlaybackMode": "\u5b57\u5e55\u6a21\u5f0f\uff1a",
"LabelDownloadLanguages": "\u4e0b\u8f7d\u8bed\u8a00\uff1a",
"ButtonRegister": "\u6ce8\u518c",
+ "LabelSkipIfGraphicalSubsPresent": "\u5982\u679c\u89c6\u9891\u5df2\u7ecf\u5305\u542b\u56fe\u5f62\u5b57\u5e55\u5219\u8df3\u8fc7",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "\u5982\u679c\u9ed8\u8ba4\u97f3\u8f68\u7684\u8bed\u8a00\u548c\u4e0b\u8f7d\u8bed\u8a00\u4e00\u6837\u5219\u8df3\u8fc7",
"LabelSkipIfAudioTrackPresentHelp": "\u53d6\u6d88\u6b64\u9009\u9879\uff0c\u5219\u786e\u4fdd\u6240\u6709\u7684\u89c6\u9891\u90fd\u4e0b\u8f7d\u5b57\u5e55\uff0c\u65e0\u8bba\u97f3\u9891\u8bed\u8a00\u662f\u5426\u4e00\u81f4\u3002",
+ "NotificationOptionNewLibraryContentMultiple": "\u65b0\u7684\u5185\u5bb9\u52a0\u5165\uff08\u591a\u4e2a\uff09",
"HeaderSendMessage": "\u53d1\u9001\u6d88\u606f",
"ButtonSend": "\u53d1\u9001",
"LabelMessageText": "\u6d88\u606f\u6587\u672c\uff1a",
+ "LabelService": "\u670d\u52a1\uff1a",
+ "LabelStatus": "\u72b6\u6001\uff1a",
+ "LabelVersion": "\u7248\u672c\uff1a",
+ "LabelLastResult": "\u6700\u7ec8\u7ed3\u679c\uff1a",
+ "ButtonOsd": "\u5728\u5c4f\u5e55\u4e0a\u663e\u793a",
"MessageNoAvailablePlugins": "\u6ca1\u6709\u53ef\u7528\u7684\u63d2\u4ef6\u3002",
"LabelDisplayPluginsFor": "\u663e\u793a\u63d2\u4ef6\uff1a",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "\u5267\u96c6\u540d\u79f0",
- "LabelSeriesNamePlain": "\u7535\u89c6\u5267\u540d\u79f0",
"ValueSeriesNamePeriod": "\u7535\u89c6\u5267.\u540d\u79f0",
"ValueSeriesNameUnderscore": "\u7535\u89c6\u5267_\u540d\u79f0",
"ValueEpisodeNamePeriod": "\u5267\u96c6.\u540d\u79f0",
"ValueEpisodeNameUnderscore": "\u5267\u96c6_\u540d\u79f0",
- "LabelSeasonNumberPlain": "\u591a\u5c11\u5b63",
- "LabelEpisodeNumberPlain": "\u591a\u5c11\u96c6",
- "LabelEndingEpisodeNumberPlain": "\u6700\u540e\u4e00\u96c6\u6570\u5b57",
"HeaderTypeText": "\u8f93\u5165\u6587\u672c",
"LabelTypeText": "\u6587\u672c",
+ "OptionDefaultSubtitles": "\u9ed8\u8ba4",
+ "OptionOnlyForcedSubtitles": "\u4ec5\u7528\u5f3a\u5236\u5b57\u5e55",
+ "OptionAlwaysPlaySubtitles": "\u603b\u662f\u64ad\u653e\u5b57\u5e55",
+ "OptionDefaultSubtitlesHelp": "\u5339\u914d\u5b57\u5e55\u8bed\u8a00\u504f\u597d\uff0c\u5f53\u97f3\u9891\u662f\u5916\u8bed\u65f6\u5b57\u5e55\u5c06\u88ab\u52a0\u8f7d\u3002",
+ "OptionOnlyForcedSubtitlesHelp": "\u53ea\u6709\u5b57\u5e55\u6807\u8bb0\u4e3a\u5f3a\u5236\u5c06\u88ab\u52a0\u8f7d\u3002",
+ "OptionAlwaysPlaySubtitlesHelp": "\u5339\u914d\u5b57\u5e55\u8bed\u8a00\u504f\u597d\uff0c\u65e0\u8bba\u97f3\u9891\u662f\u4ec0\u4e48\u8bed\u5b57\u5e55\u90fd\u5c06\u88ab\u52a0\u8f7d\u3002",
+ "OptionNoSubtitlesHelp": "\u5b57\u5e55\u5c06\u4e0d\u4f1a\u88ab\u9ed8\u8ba4\u52a0\u8f7d\u3002",
+ "TangibleSoftwareMessage": "\u901a\u8fc7\u6350\u8d60\u7684\u8bb8\u53ef\u8bc1\u4f7f\u7528Java \/ C\uff03\u8f6c\u6362\u5668\u5207\u5b9e\u53ef\u884c\u7684\u89e3\u51b3\u65b9\u6848\u3002",
+ "HeaderCredits": "\u5236\u4f5c\u4eba\u5458\u540d\u5355",
+ "TabCollections": "\u5408\u96c6",
+ "TabFavorites": "\u6211\u7684\u6700\u7231",
+ "TabMyLibrary": "\u6211\u7684\u5a92\u4f53\u5e93",
+ "LabelCustomizeOptionsPerMediaType": "\u81ea\u5b9a\u4e49\u5a92\u4f53\u7c7b\u578b\uff1a",
+ "LabelPlayDefaultAudioTrack": "\u64ad\u653e\u9ed8\u8ba4\u97f3\u8f68\u65e0\u8bba\u662f\u4ec0\u4e48\u8bed\u8a00",
+ "LabelSubtitlePlaybackMode": "\u5b57\u5e55\u6a21\u5f0f\uff1a",
+ "TabOther": "\u5176\u4ed6",
+ "NotificationOptionVideoPlaybackStopped": "\u89c6\u9891\u64ad\u653e\u505c\u6b62",
+ "NotificationOptionAudioPlaybackStopped": "\u97f3\u9891\u64ad\u653e\u505c\u6b62",
+ "NotificationOptionGamePlaybackStopped": "\u6e38\u620f\u505c\u6b62",
"HeaderSearchForSubtitles": "\u641c\u7d22\u5b57\u5e55",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "\u641c\u7d22\u65e0\u7ed3\u679c",
"TabDisplay": "\u663e\u793a",
"TabLanguages": "\u8bed\u8a00",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "\u542f\u7528\u4e3b\u9898\u6b4c",
"LabelEnableBackdrops": "\u542f\u7528\u80cc\u666f\u56fe",
"LabelEnableThemeSongsHelp": "\u5982\u679c\u542f\u7528\uff0c\u5f53\u6d4f\u89c8\u5a92\u4f53\u5e93\u65f6\u4e3b\u9898\u6b4c\u5c06\u5728\u540e\u53f0\u64ad\u653e\u3002",
"LabelEnableBackdropsHelp": "\u5982\u679c\u542f\u7528\uff0c\u5f53\u6d4f\u89c8\u5a92\u4f53\u5e93\u65f6\u80cc\u666f\u56fe\u5c06\u4f5c\u4e3a\u4e00\u4e9b\u9875\u9762\u7684\u80cc\u666f\u663e\u793a\u3002",
- "HeaderHomePage": "\u9996\u9875",
- "HeaderSettingsForThisDevice": "\u8bbe\u7f6e\u6b64\u8bbe\u5907",
"OptionAuto": "\u81ea\u52a8",
"OptionYes": "\u662f",
"OptionNo": "\u4e0d",
- "HeaderOptions": "\u9009\u9879",
- "HeaderIdentificationResult": "\u8bc6\u522b\u7ed3\u679c",
"LabelHomePageSection1": "\u9996\u9875\u7b2c1\u533a\uff1a",
"LabelHomePageSection2": "\u9996\u9875\u7b2c2\u533a\uff1a",
"LabelHomePageSection3": "\u9996\u9875\u7b2c3\u533a\uff1a",
- "LabelHomePageSection4": "\u9996\u9875\u7b2c4\u533a\uff1a",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "\u6062\u590d\u64ad\u653e",
"OptionLatestMedia": "\u6700\u65b0\u5a92\u4f53",
- "OptionLatestChannelMedia": "\u6700\u65b0\u9891\u9053\u9879\u76ee",
- "HeaderLatestChannelItems": "\u6700\u65b0\u9891\u9053\u9879\u76ee",
"OptionNone": "\u6ca1\u6709",
"HeaderLiveTv": "\u7535\u89c6\u76f4\u64ad",
"HeaderReports": "\u62a5\u544a",
"HeaderMetadataManager": "\u5a92\u4f53\u8d44\u6599\u7ba1\u7406",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "\u9891\u9053\u5185\u5bb9\u52a0\u8f7d\u4e2d......",
- "MessageLoadingContent": "\u6b63\u5728\u8f7d\u5165\u5185\u5bb9....",
"ButtonMarkRead": "\u6807\u8bb0\u5df2\u8bfb",
"OptionDefaultSort": "\u9ed8\u8ba4",
"OptionCommunityMostWatchedSort": "\u6700\u53d7\u77a9\u76ee",
"TabNextUp": "\u4e0b\u4e00\u4e2a",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "\u6ca1\u6709\u53ef\u7528\u7684\u7535\u5f71\u5efa\u8bae\u3002\u5f00\u59cb\u89c2\u770b\u4f60\u7684\u7535\u5f71\u5e76\u8fdb\u884c\u8bc4\u5206\uff0c\u518d\u56de\u8fc7\u5934\u6765\u67e5\u770b\u4f60\u7684\u5efa\u8bae\u3002",
"MessageNoCollectionsAvailable": "\u5408\u96c6\u8ba9\u4f60\u4eab\u53d7\u7535\u5f71\uff0c\u7cfb\u5217\uff0c\u76f8\u518c\uff0c\u4e66\u7c4d\u548c\u6e38\u620f\u4e2a\u6027\u5316\u7684\u5206\u7ec4\u3002\u5355\u51fb\u201c+\u201d\u6309\u94ae\u5f00\u59cb\u521b\u5efa\u5408\u96c6\u3002",
- "MessageNoPlaylistsAvailable": "\u64ad\u653e\u5217\u8868\u5141\u8bb8\u60a8\u521b\u5efa\u4e00\u4e2a\u5185\u5bb9\u5217\u8868\u6765\u8fde\u7eed\u64ad\u653e\u3002\u5c06\u9879\u76ee\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\uff0c\u53f3\u952e\u5355\u51fb\u6216\u70b9\u51fb\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\u201d\u3002",
- "MessageNoPlaylistItemsAvailable": "\u64ad\u653e\u5217\u8868\u76ee\u524d\u662f\u7a7a\u7684\u3002",
+ "ButtonClose": "\u5173\u95ed",
+ "HeaderConfirmDeletion": "\u786e\u8ba4\u5220\u9664",
+ "HeaderHomePage": "\u9996\u9875",
+ "HeaderSettingsForThisDevice": "\u8bbe\u7f6e\u6b64\u8bbe\u5907",
"ButtonDismiss": "\u89e3\u6563",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "\u9891\u9053",
"LabelChannelStreamQuality": "\u9996\u9009\u7684\u4e92\u8054\u7f51\u6d41\u5a92\u4f53\u8d28\u91cf\uff1a",
"LabelChannelStreamQualityHelp": "\u5728\u4f4e\u5e26\u5bbd\u73af\u5883\u4e0b\uff0c\u9650\u5236\u8d28\u91cf\u6709\u52a9\u4e8e\u786e\u4fdd\u987a\u7545\u7684\u6d41\u5a92\u4f53\u4f53\u9a8c\u3002",
"OptionBestAvailableStreamQuality": "\u6700\u597d\u7684",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "\u8fc7\u591a\u4e45\u5220\u9664\u5185\u5bb9: (\u5929\u6570)",
"LabelChannelDownloadAgeHelp": "\u4e0b\u8f7d\u7684\u5185\u5bb9\u8d85\u8fc7\u6b64\u671f\u9650\u5c06\u88ab\u5220\u9664\u3002\u5b83\u4ecd\u53ef\u901a\u8fc7\u4e92\u8054\u7f51\u6d41\u5a92\u4f53\u64ad\u653e\u3002",
"ChannelSettingsFormHelp": "\u5728\u63d2\u4ef6\u76ee\u5f55\u91cc\u5b89\u88c5\u9891\u9053\uff0c\u4f8b\u5982\uff1aTrailers \u548c Vimeo",
- "ButtonOptions": "\u9009\u9879",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "\u63d0\u4ea4",
"ViewTypeMovies": "\u7535\u5f71",
"ViewTypeTvShows": "\u7535\u89c6",
"ViewTypeGames": "\u6e38\u620f",
"ViewTypeMusic": "\u97f3\u4e50",
- "ViewTypeMusicGenres": "\u98ce\u683c",
- "ViewTypeMusicArtists": "\u827a\u672f\u5bb6",
"ViewTypeBoxSets": "\u5408\u96c6",
- "ViewTypeChannels": "\u9891\u9053",
- "ViewTypeLiveTV": "\u7535\u89c6\u76f4\u64ad",
- "ViewTypeLiveTvNowPlaying": "\u73b0\u5728\u64ad\u653e",
- "ViewTypeLatestGames": "\u6700\u65b0\u6e38\u620f",
- "ViewTypeRecentlyPlayedGames": "\u6700\u8fd1\u64ad\u653e",
- "ViewTypeGameFavorites": "\u6211\u7684\u6700\u7231",
- "ViewTypeGameSystems": "\u6e38\u620f\u7cfb\u7edf",
- "ViewTypeGameGenres": "\u98ce\u683c",
- "ViewTypeTvResume": "\u6062\u590d\u64ad\u653e",
- "ViewTypeTvNextUp": "\u4e0b\u4e00\u4e2a",
- "ViewTypeTvLatest": "\u6700\u65b0",
- "ViewTypeTvShowSeries": "\u7535\u89c6\u5267",
- "ViewTypeTvGenres": "\u98ce\u683c",
- "ViewTypeTvFavoriteSeries": "\u6700\u559c\u6b22\u7684\u7535\u89c6\u5267",
- "ViewTypeTvFavoriteEpisodes": "\u6700\u559c\u6b22\u7684\u5267\u96c6",
- "ViewTypeMovieResume": "\u6062\u590d\u64ad\u653e",
- "ViewTypeMovieLatest": "\u6700\u65b0",
- "ViewTypeMovieMovies": "\u7535\u5f71",
- "ViewTypeMovieCollections": "\u5408\u96c6",
- "ViewTypeMovieFavorites": "\u6536\u85cf\u5939",
- "ViewTypeMovieGenres": "\u98ce\u683c",
- "ViewTypeMusicLatest": "\u6700\u65b0",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "\u4e13\u8f91",
- "ViewTypeMusicAlbumArtists": "\u4e13\u8f91\u827a\u672f\u5bb6",
"HeaderOtherDisplaySettings": "\u663e\u793a\u8bbe\u7f6e",
- "ViewTypeMusicSongs": "\u6b4c\u66f2",
- "ViewTypeMusicFavorites": "\u6211\u7684\u6700\u7231",
- "ViewTypeMusicFavoriteAlbums": "\u6700\u7231\u7684\u4e13\u8f91",
- "ViewTypeMusicFavoriteArtists": "\u6700\u7231\u7684\u827a\u672f\u5bb6",
- "ViewTypeMusicFavoriteSongs": "\u6700\u7231\u7684\u6b4c\u66f2",
- "HeaderMyViews": "\u6211\u7684\u754c\u9762",
"LabelSelectFolderGroups": "\u4ece\u4ee5\u4e0b\u6587\u4ef6\u5939\u89c6\u56fe\u81ea\u52a8\u5206\u7ec4\u5185\u5bb9\uff0c\u4f8b\u5982\u7535\u5f71\uff0c\u97f3\u4e50\u548c\u7535\u89c6\uff1a",
"LabelSelectFolderGroupsHelp": "\u672a\u9009\u4e2d\u7684\u6587\u4ef6\u5939\u5c06\u663e\u793a\u81ea\u5e26\u7684\u89c6\u56fe\u3002",
+ "ViewTypeChannels": "\u9891\u9053",
+ "ViewTypeLiveTV": "\u7535\u89c6\u76f4\u64ad",
"OptionDisplayAdultContent": "\u663e\u793a\u6210\u4eba\u5185\u5bb9",
+ "MessageNoChapterProviders": "\u5b89\u88c5\u4e00\u4e2a\u7ae0\u8282\u63d0\u4f9b\u8005\u7684\u63d2\u4ef6\uff0c\u4f8b\u5982ChapterDb\u3002\u4ee5\u4fbf\u542f\u7528\u989d\u5916\u7684\u7ae0\u8282\u9009\u9879\u3002",
+ "TabChapters": "\u7ae0\u8282",
+ "HeaderDownloadChaptersFor": "\u4e0b\u8f7d\u7ae0\u8282\u540d\u79f0\uff1a",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "\u5a92\u4f53\u6587\u4ef6\u5939",
+ "LabelHomePageSection4": "\u9996\u9875\u7b2c4\u533a\uff1a",
+ "OptionLatestChannelMedia": "\u6700\u65b0\u9891\u9053\u9879\u76ee",
+ "HeaderLatestChannelItems": "\u6700\u65b0\u9891\u9053\u9879\u76ee",
"TitleRemoteControl": "\u8fdc\u7a0b\u63a7\u5236",
+ "HeaderMyViews": "\u6211\u7684\u754c\u9762",
"OptionLatestTvRecordings": "\u6700\u65b0\u5f55\u5236\u7684\u8282\u76ee",
+ "ButtonRefresh": "\u5237\u65b0",
"LabelProtocolInfo": "\u534f\u8bae\u4fe1\u606f\uff1a",
"LabelProtocolInfoHelp": "\u5f53\u54cd\u5e94\u6765\u81ea\u8bbe\u5907\u7684 GetProtocolInfo\uff08\u83b7\u53d6\u534f\u8bae\u4fe1\u606f\uff09\u8bf7\u6c42\u65f6\uff0c\u8be5\u503c\u5c06\u88ab\u4f7f\u7528\u3002",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "\u540c\u6b65\u7528\u6237\u7684\u89c2\u770b\u65e5\u671f\u5230nfo\u6587\u4ef6:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "\u53d1\u884c\u65e5\u671f\u683c\u5f0f\uff1a",
- "LabelKodiMetadataDateFormatHelp": "Nfo\u7684\u6240\u6709\u65e5\u671f\u5c06\u4f7f\u7528\u8fd9\u79cd\u683c\u5f0f\u88ab\u8bfb\u53d6\u548c\u5199\u5165\u3002",
- "LabelKodiMetadataSaveImagePaths": "\u4fdd\u5b58\u56fe\u50cf\u8def\u5f84\u5728NFO\u6587\u4ef6",
- "LabelKodiMetadataSaveImagePathsHelp": "\u5982\u679c\u4f60\u7684\u56fe\u50cf\u6587\u4ef6\u540d\u4e0d\u7b26\u5408Kodi\u7684\u89c4\u8303\uff0c\u63a8\u8350\u4f7f\u7528\u3002",
- "LabelKodiMetadataEnablePathSubstitution": "\u542f\u7528\u8def\u5f84\u66ff\u6362",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "\u5141\u8bb8\u56fe\u50cf\u7684\u8def\u5f84\u66ff\u6362\u4f7f\u7528\u670d\u52a1\u5668\u7684\u8def\u5f84\u66ff\u6362\u8bbe\u7f6e\u3002",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "\u67e5\u770b\u8def\u5f84\u66ff\u6362",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "\u663e\u793a\u5408\u96c6\u89c6\u56fe\u6765\u5448\u73b0\u7535\u5f71\u5408\u96c6",
- "LabelDisplayCollectionsViewHelp": "\u8fd9\u5c06\u521b\u5efa\u4e00\u4e2a\u5355\u72ec\u7684\u89c6\u56fe\u6765\u663e\u793a\u60a8\u5df2\u7ecf\u521b\u5efa\u6216\u8bbf\u95ee\u7684\u5408\u96c6\u3002\u8981\u521b\u5efa\u5408\u96c6\uff0c\u8bf7\u5728\u4efb\u4e00\u7535\u5f71\u4e0a\u70b9\u51fb\u53f3\u952e\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u5408\u96c6\u201d\u3002",
- "LabelKodiMetadataEnableExtraThumbs": "\u590d\u5236\u540c\u4eba\u753b\u5230extrathumbs\u6587\u4ef6\u5939",
- "LabelKodiMetadataEnableExtraThumbsHelp": "\u4e3a\u4e86\u6700\u5927\u5316\u517c\u5bb9Kodi\u76ae\u80a4\uff0c\u4e0b\u8f7d\u7684\u56fe\u7247\u540c\u65f6\u50a8\u5b58\u5728 extrafanart \u548c extrathumbs \u6587\u4ef6\u5939\u3002",
+ "HeaderSubtitles": "\u5b57\u5e55",
"TabServices": "\u670d\u52a1",
"TabLogs": "\u65e5\u5fd7",
"HeaderServerLogFiles": "\u670d\u52a1\u5668\u65e5\u5fd7\u6587\u4ef6\uff1a",
@@ -1029,6 +820,8 @@
"LabelAppName": "APP\u540d\u79f0",
"LabelAppNameExample": "\u4f8b\u5982\uff1a Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "\u7528\u6237",
+ "TabScheduledTasks": "\u8ba1\u5212\u4efb\u52a1",
"HeaderHttpHeaders": "HTTP\u6807\u5934",
"HeaderIdentificationHeader": "\u8eab\u4efd\u8ba4\u8bc1\u6807\u5934",
"LabelValue": "\u6570\u503c\uff1a",
@@ -1041,19 +834,19 @@
"TabFilter": "\u7b5b\u9009",
"ButtonView": "\u89c6\u56fe",
"LabelPageSize": "\u9879\u76ee\u5927\u5c0f\uff1a",
- "LabelPath": "\u8def\u5f84\uff1a",
"LabelView": "\u89c6\u56fe\uff1a",
- "TabUsers": "\u7528\u6237",
- "LabelSortName": "\u6392\u5e8f\u540d\u79f0\uff1a",
- "LabelDateAdded": "\u52a0\u5165\u65e5\u671f\uff1a",
+ "LabelManagement": "\u7ba1\u7406\uff1a",
"HeaderFeatures": "\u529f\u80fd",
"HeaderAdvanced": "\u9ad8\u7ea7",
"ButtonSync": "\u540c\u6b65",
- "TabScheduledTasks": "\u8ba1\u5212\u4efb\u52a1",
"HeaderChapters": "\u7ae0\u8282",
"HeaderResumeSettings": "\u6062\u590d\u64ad\u653e\u8bbe\u7f6e",
"TabSync": "\u540c\u6b65",
"TitleUsers": "\u7528\u6237",
+ "LabelMaxStreamingBitrate": "\u6700\u5927\u5a92\u4f53\u6d41\u6bd4\u7279\u7387\uff1a",
+ "LabelMaxStreamingBitrateHelp": "\u8f6c\u6362\u5a92\u4f53\u6d41\u65f6\uff0c\u8bf7\u6307\u5b9a\u4e00\u4e2a\u6700\u5927\u6bd4\u7279\u7387\u3002",
+ "LabelMaxStaticBitrate": "\u6700\u5927\u540c\u6b65\u6bd4\u7279\u7387\uff1a",
+ "LabelMaxStaticBitrateHelp": "\u540c\u6b65\u7684\u9ad8\u54c1\u8d28\u7684\u5185\u5bb9\u65f6\uff0c\u8bf7\u6307\u5b9a\u4e00\u4e2a\u6700\u5927\u6bd4\u7279\u7387\u3002",
"LabelProtocol": "\u534f\u8bae\uff1a",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http \u76f4\u64ad\u6d41",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "\u5a92\u4f53\u6d41",
"OptionContextStatic": "\u540c\u6b65",
"ButtonAddToPlaylist": "\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868",
+ "MessageNoPlaylistsAvailable": "\u64ad\u653e\u5217\u8868\u5141\u8bb8\u60a8\u521b\u5efa\u4e00\u4e2a\u5185\u5bb9\u5217\u8868\u6765\u8fde\u7eed\u64ad\u653e\u3002\u5c06\u9879\u76ee\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\uff0c\u53f3\u952e\u5355\u51fb\u6216\u70b9\u51fb\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u64ad\u653e\u5217\u8868\u201d\u3002",
+ "MessageNoPlaylistItemsAvailable": "\u64ad\u653e\u5217\u8868\u76ee\u524d\u662f\u7a7a\u7684\u3002",
"TabPlaylists": "\u64ad\u653e\u5217\u8868",
- "ButtonClose": "\u5173\u95ed",
"LabelAllLanguages": "\u6240\u6709\u8bed\u8a00",
"HeaderBrowseOnlineImages": "\u6d4f\u89c8\u5728\u7ebf\u56fe\u7247",
"LabelSource": "\u6765\u6e90",
@@ -1080,7 +874,6 @@
"OptionBox": "\u5305\u88c5\u76d2\u6b63\u9762\u56fe",
"OptionBoxRear": "\u5305\u88c5\u76d2\u80cc\u9762\u56fe",
"OptionDisc": "\u5149\u76d8",
- "OptionIcon": "Icon",
"OptionLogo": "\u6807\u5fd7",
"OptionMenu": "\u83dc\u5355",
"OptionScreenshot": "\u5c4f\u5e55\u622a\u56fe",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "\u672a\u7ecf\u786e\u8ba4\u7684",
"OptionMissingParentalRating": "\u7f3a\u5c11\u5bb6\u957f\u5206\u7ea7",
"OptionStub": "\u5b58\u6839",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "0\u5b63",
"LabelReport": "\u62a5\u544a\uff1a",
"OptionReportSongs": "\u6b4c\u66f2",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "\u827a\u672f\u5bb6",
"OptionReportAlbums": "\u4e13\u8f91",
"OptionReportAdultVideos": "\u6210\u4eba\u89c6\u9891",
+ "ButtonMoreItems": "More",
"HeaderActivity": "\u6d3b\u52a8",
"ScheduledTaskStartedWithName": "{0} \u5f00\u59cb",
"ScheduledTaskCancelledWithName": "{0} \u88ab\u53d6\u6d88",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "\u4e3a {0} \u4e0b\u8f7d\u5b57\u5e55\u5931\u8d25",
"LabelRunningTimeValue": "\u8fd0\u884c\u65f6\u95f4\uff1a {0}",
"LabelIpAddressValue": "Ip \u5730\u5740\uff1a {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "\u7528\u6237\u914d\u7f6e\u5df2\u66f4\u65b0\u4e3a {0}",
"UserCreatedWithName": "\u7528\u6237 {0} \u5df2\u88ab\u521b\u5efa",
"UserPasswordChangedWithName": "\u5df2\u4e3a\u7528\u6237 {0} \u66f4\u6539\u5bc6\u7801",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} \u6210\u529f\u88ab\u6388\u6743",
"FailedLoginAttemptWithUserName": "\u5931\u8d25\u7684\u767b\u5f55\u5c1d\u8bd5\uff0c\u6765\u81ea {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} \u5f00\u59cb\u64ad\u653e {1}",
"UserStoppedPlayingItemWithValues": "{0} \u505c\u6b62\u64ad\u653e {1}",
"AppDeviceValues": "App\uff1a {0}\uff0c\u8bbe\u5907\uff1a {1}",
"ProviderValue": "\u63d0\u4f9b\u8005\uff1a {0}",
+ "HeaderAudio": "\u97f3\u9891",
+ "HeaderVideo": "\u89c6\u9891",
+ "MessageLoadingContent": "\u6b63\u5728\u8f7d\u5165\u5185\u5bb9....",
"LabelChannelDownloadSizeLimit": "\u4e0b\u8f7d\u5927\u5c0f\u9650\u5236(GB)\uff1a",
- "LabelChannelDownloadSizeLimitHelpText": "\u9650\u5236\u9891\u9053\u4e0b\u8f7d\u6587\u4ef6\u5939\u7684\u5927\u5c0f\u3002",
+ "LabelMusicStaticBitrate": "\u97f3\u4e50\u540c\u6b65\u6bd4\u7279\u7387\uff1a",
+ "LabelMusicStaticBitrateHelp": "\u8bf7\u6307\u5b9a\u4e00\u4e2a\u540c\u6b65\u97f3\u4e50\u65f6\u7684\u6700\u5927\u6bd4\u7279\u7387\u3002",
+ "LabelMusicStreamingTranscodingBitrate": "\u97f3\u4e50\u8f6c\u7801\u7684\u6bd4\u7279\u7387\uff1a",
+ "LabelMusicStreamingTranscodingBitrateHelp": "\u6307\u5b9a\u97f3\u4e50\u8f6c\u7801\u65f6\u7684\u6700\u5927\u6bd4\u7279\u7387",
"HeaderRecentActivity": "\u6700\u8fd1\u7684\u6d3b\u52a8",
"HeaderPeople": "\u4eba\u7269",
"HeaderDownloadPeopleMetadataFor": "\u4e0b\u8f7d\u4f20\u8bb0\u548c\u56fe\u50cf\uff1a",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "\u663e\u793a\u4e00\u4e2a\u6587\u4ef6\u5939\u89c6\u56fe\u6765\u5448\u73b0\u5e73\u9762\u5a92\u4f53\u6587\u4ef6\u5939",
"ViewTypeLiveTvRecordingGroups": "\u5f55\u5236",
"ViewTypeLiveTvChannels": "\u9891\u9053",
- "LabelEasyPinCode": "\u7b80\u6613PIN\u7801\uff1a",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "\u542f\u7528\u7b80\u6613PIN\u7801\u767b\u5f55\u5bb6\u5ead\u7f51\u7edc",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "\u5bc6\u7801",
"HeaderLocalAccess": "\u672c\u5730\u8bbf\u95ee",
"HeaderViewOrder": "\u67e5\u770b\u987a\u5e8f",
- "ButtonResetEasyPassword": "\u590d\u4f4d\u7b80\u6613PIN\u7801",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "\u53d1\u884c\u65e5\u671f\uff1a",
+ "LabelEndDate": "\u7ed3\u675f\u65e5\u671f\uff1a",
+ "LabelYear": "\u5e74\uff1a",
+ "FolderTypeMixed": "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",
+ "LabelArtists": "\u827a\u672f\u5bb6\uff1a",
+ "LabelArtistsHelp": "\u72ec\u7acb\u591a\u529f\u80fd\uff1b",
+ "ButtonAdvancedRefresh": "\u9ad8\u7ea7\u5237\u65b0",
+ "LabelPersonRole": "\u89d2\u8272\uff1a",
+ "LabelPersonRoleHelp": "\u89d2\u8272\u7684\u4f5c\u7528\u662f\u4e00\u822c\u53ea\u9002\u7528\u4e8e\u6f14\u5458\u3002",
+ "LabelPath": "\u8def\u5f84\uff1a",
+ "LabelSortName": "\u6392\u5e8f\u540d\u79f0\uff1a",
+ "LabelDateAdded": "\u52a0\u5165\u65e5\u671f\uff1a",
"LabelMetadataRefreshMode": "\u5a92\u4f53\u8d44\u6599\u5237\u65b0\u6a21\u5f0f\uff1a",
"LabelImageRefreshMode": "\u56fe\u7247\u5237\u65b0\u6a21\u5f0f\uff1a",
"OptionDownloadMissingImages": "\u4e0b\u8f7d\u7f3a\u5931\u56fe\u7247",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "\u4efb\u52a1\u4fe1\u606f",
"HeaderIdentifyItem": "\u8bc6\u522b\u9879",
"HeaderIdentifyItemHelp": "\u8f93\u5165\u4e00\u4e2a\u6216\u591a\u4e2a\u641c\u7d22\u6761\u4ef6\u3002\u5220\u9664\u6761\u4ef6\u53ef\u5f97\u5230\u66f4\u591a\u641c\u7d22\u7ed3\u679c\u3002",
- "HeaderConfirmDeletion": "\u786e\u8ba4\u5220\u9664",
"LabelFollowingFileWillBeDeleted": "\u4ee5\u4e0b\u6587\u4ef6\u5c06\u88ab\u5220\u9664\uff1a",
"LabelIfYouWishToContinueWithDeletion": "\u5982\u679c\u4f60\u60f3\u7ee7\u7eed\uff0c\u8bf7\u786e\u8ba4\u8f93\u5165\u7684\u503c\uff1a",
"ButtonIdentify": "\u8bc6\u522b",
"LabelAlbumArtist": "\u4e13\u8f91\u827a\u672f\u5bb6\uff1a",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "\u4e13\u8f91\uff1a",
"LabelCommunityRating": "\u516c\u4f17\u8bc4\u5206\uff1a",
"LabelVoteCount": "\u6295\u7968\u8ba1\u6570\uff1a",
@@ -1187,10 +1000,7 @@
"LabelTagline": "\u53e3\u53f7\uff1a",
"LabelOverview": "\u5185\u5bb9\u6982\u8ff0\uff1a",
"LabelShortOverview": "\u7b80\u4ecb\uff1a",
- "LabelReleaseDate": "\u53d1\u884c\u65e5\u671f\uff1a",
- "LabelYear": "\u5e74\uff1a",
"LabelPlaceOfBirth": "\u51fa\u751f\u5730\uff1a",
- "LabelEndDate": "\u7ed3\u675f\u65e5\u671f\uff1a",
"LabelAirDate": "\u64ad\u51fa\u65e5\u671f\uff1a",
"LabelAirTime:": "\u64ad\u51fa\u65f6\u95f4\uff1a",
"LabelRuntimeMinutes": "\u64ad\u653e\u65f6\u957f\uff08\u5206\u949f\uff09\uff1a",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "\u5a92\u4f53\u8d44\u6599\u8bbe\u7f6e",
"LabelLockItemToPreventChanges": "\u9501\u5b9a\u6b64\u9879\u76ee\u9632\u6b62\u6539\u52a8",
"MessageLeaveEmptyToInherit": "\u7559\u7a7a\u5219\u7ee7\u627f\u7236\u9879\u6216\u5168\u5c40\u9ed8\u8ba4\u503c\u8bbe\u7f6e\u3002",
- "TabDonate": "\u6350\u8d60",
"HeaderDonationType": "\u6350\u8d60\u7c7b\u578b\uff1a",
"OptionMakeOneTimeDonation": "\u505a\u4e00\u4e2a\u5355\u72ec\u7684\u6350\u8d60",
- "OptionOneTimeDescription": "\u8fd9\u662f\u4e00\u4e2a\u989d\u5916\u7684\u6350\u52a9\u9879\u76ee\uff0c\u4ee5\u663e\u793a\u4f60\u5bf9\u6211\u4eec\u7684\u652f\u6301\u3002\u5b83\u6ca1\u6709\u4efb\u4f55\u989d\u5916\u7684\u597d\u5904\uff0c\u4e5f\u4e0d\u4f1a\u4ea7\u751f\u4e00\u4e2a\u652f\u6301\u8005\u5e8f\u5217\u53f7\u3002",
- "OptionLifeTimeSupporterMembership": "\u7ec8\u8eab\u652f\u6301\u8005\u4f1a\u5458",
- "OptionYearlySupporterMembership": "\u5e74\u5ea6\u652f\u6301\u8005\u4f1a\u5458",
- "OptionMonthlySupporterMembership": "\u6708\u5ea6\u7684\u652f\u6301\u8005\u4f1a\u5458",
"OptionNoTrailer": "\u65e0\u9884\u544a\u7247",
"OptionNoThemeSong": "\u65e0\u4e3b\u9898\u6b4c",
"OptionNoThemeVideo": "\u65e0\u4e3b\u9898\u89c6\u9891",
"LabelOneTimeDonationAmount": "\u6350\u6b3e\u91d1\u989d\uff1a",
- "ButtonDonate": "\u6350\u8d60",
- "ButtonPurchase": "Purchase",
"OptionActor": "\u6f14\u5458",
"OptionComposer": "\u4f5c\u66f2\u5bb6",
"OptionDirector": "\u5bfc\u6f14",
"OptionGuestStar": "\u7279\u9080\u660e\u661f",
"OptionProducer": "\u5236\u7247\u4eba",
"OptionWriter": "\u7f16\u5267",
+ "LabelEpisodeNamePlain": "\u5267\u96c6\u540d\u79f0",
+ "LabelSeriesNamePlain": "\u7535\u89c6\u5267\u540d\u79f0",
+ "LabelSeasonNumberPlain": "\u591a\u5c11\u5b63",
+ "LabelEpisodeNumberPlain": "\u591a\u5c11\u96c6",
+ "LabelEndingEpisodeNumberPlain": "\u6700\u540e\u4e00\u96c6\u6570\u5b57",
+ "OptionOneTimeDescription": "\u8fd9\u662f\u4e00\u4e2a\u989d\u5916\u7684\u6350\u52a9\u9879\u76ee\uff0c\u4ee5\u663e\u793a\u4f60\u5bf9\u6211\u4eec\u7684\u652f\u6301\u3002\u5b83\u6ca1\u6709\u4efb\u4f55\u989d\u5916\u7684\u597d\u5904\uff0c\u4e5f\u4e0d\u4f1a\u4ea7\u751f\u4e00\u4e2a\u652f\u6301\u8005\u5e8f\u5217\u53f7\u3002",
"LabelAirDays": "\u64ad\u51fa\u65e5\u671f\uff1a",
"LabelAirTime": "\u64ad\u51fa\u65f6\u95f4\uff1a",
"HeaderMediaInfo": "\u5a92\u4f53\u4fe1\u606f",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "\u5f00\u53d1\u8005\u4fe1\u606f",
"HeaderRevisionHistory": "\u4fee\u8ba2\u5386\u53f2",
"ButtonViewWebsite": "\u6d4f\u89c8\u7f51\u7ad9",
+ "ViewTypeLiveTvNowPlaying": "\u73b0\u5728\u64ad\u653e",
+ "ViewTypeLatestGames": "\u6700\u65b0\u6e38\u620f",
+ "ViewTypeRecentlyPlayedGames": "\u6700\u8fd1\u64ad\u653e",
+ "ViewTypeGameFavorites": "\u6211\u7684\u6700\u7231",
+ "ViewTypeGameSystems": "\u6e38\u620f\u7cfb\u7edf",
+ "ViewTypeGameGenres": "\u98ce\u683c",
+ "ViewTypeTvResume": "\u6062\u590d\u64ad\u653e",
+ "ViewTypeTvNextUp": "\u4e0b\u4e00\u4e2a",
+ "ViewTypeTvLatest": "\u6700\u65b0",
+ "ViewTypeTvGenres": "\u98ce\u683c",
+ "ViewTypeMovieResume": "\u6062\u590d\u64ad\u653e",
+ "ViewTypeMovieLatest": "\u6700\u65b0",
+ "ViewTypeMovieMovies": "\u7535\u5f71",
+ "ViewTypeMovieCollections": "\u5408\u96c6",
+ "ViewTypeMovieFavorites": "\u6536\u85cf\u5939",
+ "ViewTypeMovieGenres": "\u98ce\u683c",
+ "ViewTypeMusicLatest": "\u6700\u65b0",
+ "ViewTypeMusicAlbums": "\u4e13\u8f91",
+ "ViewTypeMusicAlbumArtists": "\u4e13\u8f91\u827a\u672f\u5bb6",
+ "TabDonate": "\u6350\u8d60",
+ "OptionLifeTimeSupporterMembership": "\u7ec8\u8eab\u652f\u6301\u8005\u4f1a\u5458",
+ "OptionYearlySupporterMembership": "\u5e74\u5ea6\u652f\u6301\u8005\u4f1a\u5458",
+ "OptionMonthlySupporterMembership": "\u6708\u5ea6\u7684\u652f\u6301\u8005\u4f1a\u5458",
+ "ViewTypeTvShowSeries": "\u7535\u89c6\u5267",
+ "ViewTypeTvFavoriteSeries": "\u6700\u559c\u6b22\u7684\u7535\u89c6\u5267",
+ "ViewTypeTvFavoriteEpisodes": "\u6700\u559c\u6b22\u7684\u5267\u96c6",
"HeaderXmlSettings": "XML\u8bbe\u7f6e",
"HeaderXmlDocumentAttributes": "XML\u6587\u6863\u5c5e\u6027",
"HeaderXmlDocumentAttribute": "XML\u6587\u6863\u5c5e\u6027",
"XmlDocumentAttributeListHelp": "\u8fd9\u4e9b\u5c5e\u6027\u88ab\u5e94\u7528\u5230\u6bcf\u4e00\u4e2aXML\u54cd\u5e94\u7684\u6839\u5143\u7d20\u3002",
"OptionSaveMetadataAsHidden": "\u4fdd\u5b58\u5a92\u4f53\u8d44\u6599\u548c\u56fe\u50cf\u4e3a\u9690\u85cf\u6587\u4ef6",
+ "ViewTypeMusicSongs": "\u6b4c\u66f2",
"LabelExtractChaptersDuringLibraryScan": "\u5a92\u4f53\u5e93\u626b\u63cf\u8fc7\u7a0b\u4e2d\u89e3\u538b\u7ae0\u8282\u56fe\u7247",
"LabelExtractChaptersDuringLibraryScanHelp": "\u5982\u679c\u542f\u7528\uff0c\u5f53\u5a92\u4f53\u5e93\u5bfc\u5165\u89c6\u9891\u5e76\u626b\u63cf\u65f6\uff0c\u5c06\u63d0\u53d6\u7ae0\u8282\u56fe\u50cf\u3002\u5982\u679c\u7981\u7528\uff0c\u7ae0\u8282\u56fe\u50cf\u5c06\u5728\u4e4b\u540e\u7684\u8ba1\u5212\u4efb\u52a1\u63d0\u53d6\uff0c\u800c\u5a92\u4f53\u5e93\u4f1a\u66f4\u5feb\u5b8c\u6210\u626b\u63cf\u3002",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "\u6211\u7684\u6700\u7231",
+ "ViewTypeMusicFavoriteAlbums": "\u6700\u7231\u7684\u4e13\u8f91",
+ "ViewTypeMusicFavoriteArtists": "\u6700\u7231\u7684\u827a\u672f\u5bb6",
+ "ViewTypeMusicFavoriteSongs": "\u6700\u7231\u7684\u6b4c\u66f2",
+ "ButtonAddLocalUser": "\u6dfb\u52a0\u672c\u5730\u7528\u6237",
+ "HeaderIdentification": "\u8eab\u4efd\u8bc6\u522b",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "\u4e0b\u4e00\u4e2a",
+ "ButtonPrevious": "\u4e0a\u4e00\u4e2a",
"LabelExternalPlayers": "\u5916\u90e8\u64ad\u653e\u5668\uff1a",
"LabelExternalPlayersHelp": "\u663e\u793a\u5728\u5916\u90e8\u64ad\u653e\u5668\u4e0a\u64ad\u653e\u7684\u6309\u94ae\u3002\u8fd9\u4ec5\u9002\u7528\u4e8e\u652f\u6301URL\u65b9\u6848\u7684Android\u548ciOS\u8bbe\u5907\u3002\u5916\u90e8\u64ad\u653e\u5668\u901a\u5e38\u4e0d\u652f\u6301\u8fdb\u884c\u8fdc\u7a0b\u63a7\u5236\u6216\u6062\u590d\u64ad\u653e\u3002",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "\u7279\u522b - {0}",
"HeaderSubtitleProfile": "\u5b57\u5e55\u914d\u7f6e",
"HeaderSubtitleProfiles": "\u5b57\u5e55\u914d\u7f6e",
"HeaderSubtitleProfilesHelp": "\u5b57\u5e55\u914d\u7f6e\u6587\u4ef6\u63cf\u8ff0\u8bbe\u5907\u6240\u652f\u6301\u7684\u5b57\u5e55\u683c\u5f0f\u3002",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls\u5206\u6bb5\u5b57\u5e55",
"LabelSubtitleFormatHelp": "\u4f8b\u5982\uff1aSRT",
"ButtonLearnMore": "\u4e86\u89e3\u66f4\u591a",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "\u540c\u6b65\u7528\u6237\u7684\u89c2\u770b\u65e5\u671f\u5230nfo\u6587\u4ef6:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "\u53d1\u884c\u65e5\u671f\u683c\u5f0f\uff1a",
+ "LabelKodiMetadataDateFormatHelp": "Nfo\u7684\u6240\u6709\u65e5\u671f\u5c06\u4f7f\u7528\u8fd9\u79cd\u683c\u5f0f\u88ab\u8bfb\u53d6\u548c\u5199\u5165\u3002",
+ "LabelKodiMetadataSaveImagePaths": "\u4fdd\u5b58\u56fe\u50cf\u8def\u5f84\u5728NFO\u6587\u4ef6",
+ "LabelKodiMetadataSaveImagePathsHelp": "\u5982\u679c\u4f60\u7684\u56fe\u50cf\u6587\u4ef6\u540d\u4e0d\u7b26\u5408Kodi\u7684\u89c4\u8303\uff0c\u63a8\u8350\u4f7f\u7528\u3002",
+ "LabelKodiMetadataEnablePathSubstitution": "\u542f\u7528\u8def\u5f84\u66ff\u6362",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "\u5141\u8bb8\u56fe\u50cf\u7684\u8def\u5f84\u66ff\u6362\u4f7f\u7528\u670d\u52a1\u5668\u7684\u8def\u5f84\u66ff\u6362\u8bbe\u7f6e\u3002",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "\u67e5\u770b\u8def\u5f84\u66ff\u6362",
+ "LabelKodiMetadataEnableExtraThumbs": "\u590d\u5236\u540c\u4eba\u753b\u5230extrathumbs\u6587\u4ef6\u5939",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "\u4e3a\u4e86\u6700\u5927\u5316\u517c\u5bb9Kodi\u76ae\u80a4\uff0c\u4e0b\u8f7d\u7684\u56fe\u7247\u540c\u65f6\u50a8\u5b58\u5728 extrafanart \u548c extrathumbs \u6587\u4ef6\u5939\u3002",
"TabPlayback": "\u64ad\u653e",
"HeaderLanguagePreferences": "\u8bed\u8a00\u504f\u597d",
"TabCinemaMode": "\u5f71\u9662\u6a21\u5f0f",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "\u9884\u544a\u7247\u4ec5\u7528\u4e8e\u672a\u89c2\u770b\u7684\u5185\u5bb9",
"LabelEnableIntroParentalControl": "\u542f\u7528\u667a\u80fd\u5bb6\u957f\u63a7\u5236",
"LabelEnableIntroParentalControlHelp": "\u9884\u544a\u7247\u5c06\u53ea\u80fd\u9009\u62e9\u89c2\u770b\u5bb6\u957f\u5206\u7ea7\u5c0f\u4e8e\u6216\u7b49\u4e8e\u73b0\u5728\u7684\u7b49\u7ea7\u3002",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u8fd9\u4e9b\u529f\u80fd\u9700\u8981\u6fc0\u6d3b\u652f\u6301\u8005\u4f1a\u5458\u5e76\u5b89\u88c5\u9884\u544a\u7247\u9891\u9053\u63d2\u4ef6\u3002",
"OptionTrailersFromMyMoviesHelp": "\u9700\u8981\u8bbe\u7f6e\u672c\u5730\u9884\u544a\u7247\u3002",
"LabelCustomIntrosPath": "\u81ea\u5b9a\u4e49\u4ecb\u7ecd\u8def\u5f84\uff1a",
"LabelCustomIntrosPathHelp": "\u6587\u4ef6\u5939\u5305\u542b\u89c6\u9891\u6587\u4ef6\u3002\u5728\u9884\u544a\u7247\u4e4b\u540e\u89c6\u9891\u5c06\u88ab\u968f\u673a\u9009\u62e9\u64ad\u653e\u3002",
- "ValueSpecialEpisodeName": "\u7279\u522b - {0}",
+ "ButtonOptions": "\u9009\u9879",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "\u8fd9\u4e9b\u529f\u80fd\u9700\u8981\u6fc0\u6d3b\u652f\u6301\u8005\u4f1a\u5458\u5e76\u5b89\u88c5\u9884\u544a\u7247\u9891\u9053\u63d2\u4ef6\u3002",
"LabelSelectInternetTrailersForCinemaMode": "\u4e92\u8054\u7f51\u9884\u544a\u7247\uff1a",
"OptionUpcomingDvdMovies": "\u5305\u62ec\u65b0\u7684\u548c\u5373\u5c06\u63a8\u51fa\u7684DVD\uff06\u84dd\u5149\u7535\u5f71\u9884\u544a\u7247",
"OptionUpcomingStreamingMovies": "\u5305\u62ec\u65b0\u7684\u548c\u5373\u5c06\u63a8\u51fa\u7684\u5728Netflix\u4e0a\u7684\u7535\u5f71\u9884\u544a\u7247",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "\u4e2a\u4eba\u7528\u6237\u53ef\u4ee5\u5728\u81ea\u5df1\u7684\u504f\u597d\u8bbe\u7f6e\u4e2d\u7981\u7528\u5f71\u9662\u6a21\u5f0f\u3002",
"LabelEnableCinemaMode": "\u542f\u7528\u5f71\u9662\u6a21\u5f0f",
"HeaderCinemaMode": "\u5f71\u9662\u6a21\u5f0f",
+ "TabDevices": "\u8bbe\u5907",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "\u65b0\u5185\u5bb9\u52a0\u5165\u7684\u65e5\u671f\uff1a",
"OptionDateAddedImportTime": "\u4f7f\u7528\u52a0\u5165\u5a92\u4f53\u5e93\u65f6\u7684\u626b\u63cf\u65e5\u671f",
"OptionDateAddedFileTime": "\u4f7f\u7528\u6587\u4ef6\u521b\u5efa\u65e5\u671f",
"LabelDateAddedBehaviorHelp": "\u5982\u679c\u4e00\u4e2a\u5a92\u4f53\u8d44\u6599\u7684\u503c\u5b58\u5728\uff0c\u5b83\u603b\u662f\u4f18\u5148\u4e8e\u8fd9\u4e9b\u9009\u9879\u524d\u4f7f\u7528\u3002",
"LabelNumberTrailerToPlay": "\u9884\u544a\u7247\u64ad\u653e\u6b21\u6570\uff1a",
+ "LabelChannelDownloadSizeLimitHelpText": "\u9650\u5236\u9891\u9053\u4e0b\u8f7d\u6587\u4ef6\u5939\u7684\u5927\u5c0f\u3002",
"TitleDevices": "\u8bbe\u5907",
"TabCameraUpload": "\u6444\u50cf\u5934\u4e0a\u4f20",
- "TabDevices": "\u8bbe\u5907",
"HeaderCameraUploadHelp": "Automatically upload photos and videos taken from your mobile devices into Emby.",
"MessageNoDevicesSupportCameraUpload": "\u60a8\u76ee\u524d\u8fd8\u6ca1\u6709\u4efb\u4f55\u8bbe\u5907\u652f\u6301\u6444\u50cf\u5934\u4e0a\u4f20\u3002",
"LabelCameraUploadPath": "\u6444\u50cf\u5934\u4e0a\u4f20\u8def\u5f84\uff1a",
"LabelCameraUploadPathHelp": "\u9009\u62e9\u81ea\u5b9a\u4e49\u4e0a\u4f20\u8def\u5f84\u3002\u5982\u679c\u672a\u6307\u5b9a\uff0c\u4e00\u4e2a\u9ed8\u8ba4\u6587\u4ef6\u5939\u5c06\u88ab\u4f7f\u7528\u3002\u5982\u679c\u4f7f\u7528\u81ea\u5b9a\u4e49\u7684\u8def\u5f84\uff0c\u9700\u8981\u5728\u5a92\u4f53\u5e93\u8bbe\u7f6e\u4e2d\u6dfb\u52a0\u3002",
"LabelCreateCameraUploadSubfolder": "\u4e3a\u6bcf\u4e2a\u8bbe\u5907\u521b\u5efa\u5b50\u6587\u4ef6\u5939",
"LabelCreateCameraUploadSubfolderHelp": "\u7279\u5b9a\u7684\u6587\u4ef6\u5939\u53ef\u4ee5\u5206\u914d\u7ed9\u4e00\u4e2a\u8bbe\u5907\uff0c\u901a\u8fc7\u4ece\u8bbe\u5907\u9875\u9762\u70b9\u51fb\u5b83\u3002",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "\u663e\u793a\u540d\u79f0\uff1a",
"LabelCustomDeviceDisplayNameHelp": "\u81ea\u5b9a\u4e49\u8bbe\u5907\u663e\u793a\u540d\u79f0\u6216\u7559\u7a7a\u5219\u4f7f\u7528\u8bbe\u5907\u62a5\u544a\u540d\u79f0\u3002",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,49 +1222,174 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "\u9080\u8bf7\u51fd",
- "LabelForgotPasswordUsernameHelp": "\u8f93\u5165\u60a8\u7684\u7528\u6237\u540d\uff0c\u5982\u679c\u4f60\u8fd8\u8bb0\u5f97\u3002",
"HeaderForgotPassword": "\u5fd8\u8bb0\u5bc6\u7801",
+ "LabelForgotPasswordUsernameHelp": "\u8f93\u5165\u60a8\u7684\u7528\u6237\u540d\uff0c\u5982\u679c\u4f60\u8fd8\u8bb0\u5f97\u3002",
"TitleForgotPassword": "\u5fd8\u8bb0\u5bc6\u7801",
"TitlePasswordReset": "\u5bc6\u7801\u91cd\u7f6e",
"LabelPasswordRecoveryPinCode": "PIN\u7801\uff1a",
"HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e",
"HeaderParentalRatings": "\u5bb6\u957f\u5206\u7ea7",
"HeaderVideoTypes": "\u89c6\u9891\u7c7b\u578b",
- "HeaderYears": "\u5e74\u4efd",
+ "HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "\u98ce\u683c",
+ "ViewTypeMusicArtists": "\u827a\u672f\u5bb6",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "API\u6587\u6863",
+ "LabelDeveloperResources": "\u5f00\u53d1\u8d44\u6e90",
"HeaderAddTag": "\u6dfb\u52a0\u6807\u7b7e",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "\u6807\u7b7e\uff1a",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "\u4ec5\u9650\u5355\u4e00\u7684\u5d4c\u5165\u5f0f\u56fe\u50cf",
"LabelEnableSingleImageInDidlLimitHelp": "\u5982\u679c\u591a\u4e2a\u56fe\u50cf\u5d4c\u5165\u5728DIDL\uff0c\u67d0\u4e9b\u8bbe\u5907\u5c06\u65e0\u6cd5\u6b63\u786e\u6e32\u67d3\u3002",
"TabActivity": "\u6d3b\u52a8",
"TitleSync": "\u540c\u6b65",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "\u7ee7\u627f",
+ "LabelContentType": "\u5185\u5bb9\u7c7b\u578b",
"NameSeasonUnknown": "\u5b63\u672a\u77e5",
"NameSeasonNumber": "\u5b63 {0}",
"LabelNewUserNameHelp": "\u7528\u6237\u540d\u53ef\u4ee5\u5305\u542b\u5b57\u6bcd\uff08az\uff09\uff0c\u6570\u5b57\uff080-9\uff09\uff0c\u7834\u6298\u53f7\uff08 - \uff09\uff0c\u4e0b\u5212\u7ebf\uff08_\uff09\uff0c\u5355\u5f15\u53f7\uff08'\uff09\u548c\u53e5\u70b9\uff08.\uff09",
+ "ButtonHelp": "Help",
+ "TabAccess": "\u8bbf\u95ee",
+ "HeaderDeviceAccess": "\u8bbe\u5907\u8bbf\u95ee",
+ "OptionEnableAccessFromAllDevices": "\u542f\u7528\u6240\u6709\u8bbe\u5907\u53ef\u4ee5\u8bbf\u95ee",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "\u5feb\u901f\u5165\u95e8\u6307\u5357",
+ "HeaderSyncJobInfo": "\u540c\u6b65\u4f5c\u4e1a",
"TabJobs": "\u4f5c\u4e1a",
"TabSyncJobs": "\u540c\u6b65\u4f5c\u4e1a",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "\u7ee7\u7eed\u4e4b\u524d\u8bf7\u63a5\u53d7\u670d\u52a1\u548c\u9690\u79c1\u653f\u7b56\u6761\u6b3e\u3002",
+ "OptionIAcceptTermsOfService": "\u6211\u63a5\u53d7\u670d\u52a1\u6761\u6b3e",
+ "ButtonPrivacyPolicy": "\u9690\u79c1\u653f\u7b56",
+ "ButtonTermsOfService": "\u670d\u52a1\u6761\u6b3e",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "\u7535\u89c6",
+ "OptionDetectArchiveFilesAsMedia": "\u628a\u538b\u7f29\u6587\u4ef6\u4f5c\u4e3a\u5a92\u4f53\u6587\u4ef6\u68c0\u6d4b",
+ "OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u542f\u7528\uff0c\u4e0e.RAR\u548c.zip\u6269\u5c55\u540d\u7684\u6587\u4ef6\u5c06\u88ab\u68c0\u6d4b\u4e3a\u5a92\u4f53\u6587\u4ef6\u3002",
+ "ButtonDonate": "\u6350\u8d60",
+ "HeaderOptions": "\u9009\u9879",
+ "HeaderIdentificationResult": "\u8bc6\u522b\u7ed3\u679c",
+ "OptionEnableAccessToAllChannels": "\u542f\u7528\u6240\u6709\u9891\u9053\u53ef\u4ee5\u8bbf\u95ee",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "\u5f00\u53d1\u4eba\u5458\u9009\u9879",
+ "OptionEnableWebClientResponseCache": "\u542f\u7528Web\u5ba2\u6237\u7aef\u7f13\u5b58\u54cd\u5e94",
+ "OptionDisableForDevelopmentHelp": "\u6839\u636e\u5bf9Web\u5ba2\u6237\u7aef\u7684\u5f00\u53d1\u7684\u9700\u8981\u6765\u914d\u7f6e\u8fd9\u4e9b\u9879\u76ee\u3002",
+ "OptionEnableWebClientResourceMinification": "\u542f\u7528Web\u5ba2\u6237\u7aef\u8d44\u6e90\u6700\u5c0f\u5316",
+ "LabelDashboardSourcePath": "Web\u5ba2\u6237\u7aef\u6e90\u8def\u5f84\uff1a",
+ "LabelDashboardSourcePathHelp": "\u5982\u679c\u4ece\u6e90\u8fd0\u884c\u670d\u52a1\u5668\uff0c\u8bf7\u6307\u5b9a\u63a7\u5236\u53f0UI\u6587\u4ef6\u5939\u8def\u5f84\u3002\u8fd9\u4e2a\u6587\u4ef6\u5939\u5c06\u63d0\u4f9bWeb\u5ba2\u6237\u7aef\u7684\u6240\u6709\u6587\u4ef6\u3002",
+ "HeaderPaths": "\u8def\u5f84",
+ "TitleNotifications": "\u901a\u77e5",
+ "ButtonDonateWithPayPal": "\u901a\u8fc7PayPal\u6350\u8d60",
+ "TitleScheduledTasks": "\u8ba1\u5212\u4efb\u52a1",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "\u5a92\u4f53\u8f6c\u6362",
+ "ButtonOrganize": "\u6574\u7406",
+ "ButtonJoinTheDevelopmentTeam": "\u52a0\u5165\u5f00\u53d1\u56e2\u961f",
+ "OptionEnableAccessToAllLibraries": "\u542f\u7528\u6240\u6709\u5a92\u4f53\u5e93\u53ef\u4ee5\u8bbf\u95ee",
+ "LabelSyncTempPath": "\u4e34\u65f6\u6587\u4ef6\u8def\u5f84\uff1a",
+ "LabelSyncTempPathHelp": "\u6307\u5b9a\u540c\u6b65\u65f6\u7684\u5de5\u4f5c\u6587\u4ef6\u5939\u3002\u5728\u540c\u6b65\u8fc7\u7a0b\u4e2d\u521b\u5efa\u7684\u8f6c\u6362\u5a92\u4f53\u6587\u4ef6\u5c06\u88ab\u5b58\u653e\u5728\u8fd9\u91cc\u3002",
+ "LabelCustomCertificatePath": "\u81ea\u5b9a\u4e49\u8bc1\u4e66\u8def\u5f84\uff1a",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "\u8fd9\u5c06\u521b\u5efa\u4e00\u4e2a\u5355\u72ec\u7684\u89c6\u56fe\u6765\u663e\u793a\u60a8\u5df2\u7ecf\u521b\u5efa\u6216\u8bbf\u95ee\u7684\u5408\u96c6\u3002\u8981\u521b\u5efa\u5408\u96c6\uff0c\u8bf7\u5728\u4efb\u4e00\u7535\u5f71\u4e0a\u70b9\u51fb\u53f3\u952e\u5e76\u6309\u4f4f\uff0c\u7136\u540e\u9009\u62e9\u201c\u6dfb\u52a0\u5230\u5408\u96c6\u201d\u3002",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "\u4eab\u53d714\u5929\u514d\u8d39\u8bd5\u7528",
+ "CategorySync": "\u540c\u6b65",
+ "RegisterWithPayPal": "\u6ce8\u518cPayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "\u7b80\u6613Pin\u7801",
+ "LabelEasyPinCode": "\u7b80\u6613PIN\u7801\uff1a",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "\u542f\u7528\u7b80\u6613PIN\u7801\u767b\u5f55\u5bb6\u5ead\u7f51\u7edc",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "\u590d\u4f4d\u7b80\u6613PIN\u7801",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "\u5b57\u5e55",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/zh-HK.json b/dashboard-ui/strings/html/zh-HK.json
index 5f0253073f..07eb2bf25d 100644
--- a/dashboard-ui/strings/html/zh-HK.json
+++ b/dashboard-ui/strings/html/zh-HK.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u96e2\u958b",
"LabelVisitCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "\u6a19\u6e96",
- "LabelApiDocumentation": "Api \u6587\u4ef6",
- "LabelDeveloperResources": "\u958b\u767c\u8005\u8cc7\u6e90",
"LabelBrowseLibrary": "\u700f\u89bd\u8cc7\u6599\u5eab",
- "LabelConfigureServer": "\u8a2d\u7f6e Emby",
"LabelOpenLibraryViewer": "\u958b\u555f\u5a92\u9ad4\u5eab\u700f\u89bd\u5668",
"LabelRestartServer": "\u91cd\u555f\u4f3a\u670d\u5668",
"LabelShowLogWindow": "\u986f\u793a\u65e5\u8a8c",
"LabelPrevious": "\u524d\u4e00\u500b",
"LabelFinish": "\u5b8c\u6210",
- "FolderTypeMixed": "\u6df7\u5408\u5167\u5bb9",
"LabelNext": "\u4e0b\u4e00\u500b",
"LabelYoureDone": "\u5927\u529f\u544a\u6210\uff01",
- "ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf\u5eab",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "\u6b61\u8fce\u4f86\u5230 Emby\uff01",
+ "OptionRelease": "\u5b98\u65b9\u767c\u4f48",
+ "OptionBeta": "\u516c\u6e2c",
+ "OptionDev": "\u958b\u767c\uff08\u4e0d\u7a69\u5b9a\uff09",
"ThisWizardWillGuideYou": "\u6b64\u6559\u5b78\u5354\u52a9\u60a8\u5b8c\u6210\u5b89\u88dd\u904e\u7a0b\u3002\u9996\u5148\uff0c\u8acb\u9078\u64c7\u60a8\u7684\u8a9e\u8a00\u3002",
"TellUsAboutYourself": "\u4ecb\u7d39\u4e00\u4e0b\u81ea\u5df1",
- "ButtonQuickStartGuide": "\u5feb\u901f\u5165\u9580\u6307\u5357",
"LabelYourFirstName": "\u60a8\u7684\u540d\u5b57\u662f\uff1a",
"MoreUsersCanBeAddedLater": "\u66f4\u591a\u7528\u6236\u53ef\u4ee5\u4e4b\u5f8c\u5728\u63a7\u5236\u53f0\u6dfb\u52a0\u3002",
"UserProfilesIntro": "Emby \u5df2\u5167\u7f6e\u652f\u63f4\u7528\u6236\u8a2d\u7f6e\u6587\u4ef6\uff0c\u8b93\u6bcf\u500b\u7528\u6236\u90fd\u6709\u81ea\u5df1\u7684\u986f\u793a\u8a2d\u7f6e\uff0c\u64ad\u653e\u60c5\u6cc1\u548c\u5bb6\u9577\u76e3\u8b77\u3002",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "\u63d0\u53d6\u7ae0\u7bc0\u5716\u50cf\u5c07\u5141\u8a31\u5ba2\u6236\u7aef\u986f\u793a\u9078\u64c7\u5716\u50cf\u5834\u666f\u83dc\u55ae\u3002\u9019\u500b\u904e\u7a0b\u53ef\u80fd\u6703\u5f88\u6162\uff0c\u9020\u6210CPU\u8ca0\u8f09\uff0c\u4e5f\u53ef\u80fd\u9700\u8981\u5e7e GB \u7a7a\u9593\u3002\u5b83\u6bcf\u665a\u904b\u884c\u9810\u5b9a\u4efb\u52d9\uff0c\u96d6\u7136\u9019\u53ef\u4ee5\u5728\u4efb\u52d9\u6642\u9593\u8868\u8a2d\u7f6e\u3002\u4f46\u4e0d\u5efa\u8b70\u5728\u9ad8\u5cf0\u6642\u9593\u5167\u904b\u884c\u3002",
"LabelEnableAutomaticPortMapping": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u6620\u5c04",
"LabelEnableAutomaticPortMappingHelp": "UPnP \u5f88\u5bb9\u6613\u8b93\u8def\u7531\u5668\u81ea\u52d5\u8a2d\u7f6e\u4f3a\u670d\u5668\u7684\u9060\u7a0b\u8a2a\u554f\u3002\u9019\u53ef\u80fd\u7121\u6cd5\u9069\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u3002",
- "HeaderTermsOfService": "Emby \u670d\u52d9\u689d\u6b3e",
- "MessagePleaseAcceptTermsOfService": "\u7e7c\u7e8c\u4e4b\u524d\uff0c\u8acb\u5148\u63a5\u53d7\u670d\u52d9\u548c\u96b1\u79c1\u653f\u7b56\u689d\u6b3e\u3002",
- "OptionIAcceptTermsOfService": "\u6211\u9858\u610f\u63a5\u53d7\u670d\u52d9\u689d\u6b3e",
- "ButtonPrivacyPolicy": "\u96b1\u79c1\u653f\u7b56",
- "ButtonTermsOfService": "\u670d\u52d9\u689d\u6b3e",
- "HeaderDeveloperOptions": "\u958b\u767c\u8005\u9078\u9805",
- "OptionEnableWebClientResponseCache": "\u555f\u7528\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u7de9\u5b58",
- "OptionDisableForDevelopmentHelp": "\u70ba\u91dd\u5c0d\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u672a\u4f86\u767c\u5c55\u6240\u8a2d\u7f6e\u3002",
- "OptionEnableWebClientResourceMinification": "\u555f\u7528\u6700\u5c11\u5316\u6d88\u8017\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u8cc7\u6e90",
- "LabelDashboardSourcePath": "\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u8def\u5f91\uff1a",
- "LabelDashboardSourcePathHelp": "\u5982\u679c\u5f9e\u8def\u5f91\u904b\u884c\u4f3a\u670d\u5668\uff0c\u8acb\u9078\u64c7\u63a7\u5236\u53f0\u754c\u9762\u6587\u4ef6\u593e\u7684\u8def\u5f91\u3002\u6240\u6709\u5728\u6b64\u4f4d\u7f6e\u7684\u7db2\u7d61\u5ba2\u6236\u7aef\u6587\u4ef6\u5c07\u6703\u88ab\u904b\u884c\u3002",
- "ButtonConvertMedia": "\u8f49\u63db\u5a92\u9ad4",
- "ButtonOrganize": "\u6574\u7406",
- "LinkedToEmbyConnect": "\u9023\u63a5 Emby Connect",
- "HeaderSupporterBenefits": "\u6703\u54e1\u512a\u52e2",
- "HeaderAddUser": "\u6dfb\u52a0\u7528\u6236",
- "LabelAddConnectSupporterHelp": "\u8981\u6dfb\u52a0\u6c92\u6709\u5217\u51fa\u7684\u7528\u6236\uff0c\u9996\u5148\u9700\u8981\u4ed6\u5011\u7684\u5e33\u6236\uff0c\u7531\u500b\u4eba\u5e33\u6236\u8cc7\u6599\u9801\u9023\u63a5\u5230 Emby Connect \u3002",
- "LabelPinCode": "PIN \u78bc\uff1a",
- "OptionHideWatchedContentFromLatestMedia": "\u96b1\u85cf\u6700\u65b0\u5a92\u9ad4\u5167\u5bb9",
- "HeaderSync": "\u540c\u6b65",
"ButtonOk": "\u78ba\u5b9a",
"ButtonCancel": "\u53d6\u6d88",
- "ButtonExit": "\u96e2\u958b",
- "ButtonNew": "\u6700\u65b0",
- "HeaderTV": "\u96fb\u8996",
- "HeaderAudio": "\u97f3\u8a0a",
- "HeaderVideo": "\u5f71\u7247",
- "HeaderPaths": "\u8def\u5f91",
- "CategorySync": "\u540c\u6b65",
- "TabPlaylist": "\u64ad\u653e\u6e05\u55ae",
- "HeaderEasyPinCode": "\u7c21\u6613 Pin \u78bc",
- "HeaderGrownupsOnly": "\u6210\u4eba\u60c5\u7bc0 !",
- "DividerOr": "-- \u6216 --",
- "HeaderInstalledServices": "\u5df2\u5b89\u88dd\u7684\u670d\u52d9",
- "HeaderAvailableServices": "\u53ef\u63d0\u4f9b\u7684\u670d\u52d9",
- "MessageNoServicesInstalled": "\u6c92\u6709\u5b89\u88dd\u7684\u670d\u52d9\u3002",
- "HeaderToAccessPleaseEnterEasyPinCode": "\u8981\u7e7c\u7e8c\u8a2a\u554f\uff0c\u8acb\u9078\u64c7\u60a8\u7684\u7c21\u6613 PIN \u78bc",
- "KidsModeAdultInstruction": "\u9ede\u64ca\u53f3\u4e0b\u89d2\u7684\u9396\u5b9a\u6a19\u8a8c\uff0c\u8a2d\u7f6e\u6216\u96e2\u958b\u5152\u7ae5\u6a21\u5f0f\u3002\u60a8\u7684 PIN \u78bc\u662f\u5fc5\u9700\u7684\u3002",
- "ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc",
- "HeaderAdultsReadHere": "\u6210\u4eba\u89c0\u8cde\uff01",
- "RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a",
- "HeaderSyncRequiresSupporterMembership": "\u540c\u6b65\u9700\u8981\u4e00\u500b Emby \u751f\u6548\u6703\u54e1\u3002",
- "HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f",
- "LabelSyncTempPath": "\u81e8\u6642\u6587\u4ef6\u7684\u8def\u5f91\uff1a",
- "LabelSyncTempPathHelp": "\u9078\u64c7\u81ea\u5b9a\u540c\u6b65\u5de5\u4f5c\u7684\u6587\u4ef6\u593e\u3002\u5728\u540c\u6b65\u904e\u7a0b\u4e2d\u5efa\u7acb\u7684\u8f49\u63db\u5a92\u9ad4\u5c07\u88ab\u5b58\u653e\u5230\u9019\u88e1\u3002",
- "LabelCustomCertificatePath": "\u81ea\u5b9a\u8b49\u66f8\u8def\u5f91\uff1a",
- "LabelCustomCertificatePathHelp": "\u63d0\u4f9b\u81ea\u5df1\u7684 SSL \u8b49\u66f8 .pfx \u6587\u4ef6\u3002\u5982\u679c\u5ffd\u7565\uff0c\u4f3a\u670d\u5668\u5c07\u5efa\u7acb\u4e00\u500b\u81ea\u5bb6\u7c3d\u540d\u8b49\u66f8\u3002",
- "TitleNotifications": "\u901a\u77e5",
- "ButtonDonateWithPayPal": "\u5f9e PayPal \u6350\u8d08",
- "OptionDetectArchiveFilesAsMedia": "\u5075\u6e2c\u6a94\u6848\u6587\u4ef6\u70ba\u5a92\u9ad4",
- "OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u555f\u7528\uff0c .rar \u548c .zip \u7684\u6587\u4ef6\u5c07\u6703\u88ab\u5075\u6e2c\u70ba\u5a92\u9ad4\u3002",
- "LabelEnterConnectUserName": "\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\uff1a",
- "LabelEnterConnectUserNameHelp": "\u9019\u662f\u60a8 Emby \u5728\u7dda\u5e33\u6236\u7684\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\u3002",
- "LabelEnableEnhancedMovies": "\u555f\u7528\u96fb\u5f71\u589e\u5f37\u5c55\u793a",
- "LabelEnableEnhancedMoviesHelp": "\u7576\u555f\u7528\u6642\uff0c\u96fb\u5f71\u5c07\u6703\u986f\u793a\u6210\u6587\u4ef6\u593e\uff0c\u5305\u62ec\u9810\u544a\uff0c\u5de5\u4f5c\u4eba\u54e1\uff0c\u6f14\u54e1\u9663\u5bb9\u7b49\u76f8\u95dc\u5167\u5bb9\u3002",
- "HeaderSyncJobInfo": "\u540c\u6b65\u4efb\u52d9",
- "OptionReleaseDate": "\u767c\u4f48\u65e5\u671f",
- "ButtonPlayTrailer": "\u9810\u544a\u7247",
- "LabelFailed": "\u5931\u6557",
- "LabelSeries": "\u96fb\u8996\u5287\uff1a",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "\u96fb\u5f71",
- "FolderTypeMusic": "\u97f3\u6a02",
- "FolderTypeAdultVideos": "\u6210\u4eba\u5f71\u7247",
- "FolderTypePhotos": "\u76f8\u7247",
- "FolderTypeMusicVideos": "\u97f3\u6a02\u5f71\u7247",
- "FolderTypeHomeVideos": "\u9996\u9801\u5f71\u7247",
- "FolderTypeGames": "\u904a\u6232",
- "FolderTypeBooks": "\u66f8\u85c9",
- "FolderTypeTvShows": "\u96fb\u8996\u7bc0\u76ee",
- "FolderTypeInherit": "\u7e7c\u627f",
- "LabelContentType": "\u5167\u5bb9\u985e\u578b\uff1a",
- "TitleScheduledTasks": "\u4efb\u52d9\u6642\u9593\u8868",
"HeaderSetupLibrary": "\u8a2d\u7f6e\u60a8\u7684\u5a92\u9ad4\u5eab",
"ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e",
"LabelFolderType": "\u6587\u4ef6\u593e\u985e\u578b\uff1a",
"ReferToMediaLibraryWiki": "\u8acb\u53c3\u95b1\u5a92\u9ad4\u5eab\u7684\u7dad\u57fa \u3002",
"LabelCountry": "\u570b\u5bb6\uff1a",
"LabelLanguage": "\u8a9e\u8a00\uff1a",
- "LabelTimeLimitHours": "\u6642\u9650\uff08\u5c0f\u6642\uff09\uff1a",
- "ButtonJoinTheDevelopmentTeam": "\u52a0\u5165\u6211\u5011\u7684\u767c\u5c55\u5718\u968a",
"HeaderPreferredMetadataLanguage": "\u9996\u9078\u8cc7\u6599\u5c6c\u6027\u7684\u8a9e\u8a00\uff1a",
"LabelSaveLocalMetadata": "\u5132\u5b58\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027\u5230\u5a92\u9ad4\u6587\u4ef6\u593e",
"LabelSaveLocalMetadataHelp": "\u76f4\u63a5\u5132\u5b58\u76f8\u95dc\u5716\u7247\u548c\u8cc7\u6599\u5c6c\u6027\u5230\u5a92\u9ad4\u6587\u4ef6\u593e\uff0c\u5b83\u5011\u5c31\u6703\u5f88\u5bb9\u6613\u7de8\u8f2f\u3002",
@@ -130,37 +47,16 @@
"TabPreferences": "\u504f\u597d",
"TabPassword": "\u5bc6\u78bc",
"TabLibraryAccess": "\u5a92\u9ad4\u5eab\u901a\u884c\u8b49",
- "TabAccess": "\u53ef\u4ee5\u901a\u884c",
"TabImage": "\u5716\u50cf",
"TabProfile": "\u7c21\u4ecb",
- "TabMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027",
- "TabImages": "Images",
- "TabNotifications": "\u901a\u77e5",
- "TabCollectionTitles": "\u6a19\u984c",
- "HeaderDeviceAccess": "\u5141\u8a31\u88dd\u7f6e\u901a\u884c",
- "OptionEnableAccessFromAllDevices": "\u555f\u7528\u6240\u6709\u88dd\u5099\u901a\u884c\u8b49",
- "OptionEnableAccessToAllChannels": "\u5141\u8a31\u6240\u6709\u983b\u9053\u901a\u884c",
- "OptionEnableAccessToAllLibraries": "\u5141\u8a31\u6240\u6709\u5a92\u9ad4\u5eab\u901a\u884c",
- "DeviceAccessHelp": "\u53ea\u9069\u7528\u65bc\u552f\u4e00\u8fa8\u8b58\u65b9\u6cd5\u7684\u88dd\u7f6e\uff0c\u4e26\u4e0d\u6703\u963b\u6b62\u700f\u89bd\u5668\u8a2a\u554f\u3002\u5df2\u904e\u6ffe\u7684\u7528\u6236\u8a2d\u5099\u6703\u88ab\u963b\u6b62\u8a2a\u554f\uff0c\u76f4\u5230\u4ed6\u5011\u4f7f\u7528\u5df2\u6279\u51c6\u88dd\u7f6e\u3002",
"LabelDisplayMissingEpisodesWithinSeasons": "\u986f\u793a\u907a\u5931\u7bc0\u76ee\u5b63\u5ea6\u8cc7\u6599",
"LabelUnairedMissingEpisodesWithinSeasons": "\u986f\u793a\u5c1a\u672a\u64ad\u51fa\u7bc0\u76ee\u5b63\u5ea6\u8cc7\u6599",
"HeaderVideoPlaybackSettings": "\u5f71\u7247\u64ad\u653e\u8a2d\u7f6e",
- "HeaderPlaybackSettings": "\u64ad\u653e\u8a2d\u7f6e",
"LabelAudioLanguagePreference": "\u9996\u9078\u97f3\u8a0a\u8a9e\u8a00\uff1a",
"LabelSubtitleLanguagePreference": "\u9996\u9078\u5b57\u5e55\u8a9e\u8a00\uff1a",
- "OptionDefaultSubtitles": "\u9810\u8a2d",
- "OptionOnlyForcedSubtitles": "\u53ea\u984c\u793a\u5f37\u5236\u5b57\u5e55",
- "OptionAlwaysPlaySubtitles": "\u7e3d\u662f\u984c\u793a\u5b57\u5e55",
- "OptionNoSubtitles": "\u6c92\u6709\u5b57\u5e55",
- "OptionDefaultSubtitlesHelp": "\u7576\u97f3\u8a0a\u662f\u5916\u6587\u5339\u914d\u8a9e\u8a00\u7684\u5b57\u5e55\u5c07\u88ab\u512a\u5148\u8f09\u5165\u3002",
- "OptionOnlyForcedSubtitlesHelp": "\u5f37\u5236\u8f09\u5165\u5df2\u6a19\u8a18\u5b57\u5e55\u3002",
- "OptionAlwaysPlaySubtitlesHelp": "\u8a9e\u8a00\u5339\u914d\u7684\u5b57\u5e55\u5c07\u512a\u5148\u8003\u616e\u5728\u5339\u914d\u7684\u97f3\u8a0a\u8f09\u5165\u3002",
- "OptionNoSubtitlesHelp": "\u9810\u8a2d\u4e0d\u8f09\u5165\u5b57\u5e55\u3002",
"TabProfiles": "\u7c21\u4ecb",
"TabSecurity": "\u5b89\u5168\u6027",
"ButtonAddUser": "\u6dfb\u52a0\u7528\u6236",
- "ButtonAddLocalUser": "\u6dfb\u52a0\u672c\u5730\u7528\u6236",
- "ButtonInviteUser": "\u9080\u8acb\u7528\u6236",
"ButtonSave": "\u5132\u5b58",
"ButtonResetPassword": "\u91cd\u8a2d\u5bc6\u78bc",
"LabelNewPassword": "\u65b0\u5bc6\u78bc\uff1a",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u6700\u5927\u5141\u8a31\u7684\u5bb6\u9577\u8a55\u7d1a\uff1a",
"MaxParentalRatingHelp": "\u6b64\u7528\u6236\u6703\u88ab\u96b1\u85cf\u5177\u6709\u8f03\u9ad8\u8a55\u50f9\u7684\u5bb6\u9577\u8a55\u7d1a\u5167\u5bb9\u3002",
"LibraryAccessHelp": "\u9078\u64c7\u8207\u6b64\u7528\u6236\u5171\u4eab\u5a92\u9ad4\u6587\u4ef6\u593e\u3002\u7ba1\u7406\u54e1\u5c07\u80fd\u5920\u4f7f\u7528\u5a92\u9ad4\u8cc7\u6599\u700f\u89bd\u5668\u800c\u7de8\u8f2f\u6240\u6709\u6587\u4ef6\u593e\u3002",
- "ChannelAccessHelp": "\u9078\u64c7\u6b64\u7528\u6236\u5171\u4eab\u983b\u9053\u3002\u7ba1\u7406\u54e1\u5c07\u80fd\u5920\u4f7f\u7528\u8cc7\u6599\u7ba1\u7406\u5668\u800c\u7de8\u8f2f\u6240\u6709\u6587\u4ef6\u593e\u3002",
"ButtonDeleteImage": "\u522a\u9664\u5716\u50cf",
- "LabelSelectUsers": "\u9078\u64c7\u7528\u6236\uff1a",
"ButtonUpload": "\u4e0a\u50b3",
"HeaderUploadNewImage": "\u4e0a\u50b3\u65b0\u5716\u50cf",
"LabelDropImageHere": "\u62d6\u653e\u5716\u50cf\u5230\u6b64",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u9019\u88f9\u4ec0\u9ebc\u90fd\u6c92\u6709\u3002",
"MessagePleaseEnsureInternetMetadata": "\u8acb\u78ba\u4fdd\u555f\u7528\u7db2\u7d61\u8cc7\u6599\u5c6c\u6027\u4e0b\u8f09\u529f\u80fd\u3002",
"TabSuggested": "\u5efa\u8b70",
- "TabSuggestions": "\u5efa\u8b70",
"TabLatest": "\u6700\u65b0",
"TabUpcoming": "\u5373\u5c07\u767c\u4f48",
"TabShows": "\u7bc0\u76ee",
@@ -217,6 +110,7 @@
"OptionAscending": "\u905e\u5347",
"OptionDescending": "\u905e\u964d",
"OptionRuntime": "\u904b\u884c\u6642\u9593",
+ "OptionReleaseDate": "\u767c\u4f48\u65e5\u671f",
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
"OptionDatePlayed": "\u5df2\u64ad\u653e\u65e5\u671f",
"OptionDateAdded": "\u5df2\u6dfb\u52a0\u65e5\u671f",
@@ -226,16 +120,10 @@
"OptionTrackName": "\u66f2\u76ee\u540d\u7a31",
"OptionCommunityRating": "\u8a0e\u8ad6\u5340\u8a55\u5206",
"OptionNameSort": "\u540d\u7a31",
- "OptionFolderSort": "\u6587\u4ef6\u593e",
"OptionBudget": "\u9810\u7b97",
"OptionRevenue": "\u6536\u5165",
"OptionPoster": "\u6d77\u5831",
- "OptionPosterCard": "\u6d77\u5831\u5361\u7247",
- "OptionBackdrop": "\u80cc\u666f",
"OptionTimeline": "\u6642\u9593\u8ef8",
- "OptionThumb": "\u7e2e\u5716",
- "OptionThumbCard": "\u7e2e\u5716\u5361\u7247",
- "OptionBanner": "\u65d7\u5e5f",
"OptionCriticRating": "\u8a55\u8ad6\u5bb6\u8a55\u5206",
"OptionVideoBitrate": "\u5f71\u7247\u6bd4\u7279\u7387",
"OptionResumable": "\u80fd\u5920\u6062\u5fa9",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "\u4efb\u52d9\u6642\u9593\u8868",
"TabMyPlugins": "\u6211\u7684\u63d2\u4ef6",
"TabCatalog": "\u76ee\u9304",
- "TitlePlugins": "\u63d2\u4ef6",
"HeaderAutomaticUpdates": "\u81ea\u52d5\u66f4\u65b0",
"HeaderNowPlaying": "\u6b63\u5728\u64ad\u653e",
"HeaderLatestAlbums": "\u6700\u65b0\u5c08\u8f2f",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "\u6700\u8fd1\u64ad\u653e",
"HeaderFrequentlyPlayed": "\u7d93\u5e38\u64ad\u653e",
"DevBuildWarning": "\u958b\u767c\u7248\u672c\u6703\u662f\u6700\u65b0\u3002\u4e26\u7d93\u5e38\u767c\u5e03\uff0c\u4f46\u9019\u4e9b\u7248\u672c\u90fd\u6c92\u6709\u7d93\u904e\u6e2c\u8a66\u3002\u9019\u53ef\u80fd\u6703\u7121\u6cd5\u4f7f\u7528\u5168\u90e8\u529f\u80fd\u6216\u5d29\u6f70\u3002",
+ "OptionThumb": "\u7e2e\u5716",
+ "OptionBanner": "\u65d7\u5e5f",
"LabelVideoType": "\u5f71\u7247\u985e\u578b\uff1a",
"OptionBluray": "\u85cd\u5149",
"OptionDvd": "DVD",
"OptionIso": "Iso",
"Option3D": "3D",
"LabelFeatures": "\u529f\u80fd\uff1a",
- "LabelService": "\u670d\u52d9\uff1a",
- "LabelStatus": "\u72c0\u614b\uff1a",
- "LabelVersion": "\u7248\u672c\uff1a",
- "LabelLastResult": "\u6700\u5f8c\u7d50\u679c\uff1a",
"OptionHasSubtitles": "\u5b57\u5e55",
"OptionHasTrailer": "\u9810\u544a\u7247",
"OptionHasThemeSong": "\u4e3b\u984c\u66f2",
@@ -268,8 +153,6 @@
"TabMovies": "\u96fb\u5f71",
"TabStudios": "\u5de5\u4f5c\u5ba4",
"TabTrailers": "\u9810\u544a",
- "LabelArtists": "\u85dd\u4eba\uff1a",
- "LabelArtistsHelp": "\u5206\u958b\u591a\u91cd\u4f7f\u7528",
"HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71",
"HeaderLatestTrailers": "\u6700\u65b0\u9810\u544a",
"OptionHasSpecialFeatures": "\u7279\u8272",
@@ -290,32 +173,24 @@
"OptionFriday": "\u661f\u671f\u4e94",
"OptionSaturday": "\u661f\u671f\u516d",
"HeaderManagement": "\u7ba1\u7406",
- "LabelManagement": "\u7ba1\u7406\uff1a",
"OptionMissingImdbId": "\u7f3a\u5c11 IMDB \u7de8\u865f",
"OptionMissingTvdbId": "\u7f3a\u5c11 TheTVDB \u7de8\u865f",
"OptionMissingOverview": "\u7f3a\u5c11\u6982\u6cc1",
"OptionFileMetadataYearMismatch": "\u6a94\u6848\/\u8cc7\u6599\u5e74\u4efd\u5c6c\u6027\u4e0d\u5339\u914d",
"TabGeneral": "\u4e00\u822c",
"TitleSupport": "\u652f\u63f4",
- "LabelSeasonNumber": "\u5b63\u5ea6\u6232\u96c6\u96c6\u6578",
"TabLog": "\u65e5\u8a8c",
- "LabelEpisodeNumber": "\u6232\u96c6\u96c6\u6578",
"TabAbout": "\u95dc\u65bc",
"TabSupporterKey": "\u6703\u54e1\u9396\u5319",
"TabBecomeSupporter": "\u6210\u70ba\u6703\u54e1",
- "ProjectHasCommunity": "Emby \u64c1\u6709\u4e00\u500b\u9f90\u5927\u7528\u6236\u8207\u8ca2\u737b\u8005\u7684\u8a0e\u8ad6\u5340\u3002",
"CheckoutKnowledgeBase": "\u67e5\u770b\u6211\u5011\u7684\u77e5\u8b58\u5eab\uff0c\u6703\u5e6b\u52a9\u60a8\u5f97\u5230\u6700\u597d Emby \u7684\u9ad4\u9a57\u3002",
"SearchKnowledgeBase": "\u641c\u5c0b\u77e5\u8b58\u5eab",
"VisitTheCommunity": "\u8a2a\u554f\u8a0e\u8ad6\u5340",
- "VisitProjectWebsite": "\u8a2a\u554f Emby \u7db2\u7ad9",
- "VisitProjectWebsiteLong": "\u6355\u6349 Emby \u6700\u65b0\u52d5\u614b\uff0c\u4e26\u8ffd\u968f\u958b\u767c\u8005\u7684 Blog \u3002",
"OptionHideUser": "\u7531\u767b\u9304\u9801\u9762\u96b1\u85cf\u6b64\u7528\u6236",
- "OptionHideUserFromLoginHelp": "\u6709\u6548\u79c1\u4eba\u6216\u96b1\u85cf\u7684\u7ba1\u7406\u54e1\u5e33\u6236\u3002\u7528\u6236\u9700\u624b\u52d5\u8f38\u5165\u7528\u6236\u540d\u548c\u5bc6\u78bc\u767b\u9304\u3002",
"OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236",
"OptionDisableUserHelp": "\u5982\u679c\u7981\u7528\u6b64\u4f3a\u670d\u5668\uff0c\u5c07\u4e0d\u5141\u8a31\u6b64\u7528\u6236\u7684\u4efb\u4f55\u9023\u63a5\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002",
"HeaderAdvancedControl": "\u9032\u968e\u63a7\u5236",
"LabelName": "\u540d\u7a31\uff1a",
- "ButtonHelp": "\u5e6b\u52a9",
"OptionAllowUserToManageServer": "\u5141\u8a31\u6b64\u7528\u6236\u7ba1\u7406\u4f3a\u670d\u5668",
"HeaderFeatureAccess": "\u53ef\u4ee5\u4f7f\u7528\u7684\u529f\u80fd",
"OptionAllowMediaPlayback": "\u5141\u8a31\u5a92\u9ad4\u64ad\u653e",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "\u5141\u8a31\u522a\u9664\u5a92\u9ad4",
"OptionAllowManageLiveTv": "\u5141\u8a31\u7ba1\u7406\u96fb\u8996\u76f4\u64ad\u9304\u5f71",
"OptionAllowRemoteControlOthers": "\u5141\u8a31\u9060\u7a0b\u63a7\u5236\u5176\u4ed6\u7528\u6236",
- "OptionAllowRemoteSharedDevices": "\u5141\u8a31\u9060\u7a0b\u63a7\u5236\u5171\u4eab\u88dd\u7f6e",
- "OptionAllowRemoteSharedDevicesHelp": "DLNA \u88dd\u7f6e\u6703\u88ab\u8a8d\u70ba\u662f\u5171\u4eab\uff0c\u76f4\u5230\u7528\u6236\u9032\u884c\u63a7\u5236\u3002",
- "OptionAllowLinkSharing": "\u5141\u8a31\u793e\u4ea4\u5a92\u9ad4\u5206\u4eab",
- "OptionAllowLinkSharingHelp": "\u5171\u4eab\u53ea\u6709\u5305\u542b\u5a92\u9ad4\u4fe1\u606f\u7684\u7db2\u9801\u3002\u5a92\u9ad4\u6587\u4ef6\u5f9e\u672a\u516c\u958b\u5206\u4eab\u3002\u5171\u4eab\u662f\u6709\u6642\u9650\uff0c\u671f\u6eff\u662f\u57fa\u65bc\u4f3a\u670d\u5668\u7684\u5206\u4eab\u8a2d\u7f6e\u3002",
- "HeaderSharing": "\u5206\u4eab",
- "HeaderRemoteControl": "\u9059\u63a7\u5668",
"OptionMissingTmdbId": "\u7f3a\u5c11 TMDB \u7de8\u865f",
"OptionIsHD": "\u9ad8\u6e05",
"OptionIsSD": "\u6a19\u6e05",
@@ -336,17 +205,12 @@
"ButtonSelect": "\u9078\u64c7",
"ButtonGroupVersions": "\u7248\u672c",
"PismoMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528 Pismo File Mount \u3002",
- "TangibleSoftwareMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528\u53ef\u884c\u89e3\u6c7a\u7684 Java\/C\uff03 \u8f49\u63db\u5668\u3002",
- "HeaderCredits": "\u7a4d\u5206",
"PleaseSupportOtherProduces": "\u8acb\u5927\u5bb6\u652f\u6301\u6211\u5011\u5176\u4ed6\u514d\u8cbb\u7522\u54c1\uff1a",
"VersionNumber": "\u7248\u672c {0}",
"TabPaths": "\u8def\u5f91",
"TabServer": "\u4f3a\u670d\u5668",
"TabTranscoding": "\u8f49\u78bc\u4e2d",
"TitleAdvanced": "\u9032\u968e",
- "OptionRelease": "\u5b98\u65b9\u767c\u4f48",
- "OptionBeta": "\u516c\u6e2c",
- "OptionDev": "\u958b\u767c\uff08\u4e0d\u7a69\u5b9a\uff09",
"LabelAllowServerAutoRestart": "\u5141\u8a31\u81ea\u52d5\u91cd\u555f\u4f86\u66f4\u65b0\u4f3a\u670d\u5668",
"LabelAllowServerAutoRestartHelp": "\u4f3a\u670d\u5668\u5c07\u53ea\u5728\u6c92\u6709\u6d3b\u8e8d\u7528\u6236\u548c\u7a7a\u6a94\u671f\u91cd\u555f\u3002",
"LabelEnableDebugLogging": "\u555f\u7528\u8a18\u9304\u9664\u932f\u65e5\u8a8c",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "\u9078\u64c7\u81ea\u5b9a\u7fa9\u6240\u9700\u8def\u5f91\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002",
"LabelCachePath": "\u7de9\u5b58\u8def\u5f91\uff1a",
"LabelCachePathHelp": "\u9078\u64c7\u81ea\u5b9a\u7fa9\u4f3a\u670d\u5668\u6240\u9700\u7684\u7de9\u5b58\u6587\u4ef6\u8def\u5f91\uff0c\u5982\u5716\u50cf\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002",
- "LabelRecordingPath": "\u9304\u5f71\u8def\u5f91\uff1a",
- "LabelRecordingPathHelp": "\u9078\u64c7\u81ea\u5b9a\u7fa9\u4f4d\u7f6e\u4f86\u4fdd\u5b58\u9304\u5f71\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002",
"LabelImagesByNamePath": "\u540d\u7a31\u5716\u50cf\u6587\u4ef6\u593e\u8def\u5f91\uff1a",
"LabelImagesByNamePathHelp": "\u9078\u64c7\u6f14\u54e1\u3001\u98a8\u683c\u548c\u5de5\u4f5c\u5ba4\u5716\u50cf\u4e0b\u8f09\u7684\u81ea\u5b9a\u7fa9\u4f4d\u7f6e\u3002",
"LabelMetadataPath": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027\u8def\u5f91\uff1a",
@@ -374,14 +236,11 @@
"OptionEpisodes": "\u5287\u96c6",
"OptionOtherVideos": "\u5176\u4ed6\u5f71\u50cf",
"TitleMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027",
- "LabelAutomaticUpdates": "\u555f\u7528\u81ea\u52d5\u66f4\u65b0",
"LabelAutomaticUpdatesTmdb": "\u555f\u7528\u5f9e TheMovieDB.org \u81ea\u52d5\u66f4\u65b0",
"LabelAutomaticUpdatesTvdb": "\u555f\u7528\u5f9e TheTVDB.com \u81ea\u52d5\u66f4\u65b0",
"LabelAutomaticUpdatesFanartHelp": "\u5982\u679c\u555f\u7528\uff0c\u65b0\u5716\u50cf\u6703\u81ea\u52d5\u4e0b\u8f09\u4e26\u6dfb\u52a0\u5230 fanart.tv\u3002\u73fe\u6709\u5716\u50cf\u4e0d\u6703\u88ab\u53d6\u4ee3\u3002\u9019\u5c07\u5c0e\u81f4\u8cc7\u6599\u5eab\u7684\u6383\u63cf\u6642\u9593\u8b8a\u9577\uff0c\u5f15\u81f4\u78c1\u789f\u983b\u7e41\u8b80\u5beb\u3002",
"LabelAutomaticUpdatesTmdbHelp": "\u5982\u679c\u555f\u7528\uff0c\u65b0\u5716\u50cf\u6703\u81ea\u52d5\u4e0b\u8f09\u4e26\u6dfb\u52a0\u5230 TheMovieDB.org\u3002\u73fe\u6709\u5716\u50cf\u4e0d\u6703\u88ab\u53d6\u4ee3\u3002\u9019\u5c07\u5c0e\u81f4\u8cc7\u6599\u5eab\u7684\u6383\u63cf\u6642\u9593\u8b8a\u9577\uff0c\u5f15\u81f4\u78c1\u789f\u983b\u7e41\u8b80\u5beb\u3002",
"LabelAutomaticUpdatesTvdbHelp": "\u5982\u679c\u555f\u7528\uff0c\u65b0\u5716\u50cf\u6703\u81ea\u52d5\u4e0b\u8f09\u4e26\u6dfb\u52a0\u5230 TheTVDB.com\u3002\u73fe\u6709\u5716\u50cf\u4e0d\u6703\u88ab\u53d6\u4ee3\u3002\u9019\u5c07\u5c0e\u81f4\u8cc7\u6599\u5eab\u7684\u6383\u63cf\u6642\u9593\u8b8a\u9577\uff0c\u5f15\u81f4\u78c1\u789f\u983b\u7e41\u8b80\u5beb\u3002",
- "LabelFanartApiKey": "\u500b\u4eba API \u9396\u5319\uff1a",
- "LabelFanartApiKeyHelp": "\u8acb\u6c42 fanart \u6642\u6c92\u6709\u500b\u4eba API \u9396\u5319\uff0c \u6279\u51c6\u6642\u9593\u5c07\u9700\u5c11\u65bc7\u5929\u3002\u5982\u679c\u60a8\u64c1\u6709\u500b\u4eba API \u9396\u5319\uff0c\u6279\u51c6\u6642\u9593\u6703\u6e1b\u5c11\u81f348\u5c0f\u6642\u3002\u5982\u679c\u60a8\u4e5f\u662f fanart VIP \u6703\u54e1\uff0c\u6279\u51c6\u6642\u9593\u6703\u518d\u6e1b\u5c11\u81f310\u5206\u9418\u3002",
"ExtractChapterImagesHelp": "\u7ae0\u7bc0\u5716\u50cf\u63d0\u53d6\u5c07\u5141\u8a31\u5ba2\u6236\u7aef\u986f\u793a\u9078\u64c7\u5716\u5f62\u5834\u666f\u83dc\u55ae\u3002\u9019\u500b\u904e\u7a0b\u53ef\u80fd\u6703\u5f88\u6162\uff0c\u5f15\u81f4CPU\u8ca0\u8f09\uff0c\u4e26\u53ef\u80fd\u9700\u8981\u5e7eGB\u7684\u7a7a\u9593\u3002\u5b83\u904b\u884c\u6642\u5f71\u50cf\u6703\u88ab\u767c\u73fe\uff0c\u540c\u6642\u4e5f\u53ef\u4f5c\u70ba\u591c\u9593\u4efb\u52d9\u6642\u9593\u8868\u3002\u9019\u5728\u8a08\u5283\u4efb\u52d9\u5340\u57df\u8a2d\u7f6e\u3002\u9019\u4e0d\u5efa\u8b70\u5728\u9ad8\u5cf0\u4f7f\u7528\u6642\u9593\u904b\u884c\u3002",
"LabelMetadataDownloadLanguage": "\u504f\u597d\u4e0b\u8f09\u8a9e\u8a00\uff1a",
"ButtonAutoScroll": "\u81ea\u52d5\u6efe\u52d5",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "\u7531\u672c\u5730\u767b\u5165\u6642\uff0c\u4e26\u4e0d\u4e00\u5b9a\u9700\u8981\u5bc6\u78bc\u3002",
"TabGuide": "\u6307\u5357",
"TabChannels": "\u983b\u9053",
- "TabCollections": "\u6536\u85cf",
"HeaderChannels": "\u983b\u9053",
"TabRecordings": "\u9304\u5f71",
"TabScheduled": "\u9810\u5b9a",
"TabSeries": "\u96fb\u8996\u5287",
- "TabFavorites": "\u6211\u7684\u6700\u53d7",
- "TabMyLibrary": "\u6211\u7684\u5a92\u9ad4\u5eab",
"ButtonCancelRecording": "\u53d6\u6d88\u9304\u5f71",
"HeaderPrePostPadding": "\u524d\/\u5f8c\u88dc\u5145",
"LabelPrePaddingMinutes": "\u6e96\u5099\u88dc\u5145(\u5206\u9418)\uff1a",
@@ -416,13 +272,10 @@
"TabStatus": "\u72c0\u6cc1",
"TabSettings": "\u8a2d\u5b9a",
"ButtonRefreshGuideData": "\u91cd\u65b0\u6574\u7406\u96fb\u8996\u6307\u5357\u8cc7\u6599",
- "ButtonRefresh": "\u91cd\u65b0\u6574\u7406",
- "ButtonAdvancedRefresh": "\u9032\u968e\u91cd\u65b0\u6574\u7406",
"OptionPriority": "\u512a\u5148\u5ea6",
"OptionRecordOnAllChannels": "\u8a18\u9304\u6240\u6709\u983b\u9053",
"OptionRecordAnytime": "\u6bcf\u4e00\u6b21\u8a18\u9304",
"OptionRecordOnlyNewEpisodes": "\u53ea\u8a18\u9304\u6700\u65b0\u5287\u96c6",
- "HeaderRepeatingOptions": "\u91cd\u64ad\u9078\u9805",
"HeaderDays": "\u9304\u5f71\u65e5",
"HeaderActiveRecordings": "\u6b63\u5728\u9304\u5f71\u7684\u7bc0\u76ee",
"HeaderLatestRecordings": "\u6700\u8fd1\u9304\u5f71\u7684\u7bc0\u76ee",
@@ -431,17 +284,16 @@
"ButtonEdit": "\u7de8\u8f2f",
"ButtonRecord": "\u9304\u5f71",
"ButtonDelete": "\u5220\u9664",
- "ButtonRemove": "\u6e05\u9664",
"OptionRecordSeries": "\u9304\u5f71\u96fb\u8996\u5287",
"HeaderDetails": "\u8a73\u60c5",
+ "OptionFolderSort": "\u6587\u4ef6\u593e",
+ "OptionBackdrop": "\u80cc\u666f",
"TitleLiveTV": "\u96fb\u8996\u76f4\u64ad",
"LabelNumberOfGuideDays": "\u4e0b\u8f09\u96fb\u8996\u6307\u5357\u65e5\u6578",
"LabelNumberOfGuideDaysHelp": "\u4e0b\u8f09\u66f4\u591a\u96fb\u8996\u6307\u5357\u8cc7\u6599\u6703\u63d0\u4f9b\u66f4\u597d\u6642\u9593\u8868\u67e5\u770b\u80fd\u529b\uff0c\u4f46\u5c07\u9700\u8981\u66f4\u9577\u7684\u4e0b\u8f09\u6642\u9593\u3002\u81ea\u52d5\u57fa\u65bc\u983b\u9053\u6578\u76ee\u4f86\u9078\u64c7\u3002",
"OptionAutomatic": "\u81ea\u52d5",
- "HeaderServices": "\u670d\u52d9",
"LiveTvPluginRequired": "\u9700\u8981\u81f3\u5c11\u5b89\u88dd\u4e00\u500b\u96fb\u8996\u529f\u80fd\u63d2\u4ef6\u4f86\u7e7c\u7e8c",
"LiveTvPluginRequiredHelp": "\u8acb\u5b89\u88dd\u4e00\u500b\u7531\u6211\u5011\u63d0\u4f9b\u7684\u63d2\u4ef6\uff0c\u5982 Next Pvr \u6216 ServerWmc\u3002",
- "LabelCustomizeOptionsPerMediaType": "\u81ea\u8a02\u5a92\u9ad4\u985e\u578b\uff1a",
"OptionDownloadThumbImage": "\u7e2e\u5716",
"OptionDownloadMenuImage": "\u83dc\u55ae",
"OptionDownloadLogoImage": "\u6a19\u8a8c",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "\u4e3b\u8981\u5716\u50cf",
"HeaderFetchImages": "\u7372\u53d6\u5716\u50cf\uff1a",
"HeaderImageSettings": "\u5716\u50cf\u8a2d\u7f6e",
- "TabOther": "\u5176\u5b83",
"LabelMaxBackdropsPerItem": "\u6bcf\u500b\u80cc\u666f\u9805\u76ee\u7684\u6700\u5927\u6578\u76ee\uff1a",
"LabelMaxScreenshotsPerItem": "\u6bcf\u4ef6\u622a\u5716\u7269\u54c1\u7684\u6700\u5927\u6578\u91cf\uff1a",
"LabelMinBackdropDownloadWidth": "\u6700\u5c0f\u4e0b\u8f09\u80cc\u666f\u5bec\u5ea6\uff1a",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u6f14\u54e1\u9663\u5bb9",
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd",
"ButtonSplitVersionsApart": "\u9664\u4e86\u5206\u62c6\u7248\u672c",
+ "ButtonPlayTrailer": "\u9810\u544a\u7247",
"LabelMissing": "\u7f3a\u5c11",
"LabelOffline": "\u96e2\u7dda",
"PathSubstitutionHelp": "\u66ff\u4ee3\u8def\u5f91\u7528\u65bc\u4f3a\u670d\u5668\u4e0a\u7684\u8def\u5f91\u4f86\u6620\u5c04\u5230\u5ba2\u6236\u7aef\u80fd\u5920\u8a2a\u554f\u7684\u8def\u5f91\u3002\u5141\u8a31\u5ba2\u6236\u7aef\u76f4\u63a5\u8a2a\u554f\u5a92\u9ad4\u4f3a\u670d\u5668\uff0c\u5b83\u5011\u662f\u80fd\u5920\u76f4\u63a5\u901a\u904e\u7db2\u7d61\u64ad\u653e\u4f86\u907f\u514d\u4f7f\u7528\u4f3a\u670d\u5668\u8cc7\u6e90\u7528\u65bc\u4e32\u6d41\u548c\u8f49\u78bc\u3002",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "\u6700\u9ad8\u8cea\u7d20",
"OptionEnableDebugTranscodingLogging": "\u8a18\u9304\u8f49\u78bc\u9664\u932f\u4fe1\u606f\u5230\u65e5\u8a8c",
"OptionEnableDebugTranscodingLoggingHelp": "\u9019\u6703\u5efa\u7acb\u4e00\u500b\u9f90\u5927\u7684\u65e5\u8a8c\u6587\u4ef6\uff0c\u5efa\u8b70\u53ea\u9700\u9032\u884c\u6545\u969c\u6392\u9664\u6642\u555f\u52d5\u3002",
+ "ButtonNew": "\u6700\u65b0",
+ "TabMetadata": "\u5a92\u9ad4\u8cc7\u6599\u5c6c\u6027",
+ "TabImages": "Images",
+ "TabCollectionTitles": "\u6a19\u984c",
+ "ButtonSearch": "Search",
+ "ButtonRemove": "\u6e05\u9664",
"EditCollectionItemsHelp": "\u6dfb\u52a0\u6216\u522a\u9664\u6b64\u6536\u85cf\u5eab\u7684\u4efb\u4f55\u96fb\u5f71\uff0c\u96fb\u8996\u5287\uff0c\u76f8\u7c3f\uff0c\u66f8\u7c4d\u6216\u904a\u6232\u3002",
"HeaderAddTitles": "\u65b0\u589e\u6a19\u984c",
"LabelEnableDlnaPlayTo": "\u555f\u7528\u64ad\u653e\u5230 DLNA \u8a2d\u5099",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "\u7cfb\u7d71\u8def\u5f91",
"LinkCommunity": "\u8a0e\u8ad6\u5340",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "Api \u6587\u4ef6",
"LabelFriendlyServerName": "\u53cb\u597d\u4f3a\u670d\u5668\u540d\u7a31\uff1a",
"LabelFriendlyServerNameHelp": "\u6b64\u540d\u7a31\u5c07\u7528\u65bc\u8fa8\u8b58\u4f3a\u670d\u5668\u3002\u5982\u679c\u7559\u7a7a\uff0c\u5c07\u4f7f\u7528\u96fb\u8166\u540d\u7a31\u3002",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "\u7ffb\u8b6f Emby \u662f\u4e00\u500b\u9032\u884c\u4e2d\u7684\u9805\u76ee\u3002",
"LabelReadHowYouCanContribute": "\u4e86\u89e3\u5982\u4f55\u53ef\u4ee5\u4f5c\u51fa\u8ca2\u737b\u3002",
"HeaderNewCollection": "\u65b0\u6536\u85cf\u5eab",
- "ButtonSubmit": "\u63d0\u4ea4",
"ButtonCreate": "\u5efa\u7acb",
- "LabelCustomCss": "\u81ea\u8a02 CSS\uff1a",
- "LabelCustomCssHelp": "\u61c9\u7528\u81ea\u5b9a CSS Web \u754c\u9762\u3002",
- "LabelLocalHttpServerPortNumber": "\u672c\u5730 http \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
- "LabelLocalHttpServerPortNumberHelp": "TCP \u9023\u63a5\u57e0\u865f\u78bc\u61c9\u7d81\u5b9a\u5230 Emby http \u4f3a\u670d\u5668\u3002",
- "LabelPublicHttpPort": "\u516c\u5171 http \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
- "LabelPublicHttpPortHelp": "\u516c\u5171\u9023\u63a5\u57e0\u865f\u78bc\u61c9\u6620\u5c04\u5230\u672c\u5730 http \u9023\u63a5\u57e0\u3002",
- "LabelPublicHttpsPort": "\u516c\u5171 https \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
- "LabelPublicHttpsPortHelp": "\u516c\u5171\u9023\u63a5\u57e0\u865f\u78bc\u61c9\u6620\u5c04\u5230\u672c\u5730 https \u9023\u63a5\u57e0\u3002",
- "LabelEnableHttps": "\u5831\u544a https \u4f5c\u70ba\u5916\u90e8\u5730\u5740",
- "LabelEnableHttpsHelp": "\u5982\u679c\u555f\u7528\uff0c\u4f3a\u670d\u5668\u6703\u5831\u544a https URL \u5916\u90e8\u5730\u5740\u7d66\u5ba2\u6236\u3002",
- "LabelHttpsPort": "\u672c\u5730 https \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
- "LabelHttpsPortHelp": "TCP \u9023\u63a5\u57e0\u865f\u78bc\u61c9\u7d81\u5b9a\u5230 Emby https \u4f3a\u670d\u5668\u3002",
"LabelWebSocketPortNumber": "WebSocket \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
- "LabelEnableAutomaticPortMap": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u6620\u5c04",
- "LabelEnableAutomaticPortMapHelp": "\u81ea\u52d5\u5617\u8a66\u6620\u5c04\u516c\u5171\u9023\u63a5\u57e0\u5230 UPnP \u672c\u5730\u9023\u63a5\u57e0\u3002\u9019\u53ef\u80fd\u7121\u6cd5\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u3002",
"LabelExternalDDNS": "\u5916\u90e8 WAN \u5730\u5740\uff1a",
"LabelExternalDDNSHelp": "\u5982\u679c\u4f60\u5728\u6b64\u8f38\u5165\u4e00\u500b\u52d5\u614b DNS\u3002\u7576\u9060\u7a0b\u9023\u63a5 Emby \u61c9\u7528\u7a0b\u5f0f\u6642\u5c07\u6703\u4f7f\u7528\u5b83\u3002\u7559\u7a7a\u70ba\u81ea\u52d5\u6aa2\u6e2c\u3002",
"TabResume": "\u6062\u5fa9\u64ad\u653e",
@@ -591,8 +433,12 @@
"HeaderProgram": "\u7a0b\u5f0f",
"HeaderClients": "\u5ba2\u6236\u7aef",
"LabelCompleted": "\u5df2\u5b8c\u6210",
+ "LabelFailed": "\u5931\u6557",
"LabelSkipped": "\u7565\u904e",
"HeaderEpisodeOrganization": "\u6574\u7406\u5287\u96c6",
+ "LabelSeries": "\u96fb\u8996\u5287\uff1a",
+ "LabelSeasonNumber": "\u5b63\u5ea6\u6232\u96c6\u96c6\u6578",
+ "LabelEpisodeNumber": "\u6232\u96c6\u96c6\u6578",
"LabelEndingEpisodeNumber": "\u5df2\u5b8c\u7d50\u6232\u96c6\u96c6\u6578\uff1a",
"LabelEndingEpisodeNumberHelp": "\u53ea\u9700\u591a\u5287\u96c6\u6587\u4ef6",
"HeaderSupportTheTeam": "\u8d0a\u52a9 Emby \u5718\u968a",
@@ -627,16 +473,13 @@
"OptionMove": "\u79fb\u52d5",
"LabelTransferMethodHelp": "\u5f9e\u76e3\u8996\u6587\u4ef6\u593e\u8907\u88fd\u6216\u79fb\u52d5\u6587\u4ef6",
"HeaderLatestNews": "\u6700\u65b0\u6d88\u606f",
- "HeaderHelpImproveProject": "\u5e6b\u52a9\u6539\u5584 Emby",
"HeaderRunningTasks": "\u904b\u884c\u4efb\u52d9",
"HeaderActiveDevices": "\u751f\u6548\u88dd\u7f6e",
"HeaderPendingInstallations": "\u7b49\u5f85\u5b89\u88dd",
- "HeaderServerInformation": "\u4f3a\u670d\u5668\u8cc7\u8a0a",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "\u64ad\u653e\u8a2d\u7f6e",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "\u901a\u77e5",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "\u9078\u64c7\u7528\u6236\uff1a",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "Search",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "\u6c92\u6709\u5b57\u5e55",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "\u9078\u64c7\u6b64\u7528\u6236\u5171\u4eab\u983b\u9053\u3002\u7ba1\u7406\u54e1\u5c07\u80fd\u5920\u4f7f\u7528\u8cc7\u6599\u7ba1\u7406\u5668\u800c\u7de8\u8f2f\u6240\u6709\u6587\u4ef6\u593e\u3002",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "\u670d\u52d9\uff1a",
+ "LabelStatus": "\u72c0\u614b\uff1a",
+ "LabelVersion": "\u7248\u672c\uff1a",
+ "LabelLastResult": "\u6700\u5f8c\u7d50\u679c\uff1a",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "\u9810\u8a2d",
+ "OptionOnlyForcedSubtitles": "\u53ea\u984c\u793a\u5f37\u5236\u5b57\u5e55",
+ "OptionAlwaysPlaySubtitles": "\u7e3d\u662f\u984c\u793a\u5b57\u5e55",
+ "OptionDefaultSubtitlesHelp": "\u7576\u97f3\u8a0a\u662f\u5916\u6587\u5339\u914d\u8a9e\u8a00\u7684\u5b57\u5e55\u5c07\u88ab\u512a\u5148\u8f09\u5165\u3002",
+ "OptionOnlyForcedSubtitlesHelp": "\u5f37\u5236\u8f09\u5165\u5df2\u6a19\u8a18\u5b57\u5e55\u3002",
+ "OptionAlwaysPlaySubtitlesHelp": "\u8a9e\u8a00\u5339\u914d\u7684\u5b57\u5e55\u5c07\u512a\u5148\u8003\u616e\u5728\u5339\u914d\u7684\u97f3\u8a0a\u8f09\u5165\u3002",
+ "OptionNoSubtitlesHelp": "\u9810\u8a2d\u4e0d\u8f09\u5165\u5b57\u5e55\u3002",
+ "TangibleSoftwareMessage": "\u901a\u904e\u5df2\u8cfc\u8cb7\u901a\u884c\u8b49\uff0c\u4f7f\u7528\u53ef\u884c\u89e3\u6c7a\u7684 Java\/C\uff03 \u8f49\u63db\u5668\u3002",
+ "HeaderCredits": "\u7a4d\u5206",
+ "TabCollections": "\u6536\u85cf",
+ "TabFavorites": "\u6211\u7684\u6700\u53d7",
+ "TabMyLibrary": "\u6211\u7684\u5a92\u9ad4\u5eab",
+ "LabelCustomizeOptionsPerMediaType": "\u81ea\u8a02\u5a92\u9ad4\u985e\u578b\uff1a",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "\u5176\u5b83",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "\u6dfb\u52a0\u5230\u6536\u85cf\u5eab",
+ "ButtonSubmit": "\u63d0\u4ea4",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "\u91cd\u65b0\u6574\u7406",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "\u7ba1\u7406\uff1a",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "\u97f3\u8a0a",
+ "HeaderVideo": "\u5f71\u7247",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "\u6df7\u5408\u5167\u5bb9",
+ "FolderTypeMovies": "\u96fb\u5f71",
+ "FolderTypeMusic": "\u97f3\u6a02",
+ "FolderTypeAdultVideos": "\u6210\u4eba\u5f71\u7247",
+ "FolderTypePhotos": "\u76f8\u7247",
+ "FolderTypeMusicVideos": "\u97f3\u6a02\u5f71\u7247",
+ "FolderTypeHomeVideos": "\u9996\u9801\u5f71\u7247",
+ "FolderTypeGames": "\u904a\u6232",
+ "FolderTypeBooks": "\u66f8\u85c9",
+ "FolderTypeTvShows": "\u96fb\u8996\u7bc0\u76ee",
+ "LabelArtists": "\u85dd\u4eba\uff1a",
+ "LabelArtistsHelp": "\u5206\u958b\u591a\u91cd\u4f7f\u7528",
+ "ButtonAdvancedRefresh": "\u9032\u968e\u91cd\u65b0\u6574\u7406",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "\u6dfb\u52a0\u672c\u5730\u7528\u6236",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "\u672c\u5730 http \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
+ "LabelLocalHttpServerPortNumberHelp": "TCP \u9023\u63a5\u57e0\u865f\u78bc\u61c9\u7d81\u5b9a\u5230 Emby http \u4f3a\u670d\u5668\u3002",
+ "LabelEnableAutomaticPortMap": "\u555f\u7528\u81ea\u52d5\u9023\u63a5\u57e0\u6620\u5c04",
+ "LabelEnableAutomaticPortMapHelp": "\u81ea\u52d5\u5617\u8a66\u6620\u5c04\u516c\u5171\u9023\u63a5\u57e0\u5230 UPnP \u672c\u5730\u9023\u63a5\u57e0\u3002\u9019\u53ef\u80fd\u7121\u6cd5\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u3002",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "\u9080\u8acb\u7528\u6236",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "\u6d77\u5831\u5361\u7247",
+ "OptionThumbCard": "\u7e2e\u5716\u5361\u7247",
+ "OptionAllowRemoteSharedDevices": "\u5141\u8a31\u9060\u7a0b\u63a7\u5236\u5171\u4eab\u88dd\u7f6e",
+ "OptionAllowRemoteSharedDevicesHelp": "DLNA \u88dd\u7f6e\u6703\u88ab\u8a8d\u70ba\u662f\u5171\u4eab\uff0c\u76f4\u5230\u7528\u6236\u9032\u884c\u63a7\u5236\u3002",
+ "HeaderRemoteControl": "\u9059\u63a7\u5668",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api \u6587\u4ef6",
+ "LabelDeveloperResources": "\u958b\u767c\u8005\u8cc7\u6e90",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "\u4f3a\u670d\u5668\u8cc7\u8a0a",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "\u7e7c\u627f",
+ "LabelContentType": "\u5167\u5bb9\u985e\u578b\uff1a",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "\u5e6b\u52a9",
+ "TabAccess": "\u53ef\u4ee5\u901a\u884c",
+ "HeaderDeviceAccess": "\u5141\u8a31\u88dd\u7f6e\u901a\u884c",
+ "OptionEnableAccessFromAllDevices": "\u555f\u7528\u6240\u6709\u88dd\u5099\u901a\u884c\u8b49",
+ "DeviceAccessHelp": "\u53ea\u9069\u7528\u65bc\u552f\u4e00\u8fa8\u8b58\u65b9\u6cd5\u7684\u88dd\u7f6e\uff0c\u4e26\u4e0d\u6703\u963b\u6b62\u700f\u89bd\u5668\u8a2a\u554f\u3002\u5df2\u904e\u6ffe\u7684\u7528\u6236\u8a2d\u5099\u6703\u88ab\u963b\u6b62\u8a2a\u554f\uff0c\u76f4\u5230\u4ed6\u5011\u4f7f\u7528\u5df2\u6279\u51c6\u88dd\u7f6e\u3002",
+ "ButtonQuickStartGuide": "\u5feb\u901f\u5165\u9580\u6307\u5357",
+ "HeaderSyncJobInfo": "\u540c\u6b65\u4efb\u52d9",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby \u670d\u52d9\u689d\u6b3e",
+ "MessagePleaseAcceptTermsOfService": "\u7e7c\u7e8c\u4e4b\u524d\uff0c\u8acb\u5148\u63a5\u53d7\u670d\u52d9\u548c\u96b1\u79c1\u653f\u7b56\u689d\u6b3e\u3002",
+ "OptionIAcceptTermsOfService": "\u6211\u9858\u610f\u63a5\u53d7\u670d\u52d9\u689d\u6b3e",
+ "ButtonPrivacyPolicy": "\u96b1\u79c1\u653f\u7b56",
+ "ButtonTermsOfService": "\u670d\u52d9\u689d\u6b3e",
+ "OptionHideUserFromLoginHelp": "\u6709\u6548\u79c1\u4eba\u6216\u96b1\u85cf\u7684\u7ba1\u7406\u54e1\u5e33\u6236\u3002\u7528\u6236\u9700\u624b\u52d5\u8f38\u5165\u7528\u6236\u540d\u548c\u5bc6\u78bc\u767b\u9304\u3002",
+ "LabelEnterConnectUserName": "\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\uff1a",
+ "LabelEnterConnectUserNameHelp": "\u9019\u662f\u60a8 Emby \u5728\u7dda\u5e33\u6236\u7684\u7528\u6236\u540d\u6216\u96fb\u5b50\u90f5\u4ef6\u3002",
+ "HeaderTV": "\u96fb\u8996",
+ "OptionDetectArchiveFilesAsMedia": "\u5075\u6e2c\u6a94\u6848\u6587\u4ef6\u70ba\u5a92\u9ad4",
+ "OptionDetectArchiveFilesAsMediaHelp": "\u5982\u679c\u555f\u7528\uff0c .rar \u548c .zip \u7684\u6587\u4ef6\u5c07\u6703\u88ab\u5075\u6e2c\u70ba\u5a92\u9ad4\u3002",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "\u5141\u8a31\u6240\u6709\u983b\u9053\u901a\u884c",
+ "LabelAutomaticUpdates": "\u555f\u7528\u81ea\u52d5\u66f4\u65b0",
+ "LabelFanartApiKey": "\u500b\u4eba API \u9396\u5319\uff1a",
+ "LabelFanartApiKeyHelp": "\u8acb\u6c42 fanart \u6642\u6c92\u6709\u500b\u4eba API \u9396\u5319\uff0c \u6279\u51c6\u6642\u9593\u5c07\u9700\u5c11\u65bc7\u5929\u3002\u5982\u679c\u60a8\u64c1\u6709\u500b\u4eba API \u9396\u5319\uff0c\u6279\u51c6\u6642\u9593\u6703\u6e1b\u5c11\u81f348\u5c0f\u6642\u3002\u5982\u679c\u60a8\u4e5f\u662f fanart VIP \u6703\u54e1\uff0c\u6279\u51c6\u6642\u9593\u6703\u518d\u6e1b\u5c11\u81f310\u5206\u9418\u3002",
+ "HeaderDeveloperOptions": "\u958b\u767c\u8005\u9078\u9805",
+ "OptionEnableWebClientResponseCache": "\u555f\u7528\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u7de9\u5b58",
+ "OptionDisableForDevelopmentHelp": "\u70ba\u91dd\u5c0d\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u672a\u4f86\u767c\u5c55\u6240\u8a2d\u7f6e\u3002",
+ "OptionEnableWebClientResourceMinification": "\u555f\u7528\u6700\u5c11\u5316\u6d88\u8017\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u8cc7\u6e90",
+ "LabelDashboardSourcePath": "\u7db2\u7d61\u5ba2\u6236\u7aef\u7684\u8def\u5f91\uff1a",
+ "LabelDashboardSourcePathHelp": "\u5982\u679c\u5f9e\u8def\u5f91\u904b\u884c\u4f3a\u670d\u5668\uff0c\u8acb\u9078\u64c7\u63a7\u5236\u53f0\u754c\u9762\u6587\u4ef6\u593e\u7684\u8def\u5f91\u3002\u6240\u6709\u5728\u6b64\u4f4d\u7f6e\u7684\u7db2\u7d61\u5ba2\u6236\u7aef\u6587\u4ef6\u5c07\u6703\u88ab\u904b\u884c\u3002",
+ "HeaderPaths": "\u8def\u5f91",
+ "TitleNotifications": "\u901a\u77e5",
+ "ButtonDonateWithPayPal": "\u5f9e PayPal \u6350\u8d08",
+ "TitleScheduledTasks": "\u4efb\u52d9\u6642\u9593\u8868",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "\u516c\u5171 http \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
+ "LabelPublicHttpPortHelp": "\u516c\u5171\u9023\u63a5\u57e0\u865f\u78bc\u61c9\u6620\u5c04\u5230\u672c\u5730 http \u9023\u63a5\u57e0\u3002",
+ "LabelPublicHttpsPort": "\u516c\u5171 https \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
+ "LabelPublicHttpsPortHelp": "\u516c\u5171\u9023\u63a5\u57e0\u865f\u78bc\u61c9\u6620\u5c04\u5230\u672c\u5730 https \u9023\u63a5\u57e0\u3002",
+ "LabelEnableHttps": "\u5831\u544a https \u4f5c\u70ba\u5916\u90e8\u5730\u5740",
+ "LabelEnableHttpsHelp": "\u5982\u679c\u555f\u7528\uff0c\u4f3a\u670d\u5668\u6703\u5831\u544a https URL \u5916\u90e8\u5730\u5740\u7d66\u5ba2\u6236\u3002",
+ "LabelHttpsPort": "\u672c\u5730 https \u9023\u63a5\u57e0\u865f\u78bc\uff1a",
+ "LabelHttpsPortHelp": "TCP \u9023\u63a5\u57e0\u865f\u78bc\u61c9\u7d81\u5b9a\u5230 Emby https \u4f3a\u670d\u5668\u3002",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "\u81ea\u8a02 CSS\uff1a",
+ "LabelCustomCssHelp": "\u61c9\u7528\u81ea\u5b9a CSS Web \u754c\u9762\u3002",
+ "ButtonConvertMedia": "\u8f49\u63db\u5a92\u9ad4",
+ "ButtonOrganize": "\u6574\u7406",
+ "ButtonJoinTheDevelopmentTeam": "\u52a0\u5165\u6211\u5011\u7684\u767c\u5c55\u5718\u968a",
+ "OptionEnableAccessToAllLibraries": "\u5141\u8a31\u6240\u6709\u5a92\u9ad4\u5eab\u901a\u884c",
+ "LabelSyncTempPath": "\u81e8\u6642\u6587\u4ef6\u7684\u8def\u5f91\uff1a",
+ "LabelSyncTempPathHelp": "\u9078\u64c7\u81ea\u5b9a\u540c\u6b65\u5de5\u4f5c\u7684\u6587\u4ef6\u593e\u3002\u5728\u540c\u6b65\u904e\u7a0b\u4e2d\u5efa\u7acb\u7684\u8f49\u63db\u5a92\u9ad4\u5c07\u88ab\u5b58\u653e\u5230\u9019\u88e1\u3002",
+ "LabelCustomCertificatePath": "\u81ea\u5b9a\u8b49\u66f8\u8def\u5f91\uff1a",
+ "LabelCustomCertificatePathHelp": "\u63d0\u4f9b\u81ea\u5df1\u7684 SSL \u8b49\u66f8 .pfx \u6587\u4ef6\u3002\u5982\u679c\u5ffd\u7565\uff0c\u4f3a\u670d\u5668\u5c07\u5efa\u7acb\u4e00\u500b\u81ea\u5bb6\u7c3d\u540d\u8b49\u66f8\u3002",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "\u540c\u6b65\u9700\u8981\u6703\u54e1",
+ "HeaderEnjoyDayTrial": "\u4eab\u53d7\u514d\u8cbb14\u5929\u8a66\u7528\u671f",
+ "CategorySync": "\u540c\u6b65",
+ "RegisterWithPayPal": "\u7531 PayPal \u8a3b\u518a",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "\u7c21\u6613 Pin \u78bc",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "PIN \u78bc\uff1a",
+ "ButtonExit": "\u96e2\u958b",
+ "HeaderGrownupsOnly": "\u6210\u4eba\u60c5\u7bc0 !",
+ "DividerOr": "-- \u6216 --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "\u8981\u7e7c\u7e8c\u8a2a\u554f\uff0c\u8acb\u9078\u64c7\u60a8\u7684\u7c21\u6613 PIN \u78bc",
+ "KidsModeAdultInstruction": "\u9ede\u64ca\u53f3\u4e0b\u89d2\u7684\u9396\u5b9a\u6a19\u8a8c\uff0c\u8a2d\u7f6e\u6216\u96e2\u958b\u5152\u7ae5\u6a21\u5f0f\u3002\u60a8\u7684 PIN \u78bc\u662f\u5fc5\u9700\u7684\u3002",
+ "ButtonConfigurePinCode": "\u8a2d\u7f6e PIN \u78bc",
+ "HeaderAdultsReadHere": "\u6210\u4eba\u89c0\u8cde\uff01",
+ "LabelEnableEnhancedMovies": "\u555f\u7528\u96fb\u5f71\u589e\u5f37\u5c55\u793a",
+ "LabelEnableEnhancedMoviesHelp": "\u7576\u555f\u7528\u6642\uff0c\u96fb\u5f71\u5c07\u6703\u986f\u793a\u6210\u6587\u4ef6\u593e\uff0c\u5305\u62ec\u9810\u544a\uff0c\u5de5\u4f5c\u4eba\u54e1\uff0c\u6f14\u54e1\u9663\u5bb9\u7b49\u76f8\u95dc\u5167\u5bb9\u3002",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "\u6642\u9650\uff08\u5c0f\u6642\uff09\uff1a",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "\u5df2\u5b89\u88dd\u7684\u670d\u52d9",
+ "HeaderAvailableServices": "\u53ef\u63d0\u4f9b\u7684\u670d\u52d9",
+ "MessageNoServicesInstalled": "\u6c92\u6709\u5b89\u88dd\u7684\u670d\u52d9\u3002",
+ "TitlePlugins": "\u63d2\u4ef6",
+ "HeaderServices": "\u670d\u52d9",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "\u6703\u54e1\u512a\u52e2",
+ "HeaderAddUser": "\u6dfb\u52a0\u7528\u6236",
+ "LabelAddConnectSupporterHelp": "\u8981\u6dfb\u52a0\u6c92\u6709\u5217\u51fa\u7684\u7528\u6236\uff0c\u9996\u5148\u9700\u8981\u4ed6\u5011\u7684\u5e33\u6236\uff0c\u7531\u500b\u4eba\u5e33\u6236\u8cc7\u6599\u9801\u9023\u63a5\u5230 Emby Connect \u3002",
+ "TabPlaylist": "\u64ad\u653e\u6e05\u55ae",
+ "LabelConfigureServer": "\u8a2d\u7f6e Emby",
+ "WelcomeToProject": "\u6b61\u8fce\u4f86\u5230 Emby\uff01",
+ "LinkedToEmbyConnect": "\u9023\u63a5 Emby Connect",
+ "ProjectHasCommunity": "Emby \u64c1\u6709\u4e00\u500b\u9f90\u5927\u7528\u6236\u8207\u8ca2\u737b\u8005\u7684\u8a0e\u8ad6\u5340\u3002",
+ "VisitProjectWebsite": "\u8a2a\u554f Emby \u7db2\u7ad9",
+ "VisitProjectWebsiteLong": "\u6355\u6349 Emby \u6700\u65b0\u52d5\u614b\uff0c\u4e26\u8ffd\u968f\u958b\u767c\u8005\u7684 Blog \u3002",
+ "HeaderHelpImproveProject": "\u5e6b\u52a9\u6539\u5584 Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "\u96b1\u85cf\u6700\u65b0\u5a92\u9ad4\u5167\u5bb9",
+ "TabSuggestions": "\u5efa\u8b70",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "\u540c\u6b65",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "\u91cd\u64ad\u9078\u9805",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "\u5141\u8a31\u793e\u4ea4\u5a92\u9ad4\u5206\u4eab",
+ "OptionAllowLinkSharingHelp": "\u5171\u4eab\u53ea\u6709\u5305\u542b\u5a92\u9ad4\u4fe1\u606f\u7684\u7db2\u9801\u3002\u5a92\u9ad4\u6587\u4ef6\u5f9e\u672a\u516c\u958b\u5206\u4eab\u3002\u5171\u4eab\u662f\u6709\u6642\u9650\uff0c\u671f\u6eff\u662f\u57fa\u65bc\u4f3a\u670d\u5668\u7684\u5206\u4eab\u8a2d\u7f6e\u3002",
+ "HeaderSharing": "\u5206\u4eab",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "\u9304\u5f71\u8def\u5f91\uff1a",
+ "LabelRecordingPathHelp": "\u9078\u64c7\u81ea\u5b9a\u7fa9\u4f4d\u7f6e\u4f86\u4fdd\u5b58\u9304\u5f71\u3002\u4fdd\u7559\u7a7a\u767d\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/html/zh-TW.json b/dashboard-ui/strings/html/zh-TW.json
index a097c48e87..e93b534483 100644
--- a/dashboard-ui/strings/html/zh-TW.json
+++ b/dashboard-ui/strings/html/zh-TW.json
@@ -1,27 +1,21 @@
{
"LabelExit": "\u96e2\u958b",
"LabelVisitCommunity": "\u8a2a\u554f\u793e\u5340",
- "LabelGithub": "Github",
"LabelSwagger": "Swagger",
"LabelStandard": "\u6a19\u6dee",
- "LabelApiDocumentation": "Api Documentation",
- "LabelDeveloperResources": "Developer Resources",
"LabelBrowseLibrary": "\u700f\u89bd\u5a92\u9ad4\u5eab",
- "LabelConfigureServer": "Configure Emby",
"LabelOpenLibraryViewer": "\u6253\u958b\u5a92\u9ad4\u5eab\u700f\u89bd\u5668",
"LabelRestartServer": "\u91cd\u65b0\u555f\u52d5\u4f3a\u5668\u670d",
"LabelShowLogWindow": "\u986f\u793a\u65e5\u8a8c",
"LabelPrevious": "\u4e0a\u4e00\u500b",
"LabelFinish": "\u5b8c\u7d50",
- "FolderTypeMixed": "Mixed content",
"LabelNext": "\u4e0b\u4e00\u500b",
"LabelYoureDone": "\u5b8c\u6210!",
- "ButtonAddToCollection": "Add to Collection",
- "ButtonMoreItems": "More",
- "WelcomeToProject": "Welcome to Emby!",
+ "OptionRelease": "Official Release",
+ "OptionBeta": "\u516c\u6e2c\u7248\u672c",
+ "OptionDev": "Dev (Unstable)",
"ThisWizardWillGuideYou": "This wizard will help guide you through the setup process. To begin, please select your preferred language.",
"TellUsAboutYourself": "\u8acb\u4ecb\u7d39\u4e00\u4e0b\u81ea\u5df1",
- "ButtonQuickStartGuide": "Quick start guide",
"LabelYourFirstName": "\u4f60\u7684\u540d\u5b57\uff1a",
"MoreUsersCanBeAddedLater": "\u5f80\u5f8c\u53ef\u4ee5\u5728\u63a7\u5236\u53f0\u5167\u6dfb\u52a0\u66f4\u591a\u7528\u6236\u3002",
"UserProfilesIntro": "Emby includes built-in support for user profiles, enabling each user to have their own display settings, playstate and parental controls.",
@@ -37,91 +31,14 @@
"LabelChapterImageExtractionForMoviesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs as a nightly scheduled task, although this is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelEnableAutomaticPortMapping": "\u555f\u7528\u81ea\u52d5\u7aef\u53e3\u8f49\u767c",
"LabelEnableAutomaticPortMappingHelp": "UPnP\u5141\u8a31\u8def\u7531\u5668\u81ea\u52d5\u8a2d\u7f6e\u5f9e\u800c\u53ef\u4ee5\u66f4\u65b9\u4fbf\u5730\u9060\u7a0b\u8a2a\u554f\u4f3a\u670d\u5668\u3002\u9019\u53ef\u80fd\u4e0d\u9069\u7528\u65bc\u67d0\u4e9b\u8def\u7531\u5668\u578b\u865f\u3002",
- "HeaderTermsOfService": "Emby Terms of Service",
- "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
- "OptionIAcceptTermsOfService": "I accept the terms of service",
- "ButtonPrivacyPolicy": "Privacy policy",
- "ButtonTermsOfService": "Terms of Service",
- "HeaderDeveloperOptions": "Developer Options",
- "OptionEnableWebClientResponseCache": "Enable web client response caching",
- "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
- "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
- "LabelDashboardSourcePath": "Web client source path:",
- "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
- "ButtonConvertMedia": "Convert media",
- "ButtonOrganize": "Organize",
- "LinkedToEmbyConnect": "Linked to Emby Connect",
- "HeaderSupporterBenefits": "Supporter Benefits",
- "HeaderAddUser": "Add User",
- "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
- "LabelPinCode": "Pin code:",
- "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
- "HeaderSync": "Sync",
"ButtonOk": "OK",
"ButtonCancel": "\u53d6\u6d88",
- "ButtonExit": "Exit",
- "ButtonNew": "\u5275\u5efa",
- "HeaderTV": "TV",
- "HeaderAudio": "Audio",
- "HeaderVideo": "Video",
- "HeaderPaths": "Paths",
- "CategorySync": "Sync",
- "TabPlaylist": "Playlist",
- "HeaderEasyPinCode": "Easy Pin Code",
- "HeaderGrownupsOnly": "Grown-ups Only!",
- "DividerOr": "-- or --",
- "HeaderInstalledServices": "Installed Services",
- "HeaderAvailableServices": "Available Services",
- "MessageNoServicesInstalled": "No services are currently installed.",
- "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
- "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
- "ButtonConfigurePinCode": "Configure pin code",
- "HeaderAdultsReadHere": "Adults Read Here!",
- "RegisterWithPayPal": "Register with PayPal",
- "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
- "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
- "LabelSyncTempPath": "Temporary file path:",
- "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
- "LabelCustomCertificatePath": "Custom certificate path:",
- "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
- "TitleNotifications": "Notifications",
- "ButtonDonateWithPayPal": "Donate with PayPal",
- "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
- "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
- "LabelEnterConnectUserName": "Username or email:",
- "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
- "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
- "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
- "HeaderSyncJobInfo": "Sync Job",
- "OptionReleaseDate": "Release Date",
- "ButtonPlayTrailer": "Trailer",
- "LabelFailed": "Failed",
- "LabelSeries": "Series:",
- "ButtonFullscreen": "Toggle fullscreen",
- "ButtonAudioTracks": "Audio tracks",
- "ButtonPreviousTrack": "Previous track",
- "ButtonNextTrack": "Next track",
- "HeaderEpisodes": "Episodes:",
- "FolderTypeMovies": "Movies",
- "FolderTypeMusic": "Music",
- "FolderTypeAdultVideos": "Adult videos",
- "FolderTypePhotos": "Photos",
- "FolderTypeMusicVideos": "Music videos",
- "FolderTypeHomeVideos": "Home videos",
- "FolderTypeGames": "Games",
- "FolderTypeBooks": "Books",
- "FolderTypeTvShows": "TV",
- "FolderTypeInherit": "Inherit",
- "LabelContentType": "Content type:",
- "TitleScheduledTasks": "Scheduled Tasks",
"HeaderSetupLibrary": "\u8a2d\u7f6e\u4f60\u7684\u5a92\u9ad4\u5eab",
"ButtonAddMediaFolder": "\u6dfb\u52a0\u5a92\u9ad4\u6587\u4ef6\u593e",
"LabelFolderType": "\u5a92\u9ad4\u6587\u4ef6\u593e\u985e\u578b\uff1a",
"ReferToMediaLibraryWiki": "\u53c3\u7167\u5a92\u9ad4\u5eab\u7ef4\u57fa",
"LabelCountry": "\u570b\u5bb6\uff1a",
"LabelLanguage": "\u8a9e\u8a00\uff1a",
- "LabelTimeLimitHours": "Time limit (hours):",
- "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
"HeaderPreferredMetadataLanguage": "\u9996\u9078\u5a92\u9ad4\u8cc7\u6599\u8a9e\u8a00\uff1a",
"LabelSaveLocalMetadata": "\u4fdd\u5b58\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5230\u5a92\u9ad4\u6a94\u6848\u6240\u5728\u7684\u6587\u4ef6\u593e",
"LabelSaveLocalMetadataHelp": "\u76f4\u63a5\u4fdd\u5b58\u5a92\u9ad4\u5716\u50cf\u53ca\u8cc7\u6599\u5230\u5a92\u9ad4\u6240\u5728\u7684\u6587\u4ef6\u593e\u80fd\u4f7f\u7de8\u8f2f\u5de5\u4f5c\u66f4\u5bb9\u6613\u3002",
@@ -130,37 +47,16 @@
"TabPreferences": "\u504f\u597d",
"TabPassword": "\u5bc6\u78bc",
"TabLibraryAccess": "\u5a92\u9ad4\u5eab\u700f\u89bd\u6b0a\u9650",
- "TabAccess": "Access",
"TabImage": "\u5716\u50cf",
"TabProfile": "\u914d\u7f6e",
- "TabMetadata": "\u5a92\u9ad4\u8cc7\u6599",
- "TabImages": "\u5716\u50cf",
- "TabNotifications": "Notifications",
- "TabCollectionTitles": "\u6a19\u984c",
- "HeaderDeviceAccess": "Device Access",
- "OptionEnableAccessFromAllDevices": "Enable access from all devices",
- "OptionEnableAccessToAllChannels": "Enable access to all channels",
- "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
- "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
"LabelDisplayMissingEpisodesWithinSeasons": "\u986f\u793a\u7bc0\u76ee\u5b63\u5ea6\u5167\u7f3a\u5c11\u7684\u55ae\u5143",
"LabelUnairedMissingEpisodesWithinSeasons": "\u5728\u7bc0\u76ee\u5b63\u5ea6\u5167\u986f\u793a\u9084\u672a\u767c\u4f48\u7684\u55ae\u5143",
"HeaderVideoPlaybackSettings": "\u8996\u983b\u56de\u653e\u8a2d\u7f6e",
- "HeaderPlaybackSettings": "Playback Settings",
"LabelAudioLanguagePreference": "\u97f3\u983b\u8a9e\u8a00\u504f\u597d\u9078\u9805\uff1a",
"LabelSubtitleLanguagePreference": "\u5b57\u5e55\u8a9e\u8a00\u504f\u597d\u9078\u9805\uff1a",
- "OptionDefaultSubtitles": "Default",
- "OptionOnlyForcedSubtitles": "Only forced subtitles",
- "OptionAlwaysPlaySubtitles": "Always play subtitles",
- "OptionNoSubtitles": "No Subtitles",
- "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
- "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
- "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
- "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
"TabProfiles": "\u914d\u7f6e",
"TabSecurity": "\u5b89\u5168\u6027",
"ButtonAddUser": "\u6dfb\u52a0\u7528\u6236",
- "ButtonAddLocalUser": "Add Local User",
- "ButtonInviteUser": "Invite User",
"ButtonSave": "\u4fdd\u5b58",
"ButtonResetPassword": "\u91cd\u8a2d\u5bc6\u78bc",
"LabelNewPassword": "\u65b0\u5bc6\u78bc\uff1a",
@@ -170,9 +66,7 @@
"LabelMaxParentalRating": "\u6700\u5927\u5141\u8a31\u7684\u5bb6\u9577\u8a55\u7d1a\uff1a",
"MaxParentalRatingHelp": "\u5177\u6709\u8f03\u9ad8\u7684\u5bb6\u9577\u8a55\u7d1a\u5167\u5bb9\u5c07\u5f9e\u9019\u7528\u6236\u88ab\u96b1\u85cf",
"LibraryAccessHelp": "\u9078\u64c7\u5a92\u9ad4\u6587\u4ef6\u593e\u8207\u9019\u7528\u6236\u5171\u4eab\u3002\u7ba1\u7406\u54e1\u5c07\u53ef\u4ee5\u4f7f\u7528\u5a92\u9ad4\u8cc7\u6599\u64da\u7ba1\u7406\u5668\u7de8\u8f2f\u6240\u6709\u7684\u5a92\u9ad4\u6587\u4ef6\u593e\u3002",
- "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"ButtonDeleteImage": "\u522a\u9664\u5716\u50cf",
- "LabelSelectUsers": "Select users:",
"ButtonUpload": "\u4e0a\u8f09",
"HeaderUploadNewImage": "\u4e0a\u8f09\u65b0\u5716\u50cf",
"LabelDropImageHere": "Drop image here",
@@ -180,7 +74,6 @@
"MessageNothingHere": "\u9019\u88e1\u6c92\u6709\u4ec0\u9ebc\u3002",
"MessagePleaseEnsureInternetMetadata": "\u8acb\u78ba\u4fdd\u5df2\u555f\u7528\u5f9e\u4e92\u806f\u7db2\u4e0b\u8f09\u5a92\u9ad4\u8cc7\u6599\u3002",
"TabSuggested": "\u5efa\u8b70",
- "TabSuggestions": "Suggestions",
"TabLatest": "\u6700\u65b0",
"TabUpcoming": "\u5373\u5c07\u767c\u5e03",
"TabShows": "\u7bc0\u76ee",
@@ -217,6 +110,7 @@
"OptionAscending": "\u5347\u5e8f",
"OptionDescending": "\u964d\u5e8f",
"OptionRuntime": "\u64ad\u653e\u9577\u5ea6",
+ "OptionReleaseDate": "Release Date",
"OptionPlayCount": "\u64ad\u653e\u6b21\u6578",
"OptionDatePlayed": "\u64ad\u653e\u65e5\u671f",
"OptionDateAdded": "\u6dfb\u52a0\u65e5\u671f",
@@ -226,16 +120,10 @@
"OptionTrackName": "\u66f2\u76ee\u540d\u7a31",
"OptionCommunityRating": "\u793e\u5340\u8a55\u5206",
"OptionNameSort": "\u540d\u5b57",
- "OptionFolderSort": "Folders",
"OptionBudget": "\u9810\u7b97",
"OptionRevenue": "\u6536\u5165",
"OptionPoster": "\u6d77\u5831",
- "OptionPosterCard": "Poster card",
- "OptionBackdrop": "\u80cc\u666f",
"OptionTimeline": "\u6642\u9593\u8ef8",
- "OptionThumb": "\u7e2e\u7565\u5716",
- "OptionThumbCard": "Thumb card",
- "OptionBanner": "\u6a6b\u5411\u5716",
"OptionCriticRating": "\u8a55\u8ad6\u5bb6\u8a55\u50f9",
"OptionVideoBitrate": "\u8996\u983b\u6bd4\u7279\u7387",
"OptionResumable": "\u53ef\u6062\u5fa9",
@@ -243,7 +131,6 @@
"ScheduledTasksTitle": "Scheduled Tasks",
"TabMyPlugins": "\u6211\u7684\u63d2\u4ef6",
"TabCatalog": "\u76ee\u9304",
- "TitlePlugins": "Plugins",
"HeaderAutomaticUpdates": "\u81ea\u52d5\u66f4\u65b0",
"HeaderNowPlaying": "\u6b63\u5728\u64ad\u653e",
"HeaderLatestAlbums": "\u6700\u65b0\u5c08\u8f2f",
@@ -251,16 +138,14 @@
"HeaderRecentlyPlayed": "\u6700\u8fd1\u64ad\u653e",
"HeaderFrequentlyPlayed": "\u7d93\u5e38\u64ad\u653e",
"DevBuildWarning": "\u958b\u767c\u7248\u672c\u662f\u6700\u524d\u6cbf\u7684\u3002\u7d93\u5e38\u767c\u4f48\uff0c\u4f46\u9019\u4e9b\u7248\u672c\u5c1a\u672a\u7d93\u904e\u6e2c\u8a66\u3002\u7a0b\u5f0f\u53ef\u80fd\u6703\u5d29\u6f70\uff0c\u6240\u6709\u529f\u80fd\u53ef\u80fd\u7121\u6cd5\u6b63\u5e38\u5de5\u4f5c\u3002",
+ "OptionThumb": "\u7e2e\u7565\u5716",
+ "OptionBanner": "\u6a6b\u5411\u5716",
"LabelVideoType": "\u8996\u983b\u985e\u578b\uff1a",
"OptionBluray": "\u85cd\u5149",
"OptionDvd": "DVD",
"OptionIso": "\u93e1\u50cf\u6a94",
"Option3D": "3D",
"LabelFeatures": "\u529f\u80fd\uff1a",
- "LabelService": "Service:",
- "LabelStatus": "Status:",
- "LabelVersion": "Version:",
- "LabelLastResult": "Last result:",
"OptionHasSubtitles": "\u5b57\u5e55",
"OptionHasTrailer": "Trailer",
"OptionHasThemeSong": "\u4e3b\u984c\u66f2",
@@ -268,8 +153,6 @@
"TabMovies": "\u96fb\u5f71",
"TabStudios": "\u5de5\u4f5c\u5ba4",
"TabTrailers": "\u9810\u544a",
- "LabelArtists": "Artists:",
- "LabelArtistsHelp": "Separate multiple using ;",
"HeaderLatestMovies": "\u6700\u65b0\u96fb\u5f71",
"HeaderLatestTrailers": "\u6700\u65b0\u9810\u544a",
"OptionHasSpecialFeatures": "Special Features",
@@ -290,32 +173,24 @@
"OptionFriday": "\u661f\u671f\u4e94",
"OptionSaturday": "\u661f\u671f\u516d",
"HeaderManagement": "Management",
- "LabelManagement": "Management:",
"OptionMissingImdbId": "\u7f3a\u5c11IMDB\u7de8\u865f",
"OptionMissingTvdbId": "\u7f3a\u5c11TheTVDB\u7de8\u865f",
"OptionMissingOverview": "\u7f3a\u5c11\u6982\u8ff0",
"OptionFileMetadataYearMismatch": "\u6a94\u6848\/\u5a92\u9ad4\u8cc7\u6599\u5e74\u4efd\u4e0d\u5339\u914d",
"TabGeneral": "\u4e00\u822c",
"TitleSupport": "\u652f\u63f4",
- "LabelSeasonNumber": "Season number",
"TabLog": "\u65e5\u8a8c",
- "LabelEpisodeNumber": "Episode number",
"TabAbout": "\u95dc\u65bc",
"TabSupporterKey": "\u652f\u6301\u8005\u5e8f\u865f",
"TabBecomeSupporter": "\u6210\u70ba\u652f\u6301\u8005",
- "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
"CheckoutKnowledgeBase": "Check out our knowledge base to help you get the most out of Emby.",
"SearchKnowledgeBase": "\u641c\u7d22\u77e5\u8b58\u5eab",
"VisitTheCommunity": "\u8a2a\u554f\u793e\u5340",
- "VisitProjectWebsite": "Visit the Emby Web Site",
- "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
"OptionHideUser": "\u5f9e\u767b\u9304\u9801\u9762\u96b1\u85cf\u6b64\u7528\u6236",
- "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
"OptionDisableUser": "\u7981\u7528\u6b64\u7528\u6236",
"OptionDisableUserHelp": "\u88ab\u7981\u7528\u7684\u7528\u6236\u5c07\u4e0d\u5141\u8a31\u9023\u63a5\u4f3a\u670d\u5668\u3002\u73fe\u6709\u7684\u9023\u63a5\u5c07\u88ab\u5373\u6642\u7d42\u6b62\u3002",
"HeaderAdvancedControl": "\u9ad8\u7d1a\u63a7\u5236",
"LabelName": "\u540d\u5b57\uff1a",
- "ButtonHelp": "Help",
"OptionAllowUserToManageServer": "\u5141\u8a31\u9019\u7528\u6236\u7ba1\u7406\u4f3a\u670d\u5668",
"HeaderFeatureAccess": "\u53ef\u4ee5\u4f7f\u7528\u7684\u529f\u80fd",
"OptionAllowMediaPlayback": "Allow media playback",
@@ -323,12 +198,6 @@
"OptionAllowDeleteLibraryContent": "Allow media deletion",
"OptionAllowManageLiveTv": "Allow Live TV recording management",
"OptionAllowRemoteControlOthers": "Allow remote control of other users",
- "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
- "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
- "OptionAllowLinkSharing": "Allow social media sharing",
- "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
- "HeaderSharing": "Sharing",
- "HeaderRemoteControl": "Remote Control",
"OptionMissingTmdbId": "\u7f3a\u5c11TMDB\u7de8\u865f",
"OptionIsHD": "\u9ad8\u6e05",
"OptionIsSD": "\u6a19\u6e05",
@@ -336,17 +205,12 @@
"ButtonSelect": "\u9078\u64c7",
"ButtonGroupVersions": "\u7248\u672c",
"PismoMessage": "\u901a\u904e\u6350\u8d08\u7684\u8edf\u4ef6\u8a31\u53ef\u8b49\u4f7f\u7528Pismo File Mount\u3002",
- "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
- "HeaderCredits": "Credits",
"PleaseSupportOtherProduces": "\u8acb\u652f\u6301\u6211\u5011\u5176\u4ed6\u7684\u514d\u8cbb\u7522\u54c1\uff1a",
"VersionNumber": "\u7248\u672c{0}",
"TabPaths": "\u8def\u5f91",
"TabServer": "\u4f3a\u670d\u5668",
"TabTranscoding": "\u8f49\u78bc\u4e2d",
"TitleAdvanced": "\u9032\u968e",
- "OptionRelease": "Official Release",
- "OptionBeta": "\u516c\u6e2c\u7248\u672c",
- "OptionDev": "Dev (Unstable)",
"LabelAllowServerAutoRestart": "\u5141\u8a31\u4f3a\u670d\u5668\u81ea\u52d5\u91cd\u65b0\u555f\u52d5\u53bb\u5b89\u88dd\u66f4\u65b0\u8cc7\u6599",
"LabelAllowServerAutoRestartHelp": "\u4f3a\u670d\u5668\u53ea\u6703\u5728\u6c92\u6709\u6d3b\u8e8d\u7528\u6236\u53ca\u7a7a\u9592\u671f\u9593\u91cd\u65b0\u555f\u52d5\u3002",
"LabelEnableDebugLogging": "\u8a18\u9304\u9664\u932f\u4fe1\u606f\u5230\u65e5\u8a8c",
@@ -356,8 +220,6 @@
"LabelCustomPaths": "\u6307\u5b9a\u6240\u9700\u7684\u81ea\u5b9a\u7fa9\u8def\u5f91\u3002\u7559\u7a7a\u4ee5\u4f7f\u7528\u9ed8\u8a8d\u503c\u3002",
"LabelCachePath": "\u7de9\u5b58\u8def\u5f91\uff1a",
"LabelCachePathHelp": "Specify a custom location for server cache files, such as images. Leave blank to use the server default.",
- "LabelRecordingPath": "Recording path:",
- "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"LabelImagesByNamePath": "\u540d\u7a31\u5716\u50cf\u6587\u4ef6\u593e\u8def\u5f91\uff1a",
"LabelImagesByNamePathHelp": "Specify a custom location for downloaded actor, genre and studio images.",
"LabelMetadataPath": "\u5a92\u9ad4\u8cc7\u6599\u6587\u4ef6\u593e\u8def\u5f91\uff1a",
@@ -374,14 +236,11 @@
"OptionEpisodes": "Episodes",
"OptionOtherVideos": "\u5176\u4ed6\u8996\u983b",
"TitleMetadata": "Metadata",
- "LabelAutomaticUpdates": "Enable automatic updates",
"LabelAutomaticUpdatesTmdb": "\u5f9eTheMovieDB.org\u81ea\u52d5\u66f4\u65b0",
"LabelAutomaticUpdatesTvdb": "\u5f9eTheTVDB.com\u81ea\u52d5\u66f4\u65b0",
"LabelAutomaticUpdatesFanartHelp": "If enabled, new images will be downloaded automatically as they're added to fanart.tv. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTmdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheMovieDB.org. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
"LabelAutomaticUpdatesTvdbHelp": "If enabled, new images will be downloaded automatically as they're added to TheTVDB.com. Existing images will not be replaced. This will cause library scans to take longer and will result in more disk activity.",
- "LabelFanartApiKey": "Personal api key:",
- "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
"ExtractChapterImagesHelp": "Extracting chapter images will allow clients to display graphical scene selection menus. The process can be slow, cpu-intensive and may require several gigabytes of space. It runs when videos are discovered, and also as a nightly scheduled task. The schedule is configurable in the scheduled tasks area. It is not recommended to run this task during peak usage hours.",
"LabelMetadataDownloadLanguage": "Preferred download language:",
"ButtonAutoScroll": "\u81ea\u52d5\u6efe\u52d5",
@@ -398,13 +257,10 @@
"PasswordLocalhostMessage": "\u5f9e\u672c\u5730\u767b\u9304\u6642\uff0c\u5bc6\u78bc\u4e0d\u662f\u5fc5\u9700\u7684\u3002",
"TabGuide": "\u6307\u5357",
"TabChannels": "\u983b\u5ea6",
- "TabCollections": "Collections",
"HeaderChannels": "\u983b\u5ea6",
"TabRecordings": "\u9304\u5f71",
"TabScheduled": "\u9810\u5b9a",
"TabSeries": "\u96fb\u8996\u5287",
- "TabFavorites": "Favorites",
- "TabMyLibrary": "My Library",
"ButtonCancelRecording": "\u53d6\u6d88\u9304\u5f71",
"HeaderPrePostPadding": "Pre\/Post Padding",
"LabelPrePaddingMinutes": "Pre-padding minutes:",
@@ -416,13 +272,10 @@
"TabStatus": "Status",
"TabSettings": "\u8a2d\u5b9a",
"ButtonRefreshGuideData": "\u5237\u65b0\u96fb\u8996\u6307\u5357\u8cc7\u6599",
- "ButtonRefresh": "Refresh",
- "ButtonAdvancedRefresh": "Advanced Refresh",
"OptionPriority": "\u512a\u5148",
"OptionRecordOnAllChannels": "Record on all channels",
"OptionRecordAnytime": "Record at any time",
"OptionRecordOnlyNewEpisodes": "\u53ea\u9304\u5f71\u6700\u65b0\u7684\u55ae\u5143",
- "HeaderRepeatingOptions": "Repeating Options",
"HeaderDays": "\u9304\u5f71\u65e5",
"HeaderActiveRecordings": "\u6b63\u5728\u9304\u5f71\u7684\u7bc0\u76ee",
"HeaderLatestRecordings": "\u6700\u65b0\u9304\u5f71\u7684\u7bc0\u76ee",
@@ -431,17 +284,16 @@
"ButtonEdit": "\u7de8\u8f2f",
"ButtonRecord": "\u958b\u59cb\u9304\u5f71",
"ButtonDelete": "\u522a\u9664",
- "ButtonRemove": "\u6e05\u9664",
"OptionRecordSeries": "\u9304\u5f71\u96fb\u8996\u5287",
"HeaderDetails": "\u8a73\u7d30\u8cc7\u6599",
+ "OptionFolderSort": "Folders",
+ "OptionBackdrop": "\u80cc\u666f",
"TitleLiveTV": "\u96fb\u8996\u529f\u80fd",
"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.",
"OptionAutomatic": "\u81ea\u52d5",
- "HeaderServices": "Services",
"LiveTvPluginRequired": "\u9700\u8981\u5b89\u88dd\u81f3\u5c11\u4e00\u500b\u96fb\u8996\u529f\u80fd\u63d2\u4ef6\u53bb\u7e7c\u7e8c",
"LiveTvPluginRequiredHelp": "\u8acb\u5b89\u88dd\u4e00\u500b\u6211\u5011\u63d0\u4f9b\u7684\u63d2\u4ef6\uff0c\u5982Next PVR\u7684\u6216ServerWmc\u3002",
- "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
"OptionDownloadThumbImage": "\u7e2e\u7565\u5716",
"OptionDownloadMenuImage": "\u83dc\u55ae",
"OptionDownloadLogoImage": "\u6a19\u8a8c",
@@ -453,7 +305,6 @@
"OptionDownloadPrimaryImage": "\u4e3b\u8981\u5716",
"HeaderFetchImages": "\u6293\u53d6\u5716\u50cf\uff1a",
"HeaderImageSettings": "\u5716\u50cf\u8a2d\u7f6e",
- "TabOther": "Other",
"LabelMaxBackdropsPerItem": "\u6bcf\u500b\u9805\u76ee\u80cc\u666f\u7684\u6700\u5927\u6578\u76ee\uff1a",
"LabelMaxScreenshotsPerItem": "\u6bcf\u4ef6\u7269\u54c1\u622a\u5716\u7684\u6700\u5927\u6578\u91cf\uff1a",
"LabelMinBackdropDownloadWidth": "\u6700\u5c0f\u80cc\u666f\u4e0b\u8f09\u5bec\u5ea6\uff1a",
@@ -501,6 +352,7 @@
"HeaderCastCrew": "\u62cd\u651d\u4eba\u54e1\u53ca\u6f14\u54e1",
"HeaderAdditionalParts": "\u9644\u52a0\u90e8\u4efd",
"ButtonSplitVersionsApart": "Split Versions Apart",
+ "ButtonPlayTrailer": "Trailer",
"LabelMissing": "\u7f3a\u5c11",
"LabelOffline": "\u96e2\u7dda",
"PathSubstitutionHelp": "Path substitutions are used for mapping a path on the server to a path that clients are able to access. By allowing clients direct access to media on the server they may be able to play them directly over the network and avoid using server resources to stream and transcode them.",
@@ -527,6 +379,12 @@
"OptionMaxQualityTranscoding": "\u6700\u9ad8\u54c1\u8cea",
"OptionEnableDebugTranscodingLogging": "\u8a18\u9304\u8f49\u78bc\u9664\u932f\u4fe1\u606f\u5230\u65e5\u8a8c",
"OptionEnableDebugTranscodingLoggingHelp": "\u9019\u5c07\u5275\u5efa\u4e00\u500b\u975e\u5e38\u5927\u7684\u65e5\u8a8c\u6587\u4ef6\uff0c\u5efa\u8b70\u53ea\u9700\u8981\u9032\u884c\u6545\u969c\u6392\u9664\u6642\u555f\u52d5\u3002",
+ "ButtonNew": "\u5275\u5efa",
+ "TabMetadata": "\u5a92\u9ad4\u8cc7\u6599",
+ "TabImages": "\u5716\u50cf",
+ "TabCollectionTitles": "\u6a19\u984c",
+ "ButtonSearch": "\u641c\u7d22",
+ "ButtonRemove": "\u6e05\u9664",
"EditCollectionItemsHelp": "\u6dfb\u52a0\u6216\u522a\u9664\u9019\u5408\u96c6\u4e2d\u7684\u4efb\u4f55\u96fb\u5f71\uff0c\u96fb\u8996\u5287\uff0c\u76f8\u518a\uff0c\u66f8\u7c4d\u6216\u904a\u6232\u3002",
"HeaderAddTitles": "\u6dfb\u52a0\u6a19\u984c",
"LabelEnableDlnaPlayTo": "\u64ad\u653e\u5230DLNA\u8a2d\u5099",
@@ -546,7 +404,6 @@
"HeaderSystemPaths": "\u7cfb\u7d71\u8def\u5f91",
"LinkCommunity": "\u793e\u5340",
"LinkGithub": "Github",
- "LinkApi": "Api",
"LinkApiDocumentation": "API\u6587\u6a94",
"LabelFriendlyServerName": "\u53cb\u597d\u4f3a\u670d\u5668\u540d\u7a31\uff1a",
"LabelFriendlyServerNameHelp": "\u6b64\u540d\u7a31\u5c07\u7528\u65bc\u6a19\u8b58\u4f3a\u670d\u5668\u3002\u5982\u679c\u7559\u7a7a\uff0c\u8a08\u7b97\u6a5f\u540d\u7a31\u5c07\u88ab\u4f7f\u7528\u3002",
@@ -554,23 +411,8 @@
"LabelPreferredDisplayLanguageHelp": "Translating Emby is an ongoing project.",
"LabelReadHowYouCanContribute": "Learn how you can contribute.",
"HeaderNewCollection": "\u65b0\u5408\u96c6",
- "ButtonSubmit": "Submit",
"ButtonCreate": "\u5275\u5efa",
- "LabelCustomCss": "Custom css:",
- "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
- "LabelLocalHttpServerPortNumber": "Local http port number:",
- "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
- "LabelPublicHttpPort": "Public http port number:",
- "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
- "LabelPublicHttpsPort": "Public https port number:",
- "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
- "LabelEnableHttps": "Report https as external address",
- "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
- "LabelHttpsPort": "Local https port number:",
- "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
"LabelWebSocketPortNumber": "\u7db2\u7d61\u5957\u63a5\u7aef\u53e3\uff1a",
- "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
- "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelExternalDDNS": "External WAN Address:",
"LabelExternalDDNSHelp": "If you have a dynamic DNS enter it here. Emby apps will use it when connecting remotely. Leave empty for automatic detection.",
"TabResume": "\u6062\u5fa9\u64ad\u653e",
@@ -591,8 +433,12 @@
"HeaderProgram": "Program",
"HeaderClients": "Clients",
"LabelCompleted": "Completed",
+ "LabelFailed": "Failed",
"LabelSkipped": "Skipped",
"HeaderEpisodeOrganization": "Episode Organization",
+ "LabelSeries": "Series:",
+ "LabelSeasonNumber": "Season number",
+ "LabelEpisodeNumber": "Episode number",
"LabelEndingEpisodeNumber": "Ending episode number:",
"LabelEndingEpisodeNumberHelp": "Only required for multi-episode files",
"HeaderSupportTheTeam": "Support the Emby Team",
@@ -627,16 +473,13 @@
"OptionMove": "Move",
"LabelTransferMethodHelp": "Copy or move files from the watch folder",
"HeaderLatestNews": "Latest News",
- "HeaderHelpImproveProject": "Help Improve Emby",
"HeaderRunningTasks": "Running Tasks",
"HeaderActiveDevices": "Active Devices",
"HeaderPendingInstallations": "Pending Installations",
- "HeaderServerInformation": "Server Information",
"ButtonRestartNow": "Restart Now",
"ButtonRestart": "Restart",
"ButtonShutdown": "Shutdown",
"ButtonUpdateNow": "Update Now",
- "TabHosting": "Hosting",
"PleaseUpdateManually": "Please shutdown the server and update manually.",
"NewServerVersionAvailable": "A new version of Emby Server is available!",
"ServerUpToDate": "Emby Server is up to date",
@@ -669,8 +512,8 @@
"LabelBlastMessageIntervalHelp": "Determines the duration in seconds between server alive messages.",
"LabelDefaultUser": "Default user:",
"LabelDefaultUserHelp": "Determines which user library should be displayed on connected devices. This can be overridden for each device using profiles.",
+ "HeaderPlaybackSettings": "Playback Settings",
"TitleDlna": "DLNA",
- "TitleChannels": "Channels",
"HeaderServerSettings": "Server Settings",
"LabelWeatherDisplayLocation": "Weather display location:",
"LabelWeatherDisplayLocationHelp": "US zip code \/ City, State, Country \/ City, Country",
@@ -681,37 +524,30 @@
"HeaderRequireManualLoginHelp": "When disabled clients may present a login screen with a visual selection of users.",
"OptionOtherApps": "Other apps",
"OptionMobileApps": "Mobile apps",
+ "TabNotifications": "Notifications",
"HeaderNotificationList": "Click on a notification to configure it's sending options.",
+ "LabelNotificationEnabled": "Enable this notification",
+ "NotificationOptionVideoPlayback": "Video playback started",
+ "NotificationOptionAudioPlayback": "Audio playback started",
+ "NotificationOptionGamePlayback": "Game playback started",
+ "NotificationOptionNewLibraryContent": "New content added",
+ "NotificationOptionServerRestartRequired": "Server restart required",
+ "LabelMonitorUsers": "Monitor activity from:",
+ "LabelSendNotificationToUsers": "Send the notification to:",
+ "LabelUseNotificationServices": "Use the following services:",
"NotificationOptionApplicationUpdateAvailable": "Application update available",
"NotificationOptionApplicationUpdateInstalled": "Application update installed",
"NotificationOptionPluginUpdateInstalled": "Plugin update installed",
"NotificationOptionPluginInstalled": "Plugin installed",
"NotificationOptionPluginUninstalled": "Plugin uninstalled",
- "NotificationOptionVideoPlayback": "Video playback started",
- "NotificationOptionAudioPlayback": "Audio playback started",
- "NotificationOptionGamePlayback": "Game playback started",
- "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
- "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
- "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"NotificationOptionTaskFailed": "Scheduled task failure",
"NotificationOptionInstallationFailed": "Installation failure",
- "NotificationOptionNewLibraryContent": "New content added",
- "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
- "NotificationOptionCameraImageUploaded": "Camera image uploaded",
- "NotificationOptionUserLockedOut": "User locked out",
- "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
- "NotificationOptionServerRestartRequired": "Server restart required",
- "LabelNotificationEnabled": "Enable this notification",
- "LabelMonitorUsers": "Monitor activity from:",
- "LabelSendNotificationToUsers": "Send the notification to:",
- "LabelUseNotificationServices": "Use the following services:",
"CategoryUser": "User",
"CategorySystem": "System",
- "CategoryApplication": "Application",
- "CategoryPlugin": "Plugin",
"LabelMessageTitle": "Message title:",
"LabelAvailableTokens": "Available tokens:",
"AdditionalNotificationServices": "Browse the plugin catalog to install additional notification services.",
+ "LabelSelectUsers": "Select users:",
"OptionAllUsers": "All users",
"OptionAdminUsers": "Administrators",
"OptionCustomUsers": "Custom",
@@ -721,12 +557,10 @@
"ButtonArrowRight": "Right",
"ButtonBack": "Back",
"ButtonInfo": "Info",
- "ButtonOsd": "On screen display",
"ButtonPageUp": "Page Up",
"ButtonPageDown": "Page Down",
"PageAbbreviation": "PG",
"ButtonHome": "Home",
- "ButtonSearch": "\u641c\u7d22",
"ButtonSettings": "Settings",
"ButtonTakeScreenshot": "Capture Screenshot",
"ButtonLetterUp": "Letter Up",
@@ -735,28 +569,32 @@
"LetterButtonAbbreviation": "A",
"TabNowPlaying": "Now Playing",
"TabNavigation": "Navigation",
- "TabControls": "Controls",
+ "ButtonFullscreen": "Toggle fullscreen",
"ButtonScenes": "Scenes",
"ButtonSubtitles": "Subtitles",
+ "ButtonAudioTracks": "Audio tracks",
+ "ButtonPreviousTrack": "Previous track",
+ "ButtonNextTrack": "Next track",
"ButtonStop": "Stop",
"ButtonPause": "Pause",
- "ButtonNext": "Next",
- "ButtonPrevious": "Previous",
"LabelGroupMoviesIntoCollections": "Group movies into collections",
"LabelGroupMoviesIntoCollectionsHelp": "When displaying movie lists, movies belonging to a collection will be displayed as one grouped item.",
+ "CategoryApplication": "Application",
+ "CategoryPlugin": "Plugin",
"NotificationOptionPluginError": "Plugin failure",
+ "TabControls": "Controls",
"ButtonVolumeUp": "Volume up",
"ButtonVolumeDown": "Volume down",
"ButtonMute": "Mute",
"HeaderLatestMedia": "Latest Media",
+ "OptionNoSubtitles": "No Subtitles",
"OptionSpecialFeatures": "Special Features",
+ "ChannelAccessHelp": "Select the channels to share with this user. Administrators will be able to edit all channels using the metadata manager.",
"HeaderCollections": "Collections",
"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",
"LabelType": "Type:",
- "LabelPersonRole": "Role:",
- "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
"LabelProfileContainer": "Container:",
"LabelProfileVideoCodecs": "Video codecs:",
"LabelProfileAudioCodecs": "Audio codecs:",
@@ -779,7 +617,6 @@
"OptionPlainVideoItemsHelp": "If enabled, all videos are represented in DIDL as \"object.item.videoItem\" instead of a more specific type, such as \"object.item.videoItem.movie\".",
"LabelSupportedMediaTypes": "Supported Media Types:",
"TabIdentification": "Identification",
- "HeaderIdentification": "Identification",
"TabDirectPlay": "Direct Play",
"TabContainers": "Containers",
"TabCodecs": "Codecs",
@@ -801,15 +638,6 @@
"HeaderProfileServerSettingsHelp": "These values control how Emby Server will present itself to the device.",
"LabelMaxBitrate": "Max bitrate:",
"LabelMaxBitrateHelp": "Specify a max bitrate in bandwidth constrained environments, or if the device imposes it's own limit.",
- "LabelMaxStreamingBitrate": "Max streaming bitrate:",
- "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
- "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
- "LabelMaxStaticBitrate": "Max sync bitrate:",
- "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
- "LabelMusicStaticBitrate": "Music sync bitrate:",
- "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
- "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
- "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"OptionIgnoreTranscodeByteRangeRequests": "Ignore transcode byte range requests",
"OptionIgnoreTranscodeByteRangeRequestsHelp": "If enabled, these requests will be honored but will ignore the byte range header.",
"LabelFriendlyName": "Friendly name",
@@ -842,86 +670,86 @@
"OptionReportByteRangeSeekingWhenTranscodingHelp": "This is required for some devices that don't time seek very well.",
"HeaderSubtitleDownloadingHelp": "When Emby scans your video files it can search for missing subtitles, and download them using a subtitle provider such as OpenSubtitles.org.",
"HeaderDownloadSubtitlesFor": "Download subtitles for:",
- "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
- "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
- "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"TabSubtitles": "Subtitles",
- "TabChapters": "Chapters",
- "HeaderDownloadChaptersFor": "Download chapter names for:",
"LabelOpenSubtitlesUsername": "Open Subtitles username:",
"LabelOpenSubtitlesPassword": "Open Subtitles password:",
- "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
- "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
- "LabelSubtitlePlaybackMode": "Subtitle mode:",
"LabelDownloadLanguages": "Download languages:",
"ButtonRegister": "Register",
+ "LabelSkipIfGraphicalSubsPresent": "Skip if the video already contains graphical subtitles",
+ "LabelSkipIfGraphicalSubsPresentHelp": "Keeping text versions of subtitles will result in more efficient delivery and decrease the likelihood of video transcoding.",
"LabelSkipIfAudioTrackPresent": "Skip if the default audio track matches the download language",
"LabelSkipIfAudioTrackPresentHelp": "Uncheck this to ensure all videos have subtitles, regardless of audio language.",
+ "NotificationOptionNewLibraryContentMultiple": "New content added (multiple)",
"HeaderSendMessage": "Send Message",
"ButtonSend": "Send",
"LabelMessageText": "Message text:",
+ "LabelService": "Service:",
+ "LabelStatus": "Status:",
+ "LabelVersion": "Version:",
+ "LabelLastResult": "Last result:",
+ "ButtonOsd": "On screen display",
"MessageNoAvailablePlugins": "No available plugins.",
"LabelDisplayPluginsFor": "Display plugins for:",
- "PluginTabAppClassic": "Emby Classic",
- "PluginTabAppTheater": "Emby Theater",
- "LabelEpisodeNamePlain": "Episode name",
- "LabelSeriesNamePlain": "Series name",
"ValueSeriesNamePeriod": "Series.name",
"ValueSeriesNameUnderscore": "Series_name",
"ValueEpisodeNamePeriod": "Episode.name",
"ValueEpisodeNameUnderscore": "Episode_name",
- "LabelSeasonNumberPlain": "Season number",
- "LabelEpisodeNumberPlain": "Episode number",
- "LabelEndingEpisodeNumberPlain": "Ending episode number",
"HeaderTypeText": "Enter Text",
"LabelTypeText": "Text",
+ "OptionDefaultSubtitles": "Default",
+ "OptionOnlyForcedSubtitles": "Only forced subtitles",
+ "OptionAlwaysPlaySubtitles": "Always play subtitles",
+ "OptionDefaultSubtitlesHelp": "Subtitles matching the language preference will be loaded when the audio is in a foreign language.",
+ "OptionOnlyForcedSubtitlesHelp": "Only subtitles marked as forced will be loaded.",
+ "OptionAlwaysPlaySubtitlesHelp": "Subtitles matching the language preference will be loaded regardless of the audio language.",
+ "OptionNoSubtitlesHelp": "Subtitles will not be loaded by default.",
+ "TangibleSoftwareMessage": "Utilizing Tangible Solutions Java\/C# converters through a donated license.",
+ "HeaderCredits": "Credits",
+ "TabCollections": "Collections",
+ "TabFavorites": "Favorites",
+ "TabMyLibrary": "My Library",
+ "LabelCustomizeOptionsPerMediaType": "Customize for media type:",
+ "LabelPlayDefaultAudioTrack": "Play default audio track regardless of language",
+ "LabelSubtitlePlaybackMode": "Subtitle mode:",
+ "TabOther": "Other",
+ "NotificationOptionVideoPlaybackStopped": "Video playback stopped",
+ "NotificationOptionAudioPlaybackStopped": "Audio playback stopped",
+ "NotificationOptionGamePlaybackStopped": "Game playback stopped",
"HeaderSearchForSubtitles": "Search for Subtitles",
- "ButtonMore": "More",
"MessageNoSubtitleSearchResultsFound": "No search results founds.",
"TabDisplay": "Display",
"TabLanguages": "Languages",
- "TabAppSettings": "App Settings",
"LabelEnableThemeSongs": "Enable theme songs",
"LabelEnableBackdrops": "Enable backdrops",
"LabelEnableThemeSongsHelp": "If enabled, theme songs will be played in the background while browsing the library.",
"LabelEnableBackdropsHelp": "If enabled, backdrops will be displayed in the background of some pages while browsing the library.",
- "HeaderHomePage": "Home Page",
- "HeaderSettingsForThisDevice": "Settings for This Device",
"OptionAuto": "Auto",
"OptionYes": "Yes",
"OptionNo": "No",
- "HeaderOptions": "Options",
- "HeaderIdentificationResult": "Identification Result",
"LabelHomePageSection1": "Home page section 1:",
"LabelHomePageSection2": "Home page section 2:",
"LabelHomePageSection3": "Home page section 3:",
- "LabelHomePageSection4": "Home page section 4:",
- "OptionMyMediaButtons": "My media (buttons)",
- "OptionMyMedia": "My media",
- "OptionMyMediaSmall": "My media (small)",
"OptionResumablemedia": "Resume",
"OptionLatestMedia": "Latest media",
- "OptionLatestChannelMedia": "Latest channel items",
- "HeaderLatestChannelItems": "Latest Channel Items",
"OptionNone": "None",
"HeaderLiveTv": "Live TV",
"HeaderReports": "Reports",
"HeaderMetadataManager": "Metadata Manager",
- "HeaderSettings": "Settings",
"MessageLoadingChannels": "Loading channel content...",
- "MessageLoadingContent": "Loading content...",
"ButtonMarkRead": "Mark Read",
"OptionDefaultSort": "Default",
"OptionCommunityMostWatchedSort": "Most Watched",
"TabNextUp": "Next Up",
- "PlaceholderUsername": "Username",
- "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
"MessageNoMovieSuggestionsAvailable": "No movie suggestions are currently available. Start watching and rating your movies, and then come back to view your recommendations.",
"MessageNoCollectionsAvailable": "Collections allow you to enjoy personalized groupings of Movies, Series, Albums, Books and Games. Click the + button to start creating Collections.",
- "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
- "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
+ "ButtonClose": "Close",
+ "HeaderConfirmDeletion": "Confirm Deletion",
+ "HeaderHomePage": "Home Page",
+ "HeaderSettingsForThisDevice": "Settings for This Device",
"ButtonDismiss": "Dismiss",
+ "ButtonMore": "More",
"ButtonEditOtherUserPreferences": "Edit this user's profile, image and personal preferences.",
+ "TitleChannels": "Channels",
"LabelChannelStreamQuality": "Preferred internet stream quality:",
"LabelChannelStreamQualityHelp": "In a low bandwidth environment, limiting quality can help ensure a smooth streaming experience.",
"OptionBestAvailableStreamQuality": "Best available",
@@ -932,72 +760,35 @@
"LabelChannelDownloadAge": "Delete content after: (days)",
"LabelChannelDownloadAgeHelp": "Downloaded content older than this will be deleted. It will remain playable via internet streaming.",
"ChannelSettingsFormHelp": "Install channels such as Trailers and Vimeo in the plugin catalog.",
- "ButtonOptions": "Options",
- "ViewTypePlaylists": "Playlists",
+ "ButtonAddToCollection": "Add to Collection",
+ "ButtonSubmit": "Submit",
"ViewTypeMovies": "Movies",
"ViewTypeTvShows": "TV",
"ViewTypeGames": "Games",
"ViewTypeMusic": "Music",
- "ViewTypeMusicGenres": "Genres",
- "ViewTypeMusicArtists": "Artists",
"ViewTypeBoxSets": "Collections",
- "ViewTypeChannels": "Channels",
- "ViewTypeLiveTV": "Live TV",
- "ViewTypeLiveTvNowPlaying": "Now Airing",
- "ViewTypeLatestGames": "Latest Games",
- "ViewTypeRecentlyPlayedGames": "Recently Played",
- "ViewTypeGameFavorites": "Favorites",
- "ViewTypeGameSystems": "Game Systems",
- "ViewTypeGameGenres": "Genres",
- "ViewTypeTvResume": "Resume",
- "ViewTypeTvNextUp": "Next Up",
- "ViewTypeTvLatest": "Latest",
- "ViewTypeTvShowSeries": "Series",
- "ViewTypeTvGenres": "Genres",
- "ViewTypeTvFavoriteSeries": "Favorite Series",
- "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
- "ViewTypeMovieResume": "Resume",
- "ViewTypeMovieLatest": "Latest",
- "ViewTypeMovieMovies": "Movies",
- "ViewTypeMovieCollections": "Collections",
- "ViewTypeMovieFavorites": "Favorites",
- "ViewTypeMovieGenres": "Genres",
- "ViewTypeMusicLatest": "Latest",
- "ViewTypeMusicPlaylists": "Playlists",
- "ViewTypeMusicAlbums": "Albums",
- "ViewTypeMusicAlbumArtists": "Album Artists",
"HeaderOtherDisplaySettings": "Display Settings",
- "ViewTypeMusicSongs": "Songs",
- "ViewTypeMusicFavorites": "Favorites",
- "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
- "ViewTypeMusicFavoriteArtists": "Favorite Artists",
- "ViewTypeMusicFavoriteSongs": "Favorite Songs",
- "HeaderMyViews": "My Views",
"LabelSelectFolderGroups": "Automatically group content from the following folders into views such as Movies, Music and TV:",
"LabelSelectFolderGroupsHelp": "Folders that are unchecked will be displayed by themselves in their own view.",
+ "ViewTypeChannels": "Channels",
+ "ViewTypeLiveTV": "Live TV",
"OptionDisplayAdultContent": "Display adult content",
+ "MessageNoChapterProviders": "Install a chapter provider plugin such as ChapterDb to enable additional chapter options.",
+ "TabChapters": "Chapters",
+ "HeaderDownloadChaptersFor": "Download chapter names for:",
+ "HeaderChapterDownloadingHelp": "When Emby scans your video files it can download friendly chapter names from the internet using chapter plugins such as ChapterDb.",
"OptionLibraryFolders": "Media folders",
+ "LabelHomePageSection4": "Home page section 4:",
+ "OptionLatestChannelMedia": "Latest channel items",
+ "HeaderLatestChannelItems": "Latest Channel Items",
"TitleRemoteControl": "Remote Control",
+ "HeaderMyViews": "My Views",
"OptionLatestTvRecordings": "Latest recordings",
+ "ButtonRefresh": "Refresh",
"LabelProtocolInfo": "Protocol info:",
"LabelProtocolInfoHelp": "The value that will be used when responding to GetProtocolInfo requests from the device.",
- "TabNfo": "Nfo",
- "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
- "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
- "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
- "LabelKodiMetadataDateFormat": "Release date format:",
- "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
- "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
- "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
- "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
- "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
- "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
- "OptionDisplayChannelsInline": "Display channels inline within my views",
- "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"LabelDisplayCollectionsView": "Display a collections view to show movie collections",
- "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
- "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
- "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
+ "HeaderSubtitles": "Subtitles",
"TabServices": "Services",
"TabLogs": "Logs",
"HeaderServerLogFiles": "Server log files:",
@@ -1029,6 +820,8 @@
"LabelAppName": "App name",
"LabelAppNameExample": "Example: Sickbeard, NzbDrone",
"HeaderNewApiKeyHelp": "Grant an application permission to communicate with Emby Server.",
+ "TabUsers": "Users",
+ "TabScheduledTasks": "Scheduled Tasks",
"HeaderHttpHeaders": "Http Headers",
"HeaderIdentificationHeader": "Identification Header",
"LabelValue": "Value:",
@@ -1041,19 +834,19 @@
"TabFilter": "Filter",
"ButtonView": "View",
"LabelPageSize": "Item limit:",
- "LabelPath": "Path:",
"LabelView": "View:",
- "TabUsers": "Users",
- "LabelSortName": "Sort name:",
- "LabelDateAdded": "Date added:",
+ "LabelManagement": "Management:",
"HeaderFeatures": "Features",
"HeaderAdvanced": "Advanced",
"ButtonSync": "Sync",
- "TabScheduledTasks": "Scheduled Tasks",
"HeaderChapters": "Chapters",
"HeaderResumeSettings": "Resume Settings",
"TabSync": "Sync",
"TitleUsers": "Users",
+ "LabelMaxStreamingBitrate": "Max streaming bitrate:",
+ "LabelMaxStreamingBitrateHelp": "Specify a max bitrate when streaming.",
+ "LabelMaxStaticBitrate": "Max sync bitrate:",
+ "LabelMaxStaticBitrateHelp": "Specify a max bitrate when syncing content at high quality.",
"LabelProtocol": "Protocol:",
"OptionProtocolHttp": "Http",
"OptionProtocolHls": "Http Live Streaming",
@@ -1061,8 +854,9 @@
"OptionContextStreaming": "Streaming",
"OptionContextStatic": "Sync",
"ButtonAddToPlaylist": "Add to playlist",
+ "MessageNoPlaylistsAvailable": "Playlists allow you to create lists of content to play consecutively at a time. To add items to playlists, right click or tap and hold, then select Add to Playlist.",
+ "MessageNoPlaylistItemsAvailable": "This playlist is currently empty.",
"TabPlaylists": "Playlists",
- "ButtonClose": "Close",
"LabelAllLanguages": "All languages",
"HeaderBrowseOnlineImages": "Browse Online Images",
"LabelSource": "Source:",
@@ -1080,7 +874,6 @@
"OptionBox": "Box",
"OptionBoxRear": "Box rear",
"OptionDisc": "Disc",
- "OptionIcon": "Icon",
"OptionLogo": "Logo",
"OptionMenu": "Menu",
"OptionScreenshot": "Screenshot",
@@ -1088,6 +881,7 @@
"OptionUnidentified": "Unidentified",
"OptionMissingParentalRating": "Missing parental rating",
"OptionStub": "Stub",
+ "HeaderEpisodes": "Episodes:",
"OptionSeason0": "Season 0",
"LabelReport": "Report:",
"OptionReportSongs": "Songs",
@@ -1104,6 +898,7 @@
"OptionReportArtists": "Artists",
"OptionReportAlbums": "Albums",
"OptionReportAdultVideos": "Adult videos",
+ "ButtonMoreItems": "More",
"HeaderActivity": "Activity",
"ScheduledTaskStartedWithName": "{0} started",
"ScheduledTaskCancelledWithName": "{0} was cancelled",
@@ -1123,7 +918,6 @@
"SubtitleDownloadFailureForItem": "Subtitles failed to download for {0}",
"LabelRunningTimeValue": "Running time: {0}",
"LabelIpAddressValue": "Ip address: {0}",
- "UserLockedOutWithName": "User {0} has been locked out",
"UserConfigurationUpdatedWithName": "User configuration has been updated for {0}",
"UserCreatedWithName": "User {0} has been created",
"UserPasswordChangedWithName": "Password has been changed for user {0}",
@@ -1133,13 +927,18 @@
"MessageApplicationUpdated": "Emby Server has been updated",
"AuthenticationSucceededWithUserName": "{0} successfully authenticated",
"FailedLoginAttemptWithUserName": "Failed login attempt from {0}",
- "UserDownloadingItemWithValues": "{0} is downloading {1}",
"UserStartedPlayingItemWithValues": "{0} has started playing {1}",
"UserStoppedPlayingItemWithValues": "{0} has stopped playing {1}",
"AppDeviceValues": "App: {0}, Device: {1}",
"ProviderValue": "Provider: {0}",
+ "HeaderAudio": "Audio",
+ "HeaderVideo": "Video",
+ "MessageLoadingContent": "Loading content...",
"LabelChannelDownloadSizeLimit": "Download size limit (GB):",
- "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
+ "LabelMusicStaticBitrate": "Music sync bitrate:",
+ "LabelMusicStaticBitrateHelp": "Specify a max bitrate when syncing music",
+ "LabelMusicStreamingTranscodingBitrate": "Music transcoding bitrate:",
+ "LabelMusicStreamingTranscodingBitrateHelp": "Specify a max bitrate when streaming music",
"HeaderRecentActivity": "Recent Activity",
"HeaderPeople": "People",
"HeaderDownloadPeopleMetadataFor": "Download biography and images for:",
@@ -1150,15 +949,31 @@
"LabelDisplayFoldersView": "Display a folders view to show plain media folders",
"ViewTypeLiveTvRecordingGroups": "Recordings",
"ViewTypeLiveTvChannels": "Channels",
- "LabelEasyPinCode": "Easy pin code:",
- "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
- "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
- "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
"HeaderPassword": "Password",
"HeaderLocalAccess": "Local Access",
"HeaderViewOrder": "View Order",
- "ButtonResetEasyPassword": "Reset easy pin code",
"LabelSelectUserViewOrder": "Choose the order your views will be displayed in within Emby apps",
+ "LabelReleaseDate": "Release date:",
+ "LabelEndDate": "End date:",
+ "LabelYear": "Year:",
+ "FolderTypeMixed": "Mixed content",
+ "FolderTypeMovies": "Movies",
+ "FolderTypeMusic": "Music",
+ "FolderTypeAdultVideos": "Adult videos",
+ "FolderTypePhotos": "Photos",
+ "FolderTypeMusicVideos": "Music videos",
+ "FolderTypeHomeVideos": "Home videos",
+ "FolderTypeGames": "Games",
+ "FolderTypeBooks": "Books",
+ "FolderTypeTvShows": "TV",
+ "LabelArtists": "Artists:",
+ "LabelArtistsHelp": "Separate multiple using ;",
+ "ButtonAdvancedRefresh": "Advanced Refresh",
+ "LabelPersonRole": "Role:",
+ "LabelPersonRoleHelp": "Role is generally only applicable to actors.",
+ "LabelPath": "Path:",
+ "LabelSortName": "Sort name:",
+ "LabelDateAdded": "Date added:",
"LabelMetadataRefreshMode": "Metadata refresh mode:",
"LabelImageRefreshMode": "Image refresh mode:",
"OptionDownloadMissingImages": "Download missing images",
@@ -1170,12 +985,10 @@
"HeaderPersonInfo": "Person Info",
"HeaderIdentifyItem": "Identify Item",
"HeaderIdentifyItemHelp": "Enter one or more search criteria. Remove criteria to increase search results.",
- "HeaderConfirmDeletion": "Confirm Deletion",
"LabelFollowingFileWillBeDeleted": "The following file will be deleted:",
"LabelIfYouWishToContinueWithDeletion": "If you wish to continue, please confirm by entering the value of:",
"ButtonIdentify": "Identify",
"LabelAlbumArtist": "Album artist:",
- "LabelAlbumArtists": "Album artists:",
"LabelAlbum": "Album:",
"LabelCommunityRating": "Community rating:",
"LabelVoteCount": "Vote count:",
@@ -1187,10 +1000,7 @@
"LabelTagline": "Tagline:",
"LabelOverview": "Overview:",
"LabelShortOverview": "Short overview:",
- "LabelReleaseDate": "Release date:",
- "LabelYear": "Year:",
"LabelPlaceOfBirth": "Place of birth:",
- "LabelEndDate": "End date:",
"LabelAirDate": "Air days:",
"LabelAirTime:": "Air time:",
"LabelRuntimeMinutes": "Run time (minutes):",
@@ -1221,25 +1031,24 @@
"HeaderMetadataSettings": "Metadata Settings",
"LabelLockItemToPreventChanges": "Lock this item to prevent future changes",
"MessageLeaveEmptyToInherit": "Leave empty to inherit settings from a parent item, or the global default value.",
- "TabDonate": "Donate",
"HeaderDonationType": "Donation type:",
"OptionMakeOneTimeDonation": "Make a separate donation",
- "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
- "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
- "OptionYearlySupporterMembership": "Yearly supporter membership",
- "OptionMonthlySupporterMembership": "Monthly supporter membership",
"OptionNoTrailer": "No Trailer",
"OptionNoThemeSong": "No Theme Song",
"OptionNoThemeVideo": "No Theme Video",
"LabelOneTimeDonationAmount": "Donation amount:",
- "ButtonDonate": "Donate",
- "ButtonPurchase": "Purchase",
"OptionActor": "Actor",
"OptionComposer": "Composer",
"OptionDirector": "Director",
"OptionGuestStar": "Guest star",
"OptionProducer": "Producer",
"OptionWriter": "Writer",
+ "LabelEpisodeNamePlain": "Episode name",
+ "LabelSeriesNamePlain": "Series name",
+ "LabelSeasonNumberPlain": "Season number",
+ "LabelEpisodeNumberPlain": "Episode number",
+ "LabelEndingEpisodeNumberPlain": "Ending episode number",
+ "OptionOneTimeDescription": "This is an additional donation to the team to show your support. It does not have any additional benefits and will not produce a supporter key.",
"LabelAirDays": "Air days:",
"LabelAirTime": "Air time:",
"HeaderMediaInfo": "Media Info",
@@ -1253,22 +1062,53 @@
"HeaderDeveloperInfo": "Developer Info",
"HeaderRevisionHistory": "Revision History",
"ButtonViewWebsite": "View website",
+ "ViewTypeLiveTvNowPlaying": "Now Airing",
+ "ViewTypeLatestGames": "Latest Games",
+ "ViewTypeRecentlyPlayedGames": "Recently Played",
+ "ViewTypeGameFavorites": "Favorites",
+ "ViewTypeGameSystems": "Game Systems",
+ "ViewTypeGameGenres": "Genres",
+ "ViewTypeTvResume": "Resume",
+ "ViewTypeTvNextUp": "Next Up",
+ "ViewTypeTvLatest": "Latest",
+ "ViewTypeTvGenres": "Genres",
+ "ViewTypeMovieResume": "Resume",
+ "ViewTypeMovieLatest": "Latest",
+ "ViewTypeMovieMovies": "Movies",
+ "ViewTypeMovieCollections": "Collections",
+ "ViewTypeMovieFavorites": "Favorites",
+ "ViewTypeMovieGenres": "Genres",
+ "ViewTypeMusicLatest": "Latest",
+ "ViewTypeMusicAlbums": "Albums",
+ "ViewTypeMusicAlbumArtists": "Album Artists",
+ "TabDonate": "Donate",
+ "OptionLifeTimeSupporterMembership": "Lifetime supporter membership",
+ "OptionYearlySupporterMembership": "Yearly supporter membership",
+ "OptionMonthlySupporterMembership": "Monthly supporter membership",
+ "ViewTypeTvShowSeries": "Series",
+ "ViewTypeTvFavoriteSeries": "Favorite Series",
+ "ViewTypeTvFavoriteEpisodes": "Favorite Episodes",
"HeaderXmlSettings": "Xml Settings",
"HeaderXmlDocumentAttributes": "Xml Document Attributes",
"HeaderXmlDocumentAttribute": "Xml Document Attribute",
"XmlDocumentAttributeListHelp": "These attributes are applied to the root element of every xml response.",
"OptionSaveMetadataAsHidden": "Save metadata and images as hidden files",
+ "ViewTypeMusicSongs": "Songs",
"LabelExtractChaptersDuringLibraryScan": "Extract chapter images during the library scan",
"LabelExtractChaptersDuringLibraryScanHelp": "If enabled, chapter images will be extracted when videos are imported during the library scan. If disabled they will be extracted during the chapter images scheduled task, allowing the regular library scan to complete faster.",
- "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "ViewTypeMusicFavorites": "Favorites",
+ "ViewTypeMusicFavoriteAlbums": "Favorite Albums",
+ "ViewTypeMusicFavoriteArtists": "Favorite Artists",
+ "ViewTypeMusicFavoriteSongs": "Favorite Songs",
+ "ButtonAddLocalUser": "Add Local User",
+ "HeaderIdentification": "Identification",
"LabelConnectUserName": "Emby username\/email:",
"LabelConnectUserNameHelp": "Connect this local user to an online Emby account to enable easy sign-in access from any Emby app without having to know the server ip address.",
- "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "ButtonNext": "Next",
+ "ButtonPrevious": "Previous",
"LabelExternalPlayers": "External players:",
"LabelExternalPlayersHelp": "Display buttons to play content in external players. This is only available on devices that support url schemes, generally Android and iOS. With external players there is generally no support for remote control or resuming.",
- "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
- "LabelEnableItemPreviews": "Enable item previews",
- "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
+ "ValueSpecialEpisodeName": "Special - {0}",
"HeaderSubtitleProfile": "Subtitle Profile",
"HeaderSubtitleProfiles": "Subtitle Profiles",
"HeaderSubtitleProfilesHelp": "Subtitle profiles describe the subtitle formats supported by the device.",
@@ -1282,6 +1122,18 @@
"OptionHlsSegmentedSubtitles": "Hls segmented subtitles",
"LabelSubtitleFormatHelp": "Example: srt",
"ButtonLearnMore": "Learn more",
+ "HeaderKodiMetadataHelp": "Emby includes native support for Nfo metadata files. To enable or disable Nfo metadata, use the Advanced tab to configure options for your media types.",
+ "LabelKodiMetadataUser": "Sync user watch data to nfo's for:",
+ "LabelKodiMetadataUserHelp": "Enable this to keep watch data in sync between Emby Server and Nfo files.",
+ "LabelKodiMetadataDateFormat": "Release date format:",
+ "LabelKodiMetadataDateFormatHelp": "All dates within nfo's will be read and written to using this format.",
+ "LabelKodiMetadataSaveImagePaths": "Save image paths within nfo files",
+ "LabelKodiMetadataSaveImagePathsHelp": "This is recommended if you have image file names that don't conform to Kodi guidelines.",
+ "LabelKodiMetadataEnablePathSubstitution": "Enable path substitution",
+ "LabelKodiMetadataEnablePathSubstitutionHelp": "Enables path substitution of image paths using the server's path substitution settings.",
+ "LabelKodiMetadataEnablePathSubstitutionHelp2": "See path substitution.",
+ "LabelKodiMetadataEnableExtraThumbs": "Copy extrafanart into extrathumbs",
+ "LabelKodiMetadataEnableExtraThumbsHelp": "When downloading images they can be saved into both extrafanart and extrathumbs for maximum Kodi skin compatibility.",
"TabPlayback": "Playback",
"HeaderLanguagePreferences": "Language Preferences",
"TabCinemaMode": "Cinema Mode",
@@ -1293,11 +1145,11 @@
"LabelLimitIntrosToUnwatchedContent": "Only use trailers from unwatched content",
"LabelEnableIntroParentalControl": "Enable smart parental control",
"LabelEnableIntroParentalControlHelp": "Trailers will only be selected with a parental rating equal to or less than the content being watched.",
- "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"OptionTrailersFromMyMoviesHelp": "Requires setup of local trailers.",
"LabelCustomIntrosPath": "Custom intros path:",
"LabelCustomIntrosPathHelp": "A folder containing video files. A video will be randomly selected and played after trailers.",
- "ValueSpecialEpisodeName": "Special - {0}",
+ "ButtonOptions": "Options",
+ "LabelTheseFeaturesRequireSupporterHelpAndTrailers": "These features require an active supporter membership and installation of the Trailer channel plugin.",
"LabelSelectInternetTrailersForCinemaMode": "Internet trailers:",
"OptionUpcomingDvdMovies": "Include trailers from new and upcoming movies on Dvd & Blu-ray",
"OptionUpcomingStreamingMovies": "Include trailers from new and upcoming movies on Netflix",
@@ -1306,27 +1158,31 @@
"CinemaModeConfigurationHelp2": "Individual users will have the ability to disable cinema mode within their own preferences.",
"LabelEnableCinemaMode": "Enable cinema mode",
"HeaderCinemaMode": "Cinema Mode",
+ "TabDevices": "Devices",
+ "LabelLocalHttpServerPortNumber": "Local http port number:",
+ "LabelLocalHttpServerPortNumberHelp": "The tcp port number that Emby's http server should bind to.",
+ "LabelEnableAutomaticPortMap": "Enable automatic port mapping",
+ "LabelEnableAutomaticPortMapHelp": "Attempt to automatically map the public port to the local port via UPnP. This may not work with some router models.",
"LabelDateAddedBehavior": "Date added behavior for new content:",
"OptionDateAddedImportTime": "Use date scanned into the library",
"OptionDateAddedFileTime": "Use file creation date",
"LabelDateAddedBehaviorHelp": "If a metadata value is present it will always be used before either of these options.",
"LabelNumberTrailerToPlay": "Number of trailers to play:",
+ "LabelChannelDownloadSizeLimitHelpText": "Limit the size of the channel download folder.",
"TitleDevices": "Devices",
"TabCameraUpload": "Camera Upload",
- "TabDevices": "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:",
"LabelCameraUploadPathHelp": "Select a custom upload path, if desired. If unspecified a default folder will be used. If using a custom path it will also need to be added in the library setup area.",
"LabelCreateCameraUploadSubfolder": "Create a subfolder for each device",
"LabelCreateCameraUploadSubfolderHelp": "Specific folders can be assigned to a device by clicking on it from the Devices page.",
+ "ButtonInviteUser": "Invite User",
"LabelCustomDeviceDisplayName": "Display name:",
"LabelCustomDeviceDisplayNameHelp": "Supply a custom display name or leave empty to use the name reported by the device.",
"HeaderInviteUser": "Invite User",
- "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"HeaderInviteUserHelp": "Sharing your media with friends is easier than ever before with Emby Connect.",
"ButtonSendInvitation": "Send Invitation",
- "HeaderSignInWithConnect": "Sign in with Emby Connect",
"HeaderGuests": "Guests",
"HeaderLocalUsers": "Local Users",
"HeaderPendingInvitations": "Pending Invitations",
@@ -1342,7 +1198,6 @@
"OptionWeekdays": "Weekdays",
"OptionWeekends": "Weekends",
"MessageProfileInfoSynced": "User profile information synced with Emby Connect.",
- "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"ButtonTrailerReel": "Trailer reel",
"HeaderTrailerReel": "Trailer Reel",
"OptionPlayUnwatchedTrailersOnly": "Play only unwatched trailers",
@@ -1350,6 +1205,8 @@
"MessageNoTrailersFound": "No trailers found. Install the Trailer channel to enhance your movie experience by adding a library of internet trailers.",
"HeaderNewUsers": "New Users",
"ButtonSignUp": "Sign up",
+ "LabelConnectGuestUserName": "Their Emby username or email address:",
+ "LabelConnectGuestUserNameHelp": "This is the username that your friend uses to sign in to the Emby website, or their email address.",
"ButtonForgotPassword": "Forgot password",
"OptionDisableUserPreferences": "Disable access to user preferences",
"OptionDisableUserPreferencesHelp": "If enabled, only administrators will be able to configure user profile images, passwords, and language preferences.",
@@ -1365,8 +1222,8 @@
"HeaderShareMediaFolders": "Share Media Folders",
"MessageGuestSharingPermissionsHelp": "Most features are initially unavailable to guests but can be enabled as needed.",
"HeaderInvitations": "Invitations",
- "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"HeaderForgotPassword": "Forgot Password",
+ "LabelForgotPasswordUsernameHelp": "Enter your username, if you remember it.",
"TitleForgotPassword": "Forgot Password",
"TitlePasswordReset": "Password Reset",
"LabelPasswordRecoveryPinCode": "Pin code:",
@@ -1374,40 +1231,165 @@
"HeaderParentalRatings": "Parental Ratings",
"HeaderVideoTypes": "Video Types",
"HeaderYears": "Years",
+ "OptionPosterCard": "Poster card",
+ "OptionThumbCard": "Thumb card",
+ "OptionAllowRemoteSharedDevices": "Allow remote control of shared devices",
+ "OptionAllowRemoteSharedDevicesHelp": "Dlna devices are considered shared until a user begins controlling it.",
+ "HeaderRemoteControl": "Remote Control",
+ "ViewTypeMusicGenres": "Genres",
+ "ViewTypeMusicArtists": "Artists",
+ "HeaderSignInWithConnect": "Sign in with Emby Connect",
+ "LabelGithub": "Github",
+ "LabelApiDocumentation": "Api Documentation",
+ "LabelDeveloperResources": "Developer Resources",
"HeaderAddTag": "Add Tag",
- "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
- "LabelBlockContentWithTags": "Block content with tags:",
"LabelTag": "Tag:",
+ "HeaderServerInformation": "Server Information",
"LabelEnableSingleImageInDidlLimit": "Limit to single embedded image",
"LabelEnableSingleImageInDidlLimitHelp": "Some devices will not render properly if multiple images are embedded within Didl.",
"TabActivity": "Activity",
"TitleSync": "Sync",
+ "HeaderSettings": "Settings",
"OptionAllowSyncContent": "Allow Sync",
- "OptionAllowContentDownloading": "Allow media downloading",
+ "FolderTypeInherit": "Inherit",
+ "LabelContentType": "Content type:",
"NameSeasonUnknown": "Season Unknown",
"NameSeasonNumber": "Season {0}",
"LabelNewUserNameHelp": "Usernames can contain letters (a-z), numbers (0-9), dashes (-), underscores (_), apostrophes ('), and periods (.)",
+ "ButtonHelp": "Help",
+ "TabAccess": "Access",
+ "HeaderDeviceAccess": "Device Access",
+ "OptionEnableAccessFromAllDevices": "Enable access from all devices",
+ "DeviceAccessHelp": "This only applies to devices that can be uniquely identified and will not prevent browser access. Filtering user device access will prevent them from using new devices until they've been approved here.",
+ "ButtonQuickStartGuide": "Quick start guide",
+ "HeaderSyncJobInfo": "Sync Job",
"TabJobs": "Jobs",
"TabSyncJobs": "Sync Jobs",
+ "HeaderTermsOfService": "Emby Terms of Service",
+ "MessagePleaseAcceptTermsOfService": "Please accept the terms of service and privacy policy before continuing.",
+ "OptionIAcceptTermsOfService": "I accept the terms of service",
+ "ButtonPrivacyPolicy": "Privacy policy",
+ "ButtonTermsOfService": "Terms of Service",
+ "OptionHideUserFromLoginHelp": "Useful for private or hidden administrator accounts. The user will need to sign in manually by entering their username and password.",
+ "LabelEnterConnectUserName": "Username or email:",
+ "LabelEnterConnectUserNameHelp": "This is your Emby online account username or email.",
+ "HeaderTV": "TV",
+ "OptionDetectArchiveFilesAsMedia": "Detect archive files as media",
+ "OptionDetectArchiveFilesAsMediaHelp": "If enabled, files with .rar and .zip extensions will be detected as media files.",
+ "ButtonDonate": "Donate",
+ "HeaderOptions": "Options",
+ "HeaderIdentificationResult": "Identification Result",
+ "OptionEnableAccessToAllChannels": "Enable access to all channels",
+ "LabelAutomaticUpdates": "Enable automatic updates",
+ "LabelFanartApiKey": "Personal api key:",
+ "LabelFanartApiKeyHelp": "Requests to fanart without a personal API key return results that were approved over 7 days ago. With a personal API key that drops to 48 hours and if you are also a fanart VIP member that will further drop to around 10 minutes.",
+ "HeaderDeveloperOptions": "Developer Options",
+ "OptionEnableWebClientResponseCache": "Enable web client response caching",
+ "OptionDisableForDevelopmentHelp": "Configure these as needed for web client development purposes.",
+ "OptionEnableWebClientResourceMinification": "Enable web client resource minification",
+ "LabelDashboardSourcePath": "Web client source path:",
+ "LabelDashboardSourcePathHelp": "If running the server from source, specify the path to the dashboard-ui folder. All web client files will be served from this location.",
+ "HeaderPaths": "Paths",
+ "TitleNotifications": "Notifications",
+ "ButtonDonateWithPayPal": "Donate with PayPal",
+ "TitleScheduledTasks": "Scheduled Tasks",
+ "LinkApi": "Api",
+ "LabelPublicHttpPort": "Public http port number:",
+ "LabelPublicHttpPortHelp": "The public port number that should be mapped to the local http port.",
+ "LabelPublicHttpsPort": "Public https port number:",
+ "LabelPublicHttpsPortHelp": "The public port number that should be mapped to the local https port.",
+ "LabelEnableHttps": "Report https as external address",
+ "LabelEnableHttpsHelp": "If enabled, the server will report an https url to clients as it's external address.",
+ "LabelHttpsPort": "Local https port number:",
+ "LabelHttpsPortHelp": "The tcp port number that Emby's https server should bind to.",
+ "TabHosting": "Hosting",
+ "LabelCustomCss": "Custom css:",
+ "LabelCustomCssHelp": "Apply your own custom css to the web interface.",
+ "ButtonConvertMedia": "Convert media",
+ "ButtonOrganize": "Organize",
+ "ButtonJoinTheDevelopmentTeam": "Join the Development Team",
+ "OptionEnableAccessToAllLibraries": "Enable access to all libraries",
+ "LabelSyncTempPath": "Temporary file path:",
+ "LabelSyncTempPathHelp": "Specify a custom sync working folder. Converted media created during the sync process will be stored here.",
+ "LabelCustomCertificatePath": "Custom certificate path:",
+ "LabelCustomCertificatePathHelp": "Supply your own ssl certificate .pfx file. If omitted, the server will create a self-signed certificate.",
+ "LabelDisplayCollectionsViewHelp": "This will create a separate view to display collections that you've created or have access to. To create a collection, right-click or tap-hold any movie and select 'Add to Collection'. ",
+ "HeaderSyncRequiresSupporterMembership": "Sync Requires a Supporter Membership",
+ "HeaderEnjoyDayTrial": "Enjoy a 14 Day Free Trial",
+ "CategorySync": "Sync",
+ "RegisterWithPayPal": "Register with PayPal",
+ "NotificationOptionCameraImageUploaded": "Camera image uploaded",
+ "TabNfo": "Nfo",
+ "HeaderEasyPinCode": "Easy Pin Code",
+ "LabelEasyPinCode": "Easy pin code:",
+ "EasyPasswordHelp": "Your easy pin code is used for offline access with supported Emby apps, and can also be used for easy in-network sign in.",
+ "LabelInNetworkSignInWithEasyPassword": "Enable in-network sign in with my easy pin code",
+ "LabelInNetworkSignInWithEasyPasswordHelp": "If enabled, you'll be able to use your easy pin code to sign in to Emby apps from inside your home network. Your regular password will only be needed away from home. If the pin code is left blank, you won't need a password within your home network.",
+ "ButtonResetEasyPassword": "Reset easy pin code",
+ "OptionAllowContentDownloading": "Allow media downloading",
+ "LabelBlockContentWithTags": "Block content with tags:",
"LabelTagFilterMode": "Mode:",
"LabelTagFilterAllowModeHelp": "If allowed tags are used as part of a deeply nested folder structure, content that is tagged will require parent folders to be tagged as well.",
+ "UserDownloadingItemWithValues": "{0} is downloading {1}",
+ "LabelPinCode": "Pin code:",
+ "ButtonExit": "Exit",
+ "HeaderGrownupsOnly": "Grown-ups Only!",
+ "DividerOr": "-- or --",
+ "HeaderToAccessPleaseEnterEasyPinCode": "To access, please enter your easy pin code",
+ "KidsModeAdultInstruction": "Click the lock icon in the bottom right to configure or leave kids mode. Your pin code will be required.",
+ "ButtonConfigurePinCode": "Configure pin code",
+ "HeaderAdultsReadHere": "Adults Read Here!",
+ "LabelEnableEnhancedMovies": "Enable enhanced movie displays",
+ "LabelEnableEnhancedMoviesHelp": "When enabled, movies will be displayed as folders to include trailers, extras, cast & crew, and other related content.",
+ "NotificationOptionUserLockedOut": "User locked out",
+ "OptionIcon": "Icon",
+ "UserLockedOutWithName": "User {0} has been locked out",
"HeaderThisUserIsCurrentlyDisabled": "This user is currently disabled",
"MessageReenableUser": "See below to reenable",
+ "LabelTimeLimitHours": "Time limit (hours):",
+ "HeaderSendNotificationHelp": "Notifications are delivered to your Emby inbox. Additional options can be installed from the Services tab.",
+ "HeaderInstalledServices": "Installed Services",
+ "HeaderAvailableServices": "Available Services",
+ "MessageNoServicesInstalled": "No services are currently installed.",
+ "TitlePlugins": "Plugins",
+ "HeaderServices": "Services",
+ "ViewTypePlaylists": "Playlists",
+ "LabelAlbumArtists": "Album artists:",
"LabelEnableInternetMetadataForTvPrograms": "Download internet metadata for:",
"OptionTVMovies": "TV Movies",
"HeaderUpcomingMovies": "Upcoming Movies",
- "HeaderUpcomingSports": "Upcoming Sports",
"HeaderUpcomingPrograms": "Upcoming Programs",
"LabelShowLibraryTileNames": "Show library tile names",
"LabelShowLibraryTileNamesHelp": "Determines if labels will be displayed underneath library tiles on the home page",
+ "HeaderSupporterBenefits": "Supporter Benefits",
+ "HeaderAddUser": "Add User",
+ "LabelAddConnectSupporterHelp": "To add a user who isn't listed, you'll need to first link their account to Emby Connect from their user profile page.",
+ "TabPlaylist": "Playlist",
+ "LabelConfigureServer": "Configure Emby",
+ "WelcomeToProject": "Welcome to Emby!",
+ "LinkedToEmbyConnect": "Linked to Emby Connect",
+ "ProjectHasCommunity": "Emby has a thriving community of users and contributors.",
+ "VisitProjectWebsite": "Visit the Emby Web Site",
+ "VisitProjectWebsiteLong": "Visit the Emby Web site to catch the latest news and keep up with the developer blog.",
+ "HeaderHelpImproveProject": "Help Improve Emby",
+ "PluginTabAppClassic": "Emby Classic",
+ "PluginTabAppTheater": "Emby Theater",
+ "HeaderBecomeProjectSupporter": "Become an Emby Supporter",
+ "ButtonLearnMoreAboutEmbyConnect": "Learn more about Emby Connect",
+ "HeaderOptionalLinkEmbyAccount": "Optional: Link your Emby account",
"OptionEnableTranscodingThrottle": "Enable throttling",
"OptionEnableTranscodingThrottleHelp": "Throttling will automatically adjust transcoding speed in order to minimize server cpu utilization during playback.",
+ "OptionHideWatchedContentFromLatestMedia": "Hide watched content from latest media",
+ "TabSuggestions": "Suggestions",
+ "PlaceholderUsername": "Username",
+ "HeaderSync": "Sync",
+ "HeaderUpcomingSports": "Upcoming Sports",
"LabelUploadSpeedLimit": "Upload speed limit (Mbps):",
"OptionAllowSyncTranscoding": "Allow syncing that requires transcoding",
"HeaderPlayback": "Media Playback",
+ "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"OptionAllowAudioPlaybackTranscoding": "Allow audio playback that requires transcoding",
"OptionAllowVideoPlaybackTranscoding": "Allow video playback that requires transcoding",
- "OptionAllowMediaPlaybackTranscodingHelp": "Users will receive friendly messages when content is unplayable based on policy.",
"TabStreaming": "Streaming",
"LabelRemoteClientBitrateLimit": "Internet streaming bitrate limit (Mbps):",
"LabelRemoteClientBitrateLimitHelp": "An optional streaming bitrate limit for all out of network clients. This is useful to prevent clients from requesting a higher bitrate than your internet connection can handle.",
@@ -1415,22 +1397,29 @@
"LabelConversionCpuCoreLimitHelp": "Limit the number of CPU cores that will be used during sync conversion.",
"OptionEnableFullSpeedConversion": "Enable full speed conversion",
"OptionEnableFullSpeedConversionHelp": "By default, sync conversion is performed at a low speed to minimize resource consumption.",
+ "HeaderRepeatingOptions": "Repeating Options",
+ "OptionMyMediaButtons": "My media (buttons)",
+ "OptionMyMedia": "My media",
+ "OptionMyMediaSmall": "My media (small)",
"HeaderPlaylists": "Playlists",
+ "ViewTypeMusicPlaylists": "Playlists",
"HeaderViewStyles": "View Styles",
"LabelSelectViewStyles": "Enable enhanced presentations for:",
"LabelSelectViewStylesHelp": "If enabled, views will be built with metadata to offer categories such as Suggestions, Latest, Genres, and more. If disabled, they'll be displayed with simple folders.",
+ "ButtonSignInWithConnect": "Sign in with Emby Connect",
+ "HeaderNewServer": "New Server",
+ "LabelMaxChromecastBitrate": "Max Chromecast bitrate:",
+ "TabAppSettings": "App Settings",
"TabPhotos": "Photos",
"TabVideos": "Videos",
"HeaderWelcomeToEmby": "Welcome to Emby",
"EmbyIntroMessage": "With Emby you can easily stream videos, music and photos to smart phones, tablets and other devices from your Emby Server.",
"ButtonSkip": "Skip",
"TextConnectToServerManually": "Connect to server manually",
- "ButtonSignInWithConnect": "Sign in with Emby Connect",
"ButtonConnect": "Connect",
"LabelServerHost": "Host:",
"LabelServerHostHelp": "192.168.1.100 or https:\/\/myserver.com",
"LabelServerPort": "Port:",
- "HeaderNewServer": "New Server",
"ButtonChangeServer": "Change Server",
"HeaderConnectToServer": "Connect to Server",
"OptionReportList": "List View",
@@ -1439,20 +1428,31 @@
"HeaderExport": "Export",
"HeaderColumns": "Columns",
"ButtonReset": "Reset",
+ "ButtonPurchase": "Purchase",
"OptionEnableExternalVideoPlayers": "Enable external video players",
+ "LabelNativeExternalPlayersHelp": "Display buttons to play content in external players.",
+ "LabelEnableItemPreviews": "Enable item previews",
+ "LabelEnableItemPreviewsHelp": "if enabled, sliding previews will appear when clicking items on certain screens.",
"ButtonUnlockGuide": "Unlock Guide",
+ "ButtonManageServer": "Manage Server",
"LabelEnableFullScreen": "Enable fullscreen mode",
"LabelEnableChromecastAc3Passthrough": "Enable Chromecast AC3 Passthrough",
- "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelSyncPath": "Synced content path:",
"LabelEmail": "Email:",
"LabelUsername": "Username:",
"HeaderSignUp": "Sign Up",
"LabelPasswordConfirm": "Password (confirm):",
"ButtonAddServer": "Add Server",
+ "ButtonShare": "Share",
+ "OptionAllowLinkSharing": "Allow social media sharing",
+ "OptionAllowLinkSharingHelp": "Only web pages containing media information are shared. Media files are never shared publicly. Shares are time-limited and will expire based on your server sharing settings.",
+ "HeaderSharing": "Sharing",
"TabHomeScreen": "Home Screen",
"HeaderDisplay": "Display",
"HeaderNavigation": "Navigation",
"LegendTheseSettingsShared": "These settings are shared on all devices",
+ "LabelRecordingPath": "Recording path:",
+ "LabelRecordingPathHelp": "Specify a custom location to save recordings. Leave blank to use the server default.",
"OptionEnableAutomaticServerUpdates": "Enable automatic server updates",
"OptionOtherTrailers": "Include trailers from older movies",
"HeaderOverview": "Overview",
@@ -1464,27 +1464,28 @@
"ButtonAddDevice": "Add Device",
"HeaderAddDevice": "Add Device",
"HeaderExternalServices": "External Services",
- "LabelTunerIpAddress": "Tuner IP Address:",
"TabExternalServices": "External Services",
"TabTuners": "Tuners",
"HeaderGuideProviders": "Guide Providers",
"AddGuideProviderHelp": "Add a source for TV Guide information",
"LabelZipCode": "Zip Code:",
- "GuideProviderSelectListings": "Select Listings",
- "GuideProviderLogin": "Login",
"LabelLineup": "Lineup:",
"MessageTunerDeviceNotListed": "Is your tuner device not listed? Try installing an external service provider for more Live TV options.",
+ "OptionSyncToSDCard": "Synced to external SD card",
+ "LabelTunerIpAddress": "Tuner IP Address:",
+ "GuideProviderSelectListings": "Select Listings",
+ "GuideProviderLogin": "Login",
"LabelImportOnlyFavoriteChannels": "Restrict to channels marked as favorite",
"ImportFavoriteChannelsHelp": "If enabled, only channels that are marked as favorite on the tuner device will be imported.",
"ButtonRepeat": "Repeat",
- "LabelEnableThisTuner": "Enable this tuner",
- "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
- "HeaderLocked": "Locked",
"HeaderUnidentified": "Unidentified",
"HeaderImagePrimary": "Primary",
"HeaderImageBackdrop": "Backdrop",
"HeaderImageLogo": "Logo",
"HeaderUserPrimaryImage": "User Image",
+ "LabelEnableThisTuner": "Enable this tuner",
+ "LabelEnableThisTunerHelp": "Uncheck to prevent importing channels from this tuner.",
+ "HeaderLocked": "Locked",
"ButtonDisplaySettings": "Display settings",
"ButtonHomeScreenSettings": "Home screen settings",
"ButtonPlaybackSettings": "Playback settings",
@@ -1502,28 +1503,28 @@
"LabelTranscodingThreadCountHelp": "Select the maximum number of threads to use when transcoding. Reducing the thread count will lower cpu usage but may not convert fast enough for a smooth playback experience.",
"OptionMax": "Max",
"HeaderEmbyGuide": "Emby Guide",
- "LabelSyncPath": "Synced content path:",
"OptionSyncOnlyOnWifi": "Sync only on Wifi",
+ "OptionDisplayChannelsInline": "Display channels inline within my views",
+ "OptionDisplayChannelsInlineHelp": "If enabled, channels will be displayed directly alongside other views. If disabled, they'll be displayed within a separate Channels view.",
"OptionSyncLosslessAudioOriginal": "Sync lossless audio at original quality",
"HeaderMetadata": "Metadata",
"HeaderRecordingOptions": "Recording Options",
- "ButtonShare": "Share",
"HeaderUpcomingForKids": "Upcoming for Kids",
"HeaderSetupLiveTV": "Setup Live TV",
"LabelTunerType": "Tuner type:",
"HelpMoreTunersCanBeAdded": "Additional tuners can be added later within the Live TV section.",
- "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"MessageActiveSupporterMembershipRequiredSeriesRecordings": "An active Emby Supporter membership is required in order to create automated series recordings.",
"HeaderSetupTVGuide": "Setup TV Guide",
"LabelDataProvider": "Data provider:",
"OptionSendRecordingsToAutoOrganize": "Enable Auto-Organize for new recordings",
"OptionSendRecordingsToAutoOrganizeHelp": "New recordings will be sent to the Auto-Organize feature and imported into your media library.",
"HeaderDefaultPadding": "Default Padding",
- "HeaderSubtitles": "Subtitles",
+ "AdditionalLiveTvProvidersCanBeInstalledLater": "Additional Live TV providers can be added later within the Live TV section.",
"HeaderVideos": "Videos",
"OptionEnableVideoFrameAnalysis": "Enable frame by frame video analysis",
"OptionEnableVideoFrameAnalysisHelp": "Extract detailed information about videos that can be used to make transcoding as efficient as possible. This will cause library scans to take longer.",
"LabelVideoFrameAnalysisLimit": "Limit frame by frame analysis to videos less than:",
+ "HeaderBlockItemsWithNoRating": "Block content with no or unrecognized rating information:",
"LabelHardwareVideoDecoder": "Hardware video decoder:",
"LabelHardwareVideoDecoderHelp": "Available on supported systems only."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/ar.json b/dashboard-ui/strings/javascript/ar.json
index 3ff8e52cc5..503a01e555 100644
--- a/dashboard-ui/strings/javascript/ar.json
+++ b/dashboard-ui/strings/javascript/ar.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/bg-BG.json b/dashboard-ui/strings/javascript/bg-BG.json
index 39c47e7828..ee4dc2a943 100644
--- a/dashboard-ui/strings/javascript/bg-BG.json
+++ b/dashboard-ui/strings/javascript/bg-BG.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"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:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/ca.json b/dashboard-ui/strings/javascript/ca.json
index fa71338f90..b69cb3f88e 100644
--- a/dashboard-ui/strings/javascript/ca.json
+++ b/dashboard-ui/strings/javascript/ca.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/cs.json b/dashboard-ui/strings/javascript/cs.json
index c7d5781cac..94527a2a93 100644
--- a/dashboard-ui/strings/javascript/cs.json
+++ b/dashboard-ui/strings/javascript/cs.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Um\u011blec",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Kan\u00e1ly",
"HeaderMediaFolders": "Slo\u017eky m\u00e9di\u00ed",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Hled\u00e1n\u00ed",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/da.json b/dashboard-ui/strings/javascript/da.json
index 07922e4463..3ef1d0ed90 100644
--- a/dashboard-ui/strings/javascript/da.json
+++ b/dashboard-ui/strings/javascript/da.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transkoding",
"LabelPlayMethodDirectStream": "Direkte streaming",
"LabelPlayMethodDirectPlay": "Direkte afspilning",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Lyd: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Lokal adgang: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Tilf\u00f8jet {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Kanaler",
"HeaderMediaFolders": "Mediemapper",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -444,16 +442,16 @@
"HeaderRuntime": "Varighed",
"HeaderCommunityRating": "F\u00e6llesskabsvurdering",
"HeaderPasswordReset": "Nulstil adgangskode",
- "HeaderParentalRating": "Aldersgr\u00e6nse",
+ "HeaderParentalRating": "Parental rating",
"HeaderReleaseDate": "Udgivelsesdato",
- "HeaderDateAdded": "Dato for tilf\u00f8jelse",
- "HeaderSeries": "Serier",
+ "HeaderDateAdded": "Date added",
+ "HeaderSeries": "Series",
"HeaderSeason": "S\u00e6son",
"HeaderSeasonNumber": "S\u00e6sonnummer",
"HeaderNetwork": "Netv\u00e6rk",
- "HeaderYear": "\u00c5r",
+ "HeaderYear": "Year",
"HeaderGameSystem": "Spilsystem",
- "HeaderPlayers": "Afspillere",
+ "HeaderPlayers": "Players",
"HeaderEmbeddedImage": "Indlejret billede",
"HeaderTrack": "Spor",
"HeaderDisc": "Disk",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "S\u00f8g",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/de.json b/dashboard-ui/strings/javascript/de.json
index 4744507f46..36e9717a36 100644
--- a/dashboard-ui/strings/javascript/de.json
+++ b/dashboard-ui/strings/javascript/de.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transkodieren",
"LabelPlayMethodDirectStream": "Direktes Streaming",
"LabelPlayMethodDirectPlay": "Direktes Abspielen",
- "LabelEpisodeNumber": "Episodennummer:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Lokale Adresse: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Interpret",
"LabelAddedOnDate": "Hinzugef\u00fcgt {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Staffelnummer:",
"HeaderChannels": "Kan\u00e4le",
"HeaderMediaFolders": "Medienverzeichnisse",
"HeaderBlockItemsWithNoRating": "Blockiere Inhalte mit fehlender Altersfreigabe",
@@ -444,16 +442,16 @@
"HeaderRuntime": "Laufzeit",
"HeaderCommunityRating": "Community Bewertung",
"HeaderPasswordReset": "Passwort zur\u00fccksetzen",
- "HeaderParentalRating": "Alterseinstufung",
+ "HeaderParentalRating": "Altersfreigabe",
"HeaderReleaseDate": "Ver\u00f6ffentlichungsdatum",
- "HeaderDateAdded": "Hinzugef\u00fcgt am",
+ "HeaderDateAdded": "Datum hinzugef\u00fcgt",
"HeaderSeries": "Serien",
"HeaderSeason": "Staffel",
"HeaderSeasonNumber": "Staffel Nummer",
"HeaderNetwork": "Netzwerk",
"HeaderYear": "Jahr",
"HeaderGameSystem": "Spielesystem",
- "HeaderPlayers": "Abspielger\u00e4te",
+ "HeaderPlayers": "Spieler",
"HeaderEmbeddedImage": "Integriertes Bild",
"HeaderTrack": "St\u00fcck",
"HeaderDisc": "Disc",
@@ -489,8 +487,10 @@
"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:",
@@ -884,8 +884,11 @@
"ButtonYes": "Ja",
"ButtonNo": "Nein",
"ButtonRestorePreviousPurchase": "Kauf wiederherstellen",
- "ButtonForYou": "For You",
- "ButtonLibrary": "Library",
+ "ButtonForYou": "F\u00fcr Sie",
+ "ButtonLibrary": "Biliothek",
"ButtonSearch": "Suche",
- "ButtonNowPlaying": "Now Playing"
+ "ButtonNowPlaying": "L\u00e4uft",
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/el.json b/dashboard-ui/strings/javascript/el.json
index ae1f170bdc..41e5a4a398 100644
--- a/dashboard-ui/strings/javascript/el.json
+++ b/dashboard-ui/strings/javascript/el.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"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:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/en-GB.json b/dashboard-ui/strings/javascript/en-GB.json
index 30f91d02de..3f773ec39a 100644
--- a/dashboard-ui/strings/javascript/en-GB.json
+++ b/dashboard-ui/strings/javascript/en-GB.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/en-US.json b/dashboard-ui/strings/javascript/en-US.json
index 5af27d9c8d..4837644f0c 100644
--- a/dashboard-ui/strings/javascript/en-US.json
+++ b/dashboard-ui/strings/javascript/en-US.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/es-AR.json b/dashboard-ui/strings/javascript/es-AR.json
index d6248df517..d64397c02e 100644
--- a/dashboard-ui/strings/javascript/es-AR.json
+++ b/dashboard-ui/strings/javascript/es-AR.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/es-MX.json b/dashboard-ui/strings/javascript/es-MX.json
index ab712650eb..c39a92e3a6 100644
--- a/dashboard-ui/strings/javascript/es-MX.json
+++ b/dashboard-ui/strings/javascript/es-MX.json
@@ -101,7 +101,7 @@
"MessageItemsAdded": "\u00cdtems agregados",
"ButtonAddToCollection": "Agregar a colecci\u00f3n",
"HeaderSelectCertificatePath": "Seleccione Trayectoria del Certificado",
- "ConfirmMessageScheduledTaskButton": "Esta operaci\u00f3n normalmente es ejecutada autom\u00e1ticamente como una tarea programada. Tambi\u00e9n puede ser ejecutada manualmente desde aqu\u00ed. Para configurar la tarea programada, vea:",
+ "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": "La membres\u00eda de aficionado proporciona beneficios adicionales tales como acceso a sincronizaci\u00f3n, complementos premium, contenido de canales de Internet y m\u00e1s. {0}Conocer m\u00e1s{1}.",
"LabelSyncNoTargetsHelp": "Parece que actualmente no cuentas con ninguna app que soporte sinc.",
"HeaderWelcomeToProjectServerDashboard": "Bienvenido al Panel de Control de Emby",
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Trasncodificado",
"LabelPlayMethodDirectStream": "Transmisi\u00f3n Directa",
"LabelPlayMethodDirectPlay": "Reproducci\u00f3n Directa",
- "LabelEpisodeNumber": "N\u00famero de episodio:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Direcci\u00f3n local: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artista",
"LabelAddedOnDate": "Agregado {0}",
"ButtonStart": "Iniciar",
- "LabelSeasonNumber": "N\u00famero de temporada:",
"HeaderChannels": "Canales",
"HeaderMediaFolders": "Carpetas de Medios",
"HeaderBlockItemsWithNoRating": "Bloquear contenido sin informaci\u00f3n de clasificaci\u00f3n:",
@@ -489,8 +487,10 @@
"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:",
@@ -884,8 +884,11 @@
"ButtonYes": "Si",
"ButtonNo": "No",
"ButtonRestorePreviousPurchase": "Restaurar Compra",
- "ButtonForYou": "For You",
- "ButtonLibrary": "Library",
+ "ButtonForYou": "Para T\u00ed",
+ "ButtonLibrary": "Biblioteca",
"ButtonSearch": "B\u00fasqueda",
- "ButtonNowPlaying": "Now Playing"
+ "ButtonNowPlaying": "Reproduci\u00e9ndo Ahora",
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/es.json b/dashboard-ui/strings/javascript/es.json
index 1bba5fb5e9..22be3db949 100644
--- a/dashboard-ui/strings/javascript/es.json
+++ b/dashboard-ui/strings/javascript/es.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcodificaci\u00f3n",
"LabelPlayMethodDirectStream": "Streaming directo",
"LabelPlayMethodDirectPlay": "Reproducci\u00f3n directa",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artista",
"LabelAddedOnDate": "A\u00f1adido {0}",
"ButtonStart": "Inicio",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Canales",
"HeaderMediaFolders": "Carpetas de medios",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Buscar",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/fi.json b/dashboard-ui/strings/javascript/fi.json
index 9b243d0560..a1e34b0ab9 100644
--- a/dashboard-ui/strings/javascript/fi.json
+++ b/dashboard-ui/strings/javascript/fi.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/fr.json b/dashboard-ui/strings/javascript/fr.json
index bef18eccc9..95db5c74c3 100644
--- a/dashboard-ui/strings/javascript/fr.json
+++ b/dashboard-ui/strings/javascript/fr.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcodage",
"LabelPlayMethodDirectStream": "Direct Stream",
"LabelPlayMethodDirectPlay": "Direct Play",
- "LabelEpisodeNumber": "Num\u00e9ro d'\u00e9pisode :",
"LabelAudioCodec": "Audio : {0}",
"LabelVideoCodec": "Vid\u00e9o : {0}",
"LabelLocalAccessUrl": "Acc\u00e8s local : {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artiste",
"LabelAddedOnDate": "Ajout\u00e9 {0}",
"ButtonStart": "Commencer",
- "LabelSeasonNumber": "Num\u00e9ro de saison :",
"HeaderChannels": "Cha\u00eenes",
"HeaderMediaFolders": "R\u00e9pertoires de m\u00e9dias",
"HeaderBlockItemsWithNoRating": "Bloquer le contenu ne comportant aucune information de classement:",
@@ -489,8 +487,10 @@
"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",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Recherche",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/gsw.json b/dashboard-ui/strings/javascript/gsw.json
index 256a518924..10953840fc 100644
--- a/dashboard-ui/strings/javascript/gsw.json
+++ b/dashboard-ui/strings/javascript/gsw.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/he.json b/dashboard-ui/strings/javascript/he.json
index 310a42d217..d486379a93 100644
--- a/dashboard-ui/strings/javascript/he.json
+++ b/dashboard-ui/strings/javascript/he.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"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:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "\u05d7\u05d9\u05e4\u05d5\u05e9",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/hr.json b/dashboard-ui/strings/javascript/hr.json
index 11eafb45f4..6f4dd78a09 100644
--- a/dashboard-ui/strings/javascript/hr.json
+++ b/dashboard-ui/strings/javascript/hr.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Medijska mapa",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Tra\u017ei",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/it.json b/dashboard-ui/strings/javascript/it.json
index a7830d35e2..e506382030 100644
--- a/dashboard-ui/strings/javascript/it.json
+++ b/dashboard-ui/strings/javascript/it.json
@@ -39,16 +39,16 @@
"TextEnjoyBonusFeatures": "Goditi le caratteristiche aggiuntive",
"TitleLiveTV": "Tv in diretta",
"ButtonCancelSyncJob": "Cancella sincronizzazione",
- "ButtonSelectView": "Select view",
+ "ButtonSelectView": "Seleziona vista",
"TitleSync": "Sincronizza",
"OptionAutomatic": "Automatico",
"HeaderSelectDate": "Seleziona la data",
"ButtonDonate": "Donazione",
"LabelRecurringDonationCanBeCancelledHelp": "Donazioni ricorrenti possono essere cancellati in qualsiasi momento dal tuo conto PayPal.",
"HeaderMyMedia": "I miei media",
- "ButtonRemoveFromCollection": "Remove from Collection",
- "LabelAutomaticUpdateLevel": "Automatic update level:",
- "LabelAutomaticUpdateLevelForPlugins": "Automatic update level for plugins:",
+ "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": "Si \u00e8 verificato un errore caricando le informazioni sui supporter. Si prega di riprovare pi\u00f9 tardi.",
@@ -101,7 +101,7 @@
"MessageItemsAdded": "Oggetti aggiunti",
"ButtonAddToCollection": "Aggiungi alla collezione",
"HeaderSelectCertificatePath": "Seleziona il percorso del Certificato",
- "ConfirmMessageScheduledTaskButton": "L'operazione viene normalmente eseguita come operazione pianificata. Pu\u00f2 anche essere avviata manualmente da qui. Per configurare le operazioni pianificate, vedi:",
+ "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": "L'iscrizione come supporter garantisce benefici aggiuntivi, come l'accesso alla sincronizzazione, i plugin premium, canali con contenuto internet, e altro ancora. {0}Scopri di pi\u00f9{1}.",
"LabelSyncNoTargetsHelp": "Sembra che al momento non avete applicazioni che supportano la sincronizzazione.",
"HeaderWelcomeToProjectServerDashboard": "Benvenuto nel Pannello di controllo del Server Emby",
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Trascodifica",
"LabelPlayMethodDirectStream": "Streaming Diretto",
"LabelPlayMethodDirectPlay": "Riproduzione Diretta",
- "LabelEpisodeNumber": "Episodio N\u00b0:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Accesso locale {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artista",
"LabelAddedOnDate": "Aggiunto {0}",
"ButtonStart": "Avvio",
- "LabelSeasonNumber": "Stagione N\u00b0:",
"HeaderChannels": "Canali",
"HeaderMediaFolders": "Cartelle dei media",
"HeaderBlockItemsWithNoRating": "Bloccare i contenuti senza valutazione:",
@@ -444,10 +442,10 @@
"HeaderRuntime": "Durata",
"HeaderCommunityRating": "Voto Comunit\u00e0",
"HeaderPasswordReset": "Reset della Password",
- "HeaderParentalRating": "Voto genitore",
+ "HeaderParentalRating": "Valutazione parentale",
"HeaderReleaseDate": "Data Rilascio",
- "HeaderDateAdded": "Aggiunto il",
- "HeaderSeries": "Serie",
+ "HeaderDateAdded": "Data aggiunta",
+ "HeaderSeries": "Series",
"HeaderSeason": "Stagione",
"HeaderSeasonNumber": "Stagione Numero",
"HeaderNetwork": "Rete",
@@ -489,8 +487,10 @@
"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:",
@@ -707,7 +707,7 @@
"MessageRefreshQueued": "Aggiornamento programmato",
"TabDevices": "Dispositivi",
"TabExtras": "Extra",
- "HeaderUploadImage": "Upload Image",
+ "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.",
@@ -792,51 +792,51 @@
"HeaderAdmin": "Admin",
"HeaderLibrary": "Libreria",
"HeaderMedia": "Media",
- "ButtonInbox": "Inbox",
+ "ButtonInbox": "Posta",
"HeaderAdvanced": "Avanzato",
"HeaderGroupVersions": "Versione di gruppo",
- "HeaderSaySomethingLike": "Say Something Like...",
+ "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": "Edit subtitles",
+ "ButtonEditSubtitles": "modificare i sottotitoli",
"ButtonPreferences": "Preferenze",
"ButtonViewArtist": "Visualizza artista",
"ButtonViewAlbum": "Visualizza album",
- "ButtonEditImages": "Edit images",
+ "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": "Share",
+ "HeaderShare": "Condividi",
"ButtonShareHelp": "Condividi una pagina web contenente informazioni multimediali con i social media. I file multimediali non verranno mai condivisi pubblicamente.",
- "ButtonShare": "Share",
+ "ButtonShare": "Condividi",
"HeaderConfirm": "Conferma",
"ButtonAdvancedRefresh": "Aggiornamento (avanzato)",
"MessageConfirmDeleteTunerDevice": "Sei sicuro di voler cancellare questo dispositivo?",
- "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.",
+ "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": "Please select a lineup and try again. If no lineups are available, then please check that your username, password, and postal code is correct.",
+ "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.",
"HeaderTryCinemaMode": "Prova la modalit\u00e0 cinema",
"ButtonBecomeSupporter": "Diventa un Emby Supporter",
"ButtonClosePlayVideo": "Chiudi e avvia il mio media",
"MessageDidYouKnowCinemaMode": "Lo sapevi che diventando un Emby Supporter, puoi aumentare la tua esperienza con le funzioni 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": "Enable display mirroring",
+ "OptionEnableDisplayMirroring": "Abilita visualizzazione remota",
"HeaderSyncRequiresSupporterMembership": "La sincronizzazione richiede di essere un membro attivo di Emby Supporter.",
- "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync requires connecting to an Emby Server with an active Supporter membership.",
- "ErrorValidatingSupporterInfo": "There was an error validating your Emby Supporter information. Please try again later.",
+ "HeaderSyncRequiresSupporterMembershipAppVersion": "Sync richiede la connessione a un server ricamato con un abbonamento attivo sostenitore.",
+ "ErrorValidatingSupporterInfo": "Si \u00e8 verificato un errore durante la convalida delle informazioni Sostenitore ricamato. Per favore riprova pi\u00f9 tardi.",
"HeaderSync": "Sincronizza",
"LabelLocalSyncStatusValue": "Stato {0}",
- "MessageSyncStarted": "Sync started",
+ "MessageSyncStarted": "Sync iniziato",
"OptionPoster": "Locandina",
"OptionPosterCard": "Scheda locandina",
"OptionTimeline": "Cronologia",
@@ -879,13 +879,16 @@
"ForAdditionalLiveTvOptions": "Per ulteriori provider Live TV, fare clic sulla scheda Servizi Esterni per vedere le opzioni disponibili.",
"ButtonGuide": "Guida",
"ButtonRecordedTv": "Tv Registrata",
- "HeaderDisconnectFromPlayer": "Disconnect from Player",
+ "HeaderDisconnectFromPlayer": "Disconnetti utente",
"ConfirmEndPlayerSession": "Volete arresto l'applicazione sul dispositivo remoto?",
"ButtonYes": "Si",
"ButtonNo": "No",
- "ButtonRestorePreviousPurchase": "Restore Purchase",
- "ButtonForYou": "For You",
- "ButtonLibrary": "Library",
+ "ButtonRestorePreviousPurchase": "Ripristinare acquisto",
+ "ButtonForYou": "Per te",
+ "ButtonLibrary": "libreria",
"ButtonSearch": "Cerca",
- "ButtonNowPlaying": "Now Playing"
+ "ButtonNowPlaying": "In riproduzione ora",
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/javascript.json b/dashboard-ui/strings/javascript/javascript.json
index 8dab7c7f25..24be16b9e8 100644
--- a/dashboard-ui/strings/javascript/javascript.json
+++ b/dashboard-ui/strings/javascript/javascript.json
@@ -897,5 +897,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
diff --git a/dashboard-ui/strings/javascript/kk.json b/dashboard-ui/strings/javascript/kk.json
index c5acc9593c..c6161f8cf8 100644
--- a/dashboard-ui/strings/javascript/kk.json
+++ b/dashboard-ui/strings/javascript/kk.json
@@ -101,7 +101,7 @@
"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. \u041e\u0441\u044b\u043d\u044b \u0441\u043e\u043d\u0434\u0430\u0439-\u0430\u049b \u0431\u04b1\u043b \u0436\u0435\u0440\u0434\u0435 \u049b\u043e\u043b\u043c\u0435\u043d \u0456\u0441\u043a\u0435 \u049b\u043e\u0441\u0443\u0493\u0430 \u0431\u043e\u043b\u0430\u0434\u044b. \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:",
+ "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": "\u0416\u0430\u049b\u0442\u0430\u0443\u0448\u044b \u043c\u04af\u0448\u0435\u043b\u0456\u043a \u049b\u043e\u0441\u044b\u043c\u0448\u0430 \u0430\u0440\u0442\u044b\u049b\u0448\u044b\u043b\u044b\u049b\u0442\u0430\u0440\u0434\u044b (\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\u0434\u0435\u0440, \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442 \u0430\u0440\u043d\u0430\u0441\u044b\u043d\u044b\u04a3 \u043c\u0430\u0437\u043c\u04b1\u043d\u044b \u0436\u04d9\u043d\u0435 \u0442.\u0431.) \u049b\u0430\u043c\u0442\u0430\u043c\u0430\u0441\u044b\u0437 \u0435\u0442\u0435\u0434\u0456. {0}\u041a\u04e9\u0431\u0456\u0440\u0435\u043a \u0431\u0456\u043b\u0443{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!",
@@ -270,7 +270,6 @@
"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",
- "LabelEpisodeNumber": "\u042d\u043f\u0438\u0437\u043e\u0434 \u043d\u04e9\u043c\u0456\u0440\u0456:",
"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}",
@@ -317,7 +316,6 @@
"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",
- "LabelSeasonNumber": "\u041c\u0430\u0443\u0441\u044b\u043c \u043d\u04e9\u043c\u0456\u0440\u0456:",
"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:",
@@ -451,7 +449,7 @@
"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\u044b",
+ "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",
@@ -489,8 +487,10 @@
"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:",
@@ -884,8 +884,11 @@
"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",
- "ButtonForYou": "For You",
- "ButtonLibrary": "Library",
+ "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": "Now Playing"
+ "ButtonNowPlaying": "\u049a\u0430\u0437\u0456\u0440 \u043e\u0439\u043d\u0430\u0442\u044b\u043b\u0443\u0434\u0430...",
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/ms.json b/dashboard-ui/strings/javascript/ms.json
index bf447b5761..315ee1f2d7 100644
--- a/dashboard-ui/strings/javascript/ms.json
+++ b/dashboard-ui/strings/javascript/ms.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/nb.json b/dashboard-ui/strings/javascript/nb.json
index 363610672d..b8488ff270 100644
--- a/dashboard-ui/strings/javascript/nb.json
+++ b/dashboard-ui/strings/javascript/nb.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direkte Streaming",
"LabelPlayMethodDirectPlay": "Direkte Avspilling",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Lyd: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Lokal tilgang: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Lagt til {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Kanaler",
"HeaderMediaFolders": "Mediemapper",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -444,16 +442,16 @@
"HeaderRuntime": "Spilletid",
"HeaderCommunityRating": "Fellesskap anmeldelse",
"HeaderPasswordReset": "Resett passord",
- "HeaderParentalRating": "Foreldresensur",
+ "HeaderParentalRating": "Parental rating",
"HeaderReleaseDate": "Utgivelsesdato",
- "HeaderDateAdded": "Dato lagt til",
- "HeaderSeries": "Serier",
+ "HeaderDateAdded": "Date added",
+ "HeaderSeries": "Series",
"HeaderSeason": "Sesong",
"HeaderSeasonNumber": "Sesong nummer",
"HeaderNetwork": "Nettverk",
- "HeaderYear": "\u00c5r",
+ "HeaderYear": "Year",
"HeaderGameSystem": "Spill system",
- "HeaderPlayers": "Spillere",
+ "HeaderPlayers": "Players",
"HeaderEmbeddedImage": "innebygd bilde",
"HeaderTrack": "Spor",
"HeaderDisc": "Disk",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "S\u00f8k",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/nl.json b/dashboard-ui/strings/javascript/nl.json
index 15495f2264..1c48dbf0cc 100644
--- a/dashboard-ui/strings/javascript/nl.json
+++ b/dashboard-ui/strings/javascript/nl.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoderen",
"LabelPlayMethodDirectStream": "Direct Streamen",
"LabelPlayMethodDirectPlay": "Direct Afspelen",
- "LabelEpisodeNumber": "Afleveringsnummer:",
"LabelAudioCodec": "Geluid: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Lokale toegang: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artiest",
"LabelAddedOnDate": "Toegevoegd {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Seizoennummer:",
"HeaderChannels": "Kanalen",
"HeaderMediaFolders": "Media Mappen",
"HeaderBlockItemsWithNoRating": "Blokkeer inhoud zonder classificatiegegevens:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Zoeken",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/pl.json b/dashboard-ui/strings/javascript/pl.json
index 615d5b30de..af70948ec1 100644
--- a/dashboard-ui/strings/javascript/pl.json
+++ b/dashboard-ui/strings/javascript/pl.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/pt-BR.json b/dashboard-ui/strings/javascript/pt-BR.json
index 7a8937c6aa..97b1d94efd 100644
--- a/dashboard-ui/strings/javascript/pt-BR.json
+++ b/dashboard-ui/strings/javascript/pt-BR.json
@@ -101,7 +101,7 @@
"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. Tamb\u00e9m pode ser executada manualmente. Para configurar a tarefa agendada, veja:",
+ "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": "A ades\u00e3o de colaborador fornece benef\u00edcios adicionais como acesso a sincroniza\u00e7\u00e3o, plugins premium, canais de conte\u00fado 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",
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcodifica\u00e7\u00e3o",
"LabelPlayMethodDirectStream": "Streaming Direto",
"LabelPlayMethodDirectPlay": "Reprodu\u00e7\u00e3o Direta",
- "LabelEpisodeNumber": "N\u00famero do epis\u00f3dio:",
"LabelAudioCodec": "\u00c1udio: {0}",
"LabelVideoCodec": "V\u00eddeo: {0}",
"LabelLocalAccessUrl": "Acesso local: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artista",
"LabelAddedOnDate": "Adicionado {0}",
"ButtonStart": "Iniciar",
- "LabelSeasonNumber": "N\u00famero da temporada:",
"HeaderChannels": "Canais",
"HeaderMediaFolders": "Pastas de M\u00eddia",
"HeaderBlockItemsWithNoRating": "Bloquear conte\u00fado que n\u00e3o tenha informa\u00e7\u00e3o de classifica\u00e7\u00e3o:",
@@ -446,7 +444,7 @@
"HeaderPasswordReset": "Redefini\u00e7\u00e3o de Senha",
"HeaderParentalRating": "Classifica\u00e7\u00e3o parental",
"HeaderReleaseDate": "Data de lan\u00e7amento",
- "HeaderDateAdded": "Data de adi\u00e7\u00e3o",
+ "HeaderDateAdded": "Data da adi\u00e7\u00e3o",
"HeaderSeries": "S\u00e9rie",
"HeaderSeason": "Temporada",
"HeaderSeasonNumber": "N\u00famero da temporada",
@@ -489,8 +487,10 @@
"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:",
@@ -884,8 +884,11 @@
"ButtonYes": "Sim",
"ButtonNo": "N\u00e3o",
"ButtonRestorePreviousPurchase": "Restaurar Compra",
- "ButtonForYou": "For You",
- "ButtonLibrary": "Library",
+ "ButtonForYou": "Para Voc\u00ea",
+ "ButtonLibrary": "Biblioteca",
"ButtonSearch": "Busca",
- "ButtonNowPlaying": "Now Playing"
+ "ButtonNowPlaying": "Reproduzindo Agora",
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/pt-PT.json b/dashboard-ui/strings/javascript/pt-PT.json
index 846d6c5553..350cde242a 100644
--- a/dashboard-ui/strings/javascript/pt-PT.json
+++ b/dashboard-ui/strings/javascript/pt-PT.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Canais",
"HeaderMediaFolders": "Pastas Multim\u00e9dia",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Procurar",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/ro.json b/dashboard-ui/strings/javascript/ro.json
index 2783ff9bc5..f8ab8d77af 100644
--- a/dashboard-ui/strings/javascript/ro.json
+++ b/dashboard-ui/strings/javascript/ro.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/ru.json b/dashboard-ui/strings/javascript/ru.json
index 8759dcf38c..34128e1bb7 100644
--- a/dashboard-ui/strings/javascript/ru.json
+++ b/dashboard-ui/strings/javascript/ru.json
@@ -101,7 +101,7 @@
"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\u0430 \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. \u042d\u0442\u043e \u0442\u0430\u043a\u0436\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e \u0432\u0440\u0443\u0447\u043d\u0443\u044e \u043e\u0442\u0441\u044e\u0434\u0430. \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.:",
+ "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": "\u0427\u043b\u0435\u043d\u0441\u0442\u0432\u043e \u0441\u043f\u043e\u043d\u0441\u043e\u0440\u0430 \u043f\u0440\u0435\u0434\u043e\u0441\u0442\u0430\u0432\u043b\u044f\u0435\u0442 \u0434\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u0440\u0435\u0438\u043c\u0443\u0449\u0435\u0441\u0442\u0432\u0430, \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\u0430\u043b\u044c\u043d\u044b\u043c \u043f\u043b\u0430\u0433\u0438\u043d\u0430\u043c, \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u044e \u0438\u043d\u0442\u0435\u0440\u043d\u0435\u0442-\u043a\u0430\u043d\u0430\u043b\u043e\u0432 \u0438 \u0442.\u0434. {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",
@@ -270,7 +270,6 @@
"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",
- "LabelEpisodeNumber": "\u041d\u043e\u043c\u0435\u0440 \u044d\u043f\u0438\u0437\u043e\u0434\u0430",
"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}",
@@ -317,7 +316,6 @@
"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",
- "LabelSeasonNumber": "\u041d\u043e\u043c\u0435\u0440 \u0441\u0435\u0437\u043e\u043d\u0430:",
"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:",
@@ -444,10 +442,10 @@
"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. \u043a\u0430\u0442.",
+ "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.",
- "HeaderSeries": "\u0421\u0435\u0440\u0438\u0430\u043b\u044b",
+ "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",
@@ -489,8 +487,10 @@
"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:",
@@ -884,8 +884,11 @@
"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",
- "ButtonForYou": "For You",
- "ButtonLibrary": "Library",
+ "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": "Now Playing"
+ "ButtonNowPlaying": "\u0412\u043e\u0441\u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0441\u044f...",
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/sl-SI.json b/dashboard-ui/strings/javascript/sl-SI.json
index b5c5e21044..105a32c658 100644
--- a/dashboard-ui/strings/javascript/sl-SI.json
+++ b/dashboard-ui/strings/javascript/sl-SI.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/sv.json b/dashboard-ui/strings/javascript/sv.json
index 2179edfa3f..d7aa5bd0e5 100644
--- a/dashboard-ui/strings/javascript/sv.json
+++ b/dashboard-ui/strings/javascript/sv.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Omkodning",
"LabelPlayMethodDirectStream": "Direkt str\u00f6mning",
"LabelPlayMethodDirectPlay": "Direktuppspelning",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Ljud: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "{0} tillagd",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Kanaler",
"HeaderMediaFolders": "Mediamappar",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -444,16 +442,16 @@
"HeaderRuntime": "Speltid",
"HeaderCommunityRating": "Anv\u00e4ndaromd\u00f6me",
"HeaderPasswordReset": "\u00c5terst\u00e4llning av l\u00f6senordet",
- "HeaderParentalRating": "\u00c5ldersgr\u00e4ns",
+ "HeaderParentalRating": "Parental rating",
"HeaderReleaseDate": "Premi\u00e4rdatum:",
- "HeaderDateAdded": "Inlagd den",
- "HeaderSeries": "Serie",
+ "HeaderDateAdded": "Date added",
+ "HeaderSeries": "Series",
"HeaderSeason": "S\u00e4song",
"HeaderSeasonNumber": "S\u00e4songsnummer:",
"HeaderNetwork": "TV-bolag",
- "HeaderYear": "\u00c5r",
+ "HeaderYear": "Year",
"HeaderGameSystem": "Spelsystem",
- "HeaderPlayers": "Spelare",
+ "HeaderPlayers": "Players",
"HeaderEmbeddedImage": "Infogad bild",
"HeaderTrack": "Sp\u00e5r",
"HeaderDisc": "Skiva",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "S\u00f6k",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/tr.json b/dashboard-ui/strings/javascript/tr.json
index 22eceb229b..cf74b41461 100644
--- a/dashboard-ui/strings/javascript/tr.json
+++ b/dashboard-ui/strings/javascript/tr.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Kanallar",
"HeaderMediaFolders": "Media Klas\u00f6rleri",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Arama",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/uk.json b/dashboard-ui/strings/javascript/uk.json
index 486aba775f..06ee854a5d 100644
--- a/dashboard-ui/strings/javascript/uk.json
+++ b/dashboard-ui/strings/javascript/uk.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -447,11 +445,11 @@
"HeaderParentalRating": "Parental rating",
"HeaderReleaseDate": "Release date",
"HeaderDateAdded": "Date added",
- "HeaderSeries": "\u0421\u0435\u0440\u0456\u0457",
+ "HeaderSeries": "Series",
"HeaderSeason": "\u0421\u0435\u0437\u043e\u043d",
"HeaderSeasonNumber": "Season number",
"HeaderNetwork": "Network",
- "HeaderYear": "\u0420\u0456\u043a",
+ "HeaderYear": "Year",
"HeaderGameSystem": "Game system",
"HeaderPlayers": "Players",
"HeaderEmbeddedImage": "Embedded image",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/vi.json b/dashboard-ui/strings/javascript/vi.json
index 813b863e84..f0c6efdf49 100644
--- a/dashboard-ui/strings/javascript/vi.json
+++ b/dashboard-ui/strings/javascript/vi.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "Channels",
"HeaderMediaFolders": "Media Folders",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "T\u00ecm ki\u1ebfm",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/zh-CN.json b/dashboard-ui/strings/javascript/zh-CN.json
index b40f005893..f3ba1ce708 100644
--- a/dashboard-ui/strings/javascript/zh-CN.json
+++ b/dashboard-ui/strings/javascript/zh-CN.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "\u8f6c\u7801",
"LabelPlayMethodDirectStream": "\u76f4\u63a5\u7528\u5a92\u4f53\u6d41",
"LabelPlayMethodDirectPlay": "\u76f4\u63a5\u64ad\u653e",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "\u97f3\u9891\uff1a {0}",
"LabelVideoCodec": "\u89c6\u9891\uff1a{0}",
"LabelLocalAccessUrl": "\u672c\u5730\u8bbf\u95ee\uff1a {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "\u827a\u672f\u5bb6",
"LabelAddedOnDate": "\u6dfb\u52a0 {0}",
"ButtonStart": "\u5f00\u59cb",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "\u9891\u9053",
"HeaderMediaFolders": "\u5a92\u4f53\u6587\u4ef6\u5939",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -444,16 +442,16 @@
"HeaderRuntime": "\u64ad\u653e\u65f6\u95f4",
"HeaderCommunityRating": "\u516c\u4f17\u8bc4\u5206",
"HeaderPasswordReset": "\u5bc6\u7801\u91cd\u7f6e",
- "HeaderParentalRating": "\u5bb6\u957f\u5206\u7ea7",
+ "HeaderParentalRating": "Parental rating",
"HeaderReleaseDate": "\u53d1\u884c\u65e5\u671f",
- "HeaderDateAdded": "\u52a0\u5165\u65e5\u671f",
- "HeaderSeries": "\u7535\u89c6\u5267",
+ "HeaderDateAdded": "Date added",
+ "HeaderSeries": "Series",
"HeaderSeason": "\u5b63",
"HeaderSeasonNumber": "\u591a\u5c11\u5b63",
"HeaderNetwork": "\u7f51\u7edc",
- "HeaderYear": "\u5e74",
+ "HeaderYear": "Year",
"HeaderGameSystem": "\u6e38\u620f\u7cfb\u7edf",
- "HeaderPlayers": "\u64ad\u653e\u5668",
+ "HeaderPlayers": "Players",
"HeaderEmbeddedImage": "\u5d4c\u5165\u5f0f\u56fe\u50cf",
"HeaderTrack": "\u97f3\u8f68",
"HeaderDisc": "\u5149\u76d8",
@@ -489,8 +487,10 @@
"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",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "\u641c\u7d22",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/zh-HK.json b/dashboard-ui/strings/javascript/zh-HK.json
index 620c396955..b36b7531ef 100644
--- a/dashboard-ui/strings/javascript/zh-HK.json
+++ b/dashboard-ui/strings/javascript/zh-HK.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "\u983b\u9053",
"HeaderMediaFolders": "\u5a92\u9ad4\u6587\u4ef6\u593e",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "Search",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file
diff --git a/dashboard-ui/strings/javascript/zh-TW.json b/dashboard-ui/strings/javascript/zh-TW.json
index 808197c838..b761adbe2f 100644
--- a/dashboard-ui/strings/javascript/zh-TW.json
+++ b/dashboard-ui/strings/javascript/zh-TW.json
@@ -270,7 +270,6 @@
"LabelPlayMethodTranscoding": "Transcoding",
"LabelPlayMethodDirectStream": "Direct Streaming",
"LabelPlayMethodDirectPlay": "Direct Playing",
- "LabelEpisodeNumber": "Episode number:",
"LabelAudioCodec": "Audio: {0}",
"LabelVideoCodec": "Video: {0}",
"LabelLocalAccessUrl": "Local access: {0}",
@@ -317,7 +316,6 @@
"HeaderArtist": "Artist",
"LabelAddedOnDate": "Added {0}",
"ButtonStart": "Start",
- "LabelSeasonNumber": "Season number:",
"HeaderChannels": "\u983b\u5ea6",
"HeaderMediaFolders": "\u5a92\u9ad4\u6587\u4ef6\u593e",
"HeaderBlockItemsWithNoRating": "Block content with no rating information:",
@@ -489,8 +487,10 @@
"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:",
@@ -887,5 +887,8 @@
"ButtonForYou": "For You",
"ButtonLibrary": "Library",
"ButtonSearch": "\u641c\u7d22",
- "ButtonNowPlaying": "Now Playing"
+ "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."
}
\ No newline at end of file